@speckle/ui-components 2.17.16 → 2.18.0
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 +1 -1
- package/dist/components/form/Radio.vue.d.ts +1 -1
- package/dist/components/form/select/Base.vue.d.ts +3 -3
- package/dist/components/layout/DialogSection.vue.d.ts +9 -0
- package/dist/lib.cjs +1 -1
- package/dist/lib.cjs.map +1 -1
- package/dist/lib.js +1060 -1043
- package/dist/lib.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +3 -3
|
@@ -183,9 +183,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
183
183
|
}, {
|
|
184
184
|
disabled: boolean;
|
|
185
185
|
id: Optional<string>;
|
|
186
|
-
label: Optional<string>;
|
|
187
186
|
value: Optional<string | true>;
|
|
188
187
|
description: Optional<string>;
|
|
188
|
+
label: Optional<string>;
|
|
189
189
|
modelValue: false | ValueType;
|
|
190
190
|
inlineDescription: boolean;
|
|
191
191
|
rules: RuleExpression<ValueType>;
|
|
@@ -197,9 +197,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
197
197
|
}, {
|
|
198
198
|
disabled: boolean;
|
|
199
199
|
id: Optional<string>;
|
|
200
|
-
label: Optional<string>;
|
|
201
200
|
value: Optional<string | true>;
|
|
202
201
|
description: Optional<string>;
|
|
202
|
+
label: Optional<string>;
|
|
203
203
|
icon: ConcreteComponent;
|
|
204
204
|
modelValue: false | ValueType;
|
|
205
205
|
inlineDescription: boolean;
|
|
@@ -4,8 +4,8 @@ import type { RuleExpression } from 'vee-validate';
|
|
|
4
4
|
declare const _default: <SingleItem extends string | number | Record<string, unknown>>(__VLS_props: {
|
|
5
5
|
disabled?: Optional<boolean>;
|
|
6
6
|
readonly placeholder?: string | undefined;
|
|
7
|
-
readonly label: string;
|
|
8
7
|
search?: boolean | undefined;
|
|
8
|
+
readonly label: string;
|
|
9
9
|
readonly name: string;
|
|
10
10
|
modelValue?: ([{
|
|
11
11
|
type: PropType<SingleItem | SingleItem[] | undefined>;
|
|
@@ -58,8 +58,8 @@ declare const _default: <SingleItem extends string | number | Record<string, unk
|
|
|
58
58
|
props: {
|
|
59
59
|
disabled?: Optional<boolean>;
|
|
60
60
|
readonly placeholder?: string | undefined;
|
|
61
|
-
readonly label: string;
|
|
62
61
|
search?: boolean | undefined;
|
|
62
|
+
readonly label: string;
|
|
63
63
|
readonly name: string;
|
|
64
64
|
modelValue?: ([{
|
|
65
65
|
type: PropType<SingleItem | SingleItem[] | undefined>;
|
|
@@ -116,8 +116,8 @@ declare const _default: <SingleItem extends string | number | Record<string, unk
|
|
|
116
116
|
props: {
|
|
117
117
|
disabled?: Optional<boolean>;
|
|
118
118
|
readonly placeholder?: string | undefined;
|
|
119
|
-
readonly label: string;
|
|
120
119
|
search?: boolean | undefined;
|
|
120
|
+
readonly label: string;
|
|
121
121
|
readonly name: string;
|
|
122
122
|
modelValue?: ([{
|
|
123
123
|
type: PropType<SingleItem | SingleItem[] | undefined>;
|
|
@@ -19,6 +19,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
19
19
|
onClick?: (() => void) | undefined;
|
|
20
20
|
} | undefined;
|
|
21
21
|
alwaysOpen: BooleanConstructor;
|
|
22
|
+
lazyLoad: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
22
26
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
27
|
title: StringConstructor;
|
|
24
28
|
borderT: BooleanConstructor;
|
|
@@ -37,12 +41,17 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
37
41
|
onClick?: (() => void) | undefined;
|
|
38
42
|
} | undefined;
|
|
39
43
|
alwaysOpen: BooleanConstructor;
|
|
44
|
+
lazyLoad: {
|
|
45
|
+
type: BooleanConstructor;
|
|
46
|
+
default: boolean;
|
|
47
|
+
};
|
|
40
48
|
}>>, {
|
|
41
49
|
borderT: boolean;
|
|
42
50
|
borderB: boolean;
|
|
43
51
|
allowOverflow: boolean;
|
|
44
52
|
titleColor: TitleColor;
|
|
45
53
|
alwaysOpen: boolean;
|
|
54
|
+
lazyLoad: boolean;
|
|
46
55
|
}, {}>, {
|
|
47
56
|
icon?(_: {}): any;
|
|
48
57
|
default?(_: {}): any;
|