We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents af06b98 + aa4d5be commit 9b4feeaCopy full SHA for 9b4feea
frontend/src/components/Controls/BasePropertyControl.vue
@@ -97,6 +97,8 @@ const emit = defineEmits<{
97
(clearDynamicValue: void): void;
98
}>();
99
100
+defineOptions({ inheritance: false });
101
+
102
const props = withDefaults(
103
defineProps<{
104
propertyKey: string;
frontend/src/components/Controls/StylePropertyControl.vue
@@ -31,6 +31,8 @@ const props = withDefaults(
31
maxValue?: number | null;
32
component?: Component;
33
events?: Record<string, unknown>;
34
+ type?: "string";
35
+ options?: Array<{ label: string; value: string | null }>;
36
defaultValue?: string | number;
37
allowDynamicValue?: boolean;
38
labelPlacement?: "left" | "top";
0 commit comments