@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.
@@ -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;
@@ -12,6 +12,7 @@ declare const _default: <Value extends string>(__VLS_props: NonNullable<Awaited<
12
12
  introduction?: string;
13
13
  icon?: ConcreteComponent;
14
14
  help?: string;
15
+ disabled?: boolean;
15
16
  }[];
16
17
  disabled?: boolean;
17
18
  isStacked?: boolean;
@@ -22,6 +22,7 @@ type __VLS_Props = {
22
22
  */
23
23
  onSubmit?: (e: SubmitEvent) => void;
24
24
  isTransparent?: boolean;
25
+ closerClasses?: string;
25
26
  };
26
27
  declare function __VLS_template(): {
27
28
  attrs: Partial<{}>;
@@ -10,6 +10,7 @@ export type RowButton<T = unknown> = {
10
10
  action: (item: T) => unknown;
11
11
  class?: string;
12
12
  tooltip?: string;
13
+ disabled?: boolean;
13
14
  };
14
15
  declare const _default: <T extends {
15
16
  id: string;
@@ -8,6 +8,7 @@ type __VLS_Props = {
8
8
  iconClick?: () => void;
9
9
  noHover?: boolean;
10
10
  nested?: boolean;
11
+ alwaysShowIcon?: boolean;
11
12
  };
12
13
  type __VLS_PublicProps = {
13
14
  'collapsed'?: boolean;