@speckle/ui-components 2.23.23 → 2.24.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/form/Checkbox.vue.d.ts +15 -0
- package/dist/components/form/RadioGroup.vue.d.ts +1 -0
- package/dist/components/layout/Dialog.vue.d.ts +1 -0
- package/dist/components/layout/Table.vue.d.ts +1 -0
- package/dist/components/layout/sidebar/menu/group/Group.vue.d.ts +1 -0
- package/dist/lib.cjs +1 -1
- package/dist/lib.cjs.map +1 -1
- package/dist/lib.js +1479 -1459
- package/dist/lib.js.map +1 -1
- package/package.json +3 -3
- package/tailwind.config.cjs +2 -2
|
@@ -33,6 +33,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
33
33
|
type: PropType<Optional<string>>;
|
|
34
34
|
default: undefined;
|
|
35
35
|
};
|
|
36
|
+
/**
|
|
37
|
+
* Set label classes
|
|
38
|
+
*/
|
|
39
|
+
labelClasses: {
|
|
40
|
+
type: PropType<Optional<string>>;
|
|
41
|
+
default: undefined;
|
|
42
|
+
};
|
|
36
43
|
/**
|
|
37
44
|
* Help text
|
|
38
45
|
*/
|
|
@@ -122,6 +129,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
122
129
|
type: PropType<Optional<string>>;
|
|
123
130
|
default: undefined;
|
|
124
131
|
};
|
|
132
|
+
/**
|
|
133
|
+
* Set label classes
|
|
134
|
+
*/
|
|
135
|
+
labelClasses: {
|
|
136
|
+
type: PropType<Optional<string>>;
|
|
137
|
+
default: undefined;
|
|
138
|
+
};
|
|
125
139
|
/**
|
|
126
140
|
* Help text
|
|
127
141
|
*/
|
|
@@ -195,6 +209,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
195
209
|
label: Optional<string>;
|
|
196
210
|
modelValue: false | ValueType;
|
|
197
211
|
value: Optional<string | true>;
|
|
212
|
+
labelClasses: Optional<string>;
|
|
198
213
|
inlineDescription: boolean;
|
|
199
214
|
rules: RuleExpression<ValueType>;
|
|
200
215
|
validateOnMount: boolean;
|