@omnia/fx 8.0.43-vnext → 8.0.45-vnext
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/internal-do-not-import-from-here/ux/ComponentTypings.d.ts +21 -1
- package/internal-do-not-import-from-here/ux/DefineVueTypings.d.ts +3 -4
- package/internal-do-not-import-from-here/ux/Exposes.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/InternalDefineWebComponent.d.ts +10 -15
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/Template.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +255 -115
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.d.ts +273 -88
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +592 -55
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/badge/Badge.d.ts +196 -0
- package/internal-do-not-import-from-here/ux/oxide/badge/docs/BadgeExample.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/badge/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/badge/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +6 -5
- package/internal-do-not-import-from-here/ux/oxide/btngroup/ButtonGroup.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/card/Card.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.d.ts +180 -0
- package/internal-do-not-import-from-here/ux/oxide/chip/docs/ChipExample.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/chip/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/chip/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/image/Image.d.ts +14 -0
- package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +27 -0
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +89 -298
- package/internal-do-not-import-from-here/ux/oxide/progress/Progress.d.ts +18 -486
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +82 -12
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +95 -24
- package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/tooltip/Tooltip.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/persona/Persona.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/EditorMenuBar.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/colorschemadefinitionpicker/ColorSchemaDefinitionPicker.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/ThemeEditor.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/userpresence/UserPresence.d.ts +380 -33
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/DefinitionPicker.d.ts +28 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.d.ts +8 -8
- package/internal-do-not-import-from-here/wctypings.d.ts +4 -0
- package/package.json +3 -3
@@ -11,68 +11,9 @@ declare const _default: {
|
|
11
11
|
colors?: any;
|
12
12
|
style?: unknown;
|
13
13
|
class?: String | String[];
|
14
|
-
readonly name?: {
|
15
|
-
[x: `onUpdate:${string}`]: {
|
16
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
17
|
-
};
|
18
|
-
} & {
|
19
|
-
[x: `v-model:${string}`]: {
|
20
|
-
type: import("vue").PropType<boolean>;
|
21
|
-
required: false;
|
22
|
-
};
|
23
|
-
} & {
|
24
|
-
[x: string]: {
|
25
|
-
type: import("vue").PropType<boolean>;
|
26
|
-
required: false;
|
27
|
-
};
|
28
|
-
} & {
|
29
|
-
require(): import("../../DefineVueTypings").DefinePropModelRequire<string, boolean, {
|
30
|
-
"onUpdate:modelValue": {
|
31
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
32
|
-
};
|
33
|
-
} & {
|
34
|
-
"v-model": {
|
35
|
-
type: import("vue").PropType<boolean>;
|
36
|
-
required: false;
|
37
|
-
};
|
38
|
-
} & {
|
39
|
-
modelValue: {
|
40
|
-
type: import("vue").PropType<boolean>;
|
41
|
-
required: false;
|
42
|
-
};
|
43
|
-
}>;
|
44
|
-
defaultValue(value?: boolean): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, boolean, {
|
45
|
-
"onUpdate:modelValue": {
|
46
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
47
|
-
};
|
48
|
-
} & {
|
49
|
-
"v-model": {
|
50
|
-
type: import("vue").PropType<boolean>;
|
51
|
-
required: false;
|
52
|
-
};
|
53
|
-
} & {
|
54
|
-
modelValue: {
|
55
|
-
type: import("vue").PropType<boolean>;
|
56
|
-
required: false;
|
57
|
-
};
|
58
|
-
}, false>;
|
59
|
-
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, boolean, {
|
60
|
-
"onUpdate:modelValue": {
|
61
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
62
|
-
};
|
63
|
-
} & {
|
64
|
-
"v-model": {
|
65
|
-
type: import("vue").PropType<boolean>;
|
66
|
-
required: false;
|
67
|
-
};
|
68
|
-
} & {
|
69
|
-
modelValue: {
|
70
|
-
type: import("vue").PropType<boolean>;
|
71
|
-
required: false;
|
72
|
-
};
|
73
|
-
}>;
|
74
|
-
};
|
75
14
|
key?: string | number | symbol;
|
15
|
+
readonly minHeight?: string | number;
|
16
|
+
readonly minWidth?: string | number;
|
76
17
|
ref?: import("vue").VNodeRef;
|
77
18
|
ref_for?: boolean;
|
78
19
|
ref_key?: string;
|
@@ -115,16 +56,20 @@ declare const _default: {
|
|
115
56
|
[key: string]: any;
|
116
57
|
}>) => void)[];
|
117
58
|
readonly "v-slots"?: {
|
118
|
-
default?: import("
|
59
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
119
60
|
} & {
|
120
61
|
activator?: () => VNodeChild;
|
121
62
|
};
|
122
63
|
readonly "v-model"?: boolean;
|
123
64
|
readonly modelValue?: boolean;
|
124
|
-
|
65
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) & ((value: boolean) => any);
|
66
|
+
readonly attach?: string | boolean | Element;
|
125
67
|
readonly location?: "left" | "center" | "right" | "bottom" | "top" | "end" | "start" | "center center" | "bottom end" | "bottom start" | "top center" | "top end" | "top start" | "end bottom" | "end top" | "start bottom" | "start top";
|
68
|
+
readonly activator?: string;
|
126
69
|
readonly closeDelay?: string | number;
|
127
70
|
readonly openOnHover?: boolean;
|
71
|
+
readonly visibleOnContentClick?: boolean;
|
72
|
+
onDoc$?: (description?: string) => any;
|
128
73
|
};
|
129
74
|
$attrs: {
|
130
75
|
[x: string]: unknown;
|
@@ -137,14 +82,17 @@ declare const _default: {
|
|
137
82
|
}>;
|
138
83
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
139
84
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
140
|
-
$emit: (event: string,
|
85
|
+
$emit: ((event: "doc$", description?: string) => void) & ((event: "update:modelValue", value: boolean) => void);
|
141
86
|
$el: any;
|
142
87
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
143
88
|
"v-slots": import("vue").Prop<{
|
144
|
-
default?: import("
|
89
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
145
90
|
} & {
|
146
91
|
activator?: () => VNodeChild;
|
147
92
|
}>;
|
93
|
+
visibleOnContentClick: {
|
94
|
+
type: import("vue").PropType<boolean>;
|
95
|
+
};
|
148
96
|
openOnHover: {
|
149
97
|
type: import("vue").PropType<boolean>;
|
150
98
|
};
|
@@ -155,6 +103,18 @@ declare const _default: {
|
|
155
103
|
closeDelay: {
|
156
104
|
type: import("vue").PropType<string | number>;
|
157
105
|
};
|
106
|
+
minHeight: {
|
107
|
+
type: import("vue").PropType<string | number>;
|
108
|
+
};
|
109
|
+
minWidth: {
|
110
|
+
type: import("vue").PropType<string | number>;
|
111
|
+
};
|
112
|
+
attach: {
|
113
|
+
type: import("vue").PropType<string | boolean | Element>;
|
114
|
+
};
|
115
|
+
activator: {
|
116
|
+
type: import("vue").PropType<string>;
|
117
|
+
};
|
158
118
|
"onUpdate:modelValue": {
|
159
119
|
type: import("vue").PropType<(value: boolean) => any>;
|
160
120
|
};
|
@@ -166,61 +126,6 @@ declare const _default: {
|
|
166
126
|
type: import("vue").PropType<boolean>;
|
167
127
|
required: false;
|
168
128
|
};
|
169
|
-
name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
170
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
171
|
-
}; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
172
|
-
type: import("vue").PropType<boolean>;
|
173
|
-
required: false;
|
174
|
-
}; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
175
|
-
type: import("vue").PropType<boolean>;
|
176
|
-
required: false;
|
177
|
-
}; } & {
|
178
|
-
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, boolean, {
|
179
|
-
"onUpdate:modelValue": {
|
180
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
181
|
-
};
|
182
|
-
} & {
|
183
|
-
"v-model": {
|
184
|
-
type: import("vue").PropType<boolean>;
|
185
|
-
required: false;
|
186
|
-
};
|
187
|
-
} & {
|
188
|
-
modelValue: {
|
189
|
-
type: import("vue").PropType<boolean>;
|
190
|
-
required: false;
|
191
|
-
};
|
192
|
-
}>;
|
193
|
-
defaultValue(value?: boolean): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, boolean, {
|
194
|
-
"onUpdate:modelValue": {
|
195
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
196
|
-
};
|
197
|
-
} & {
|
198
|
-
"v-model": {
|
199
|
-
type: import("vue").PropType<boolean>;
|
200
|
-
required: false;
|
201
|
-
};
|
202
|
-
} & {
|
203
|
-
modelValue: {
|
204
|
-
type: import("vue").PropType<boolean>;
|
205
|
-
required: false;
|
206
|
-
};
|
207
|
-
}, false>;
|
208
|
-
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, boolean, {
|
209
|
-
"onUpdate:modelValue": {
|
210
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
211
|
-
};
|
212
|
-
} & {
|
213
|
-
"v-model": {
|
214
|
-
type: import("vue").PropType<boolean>;
|
215
|
-
required: false;
|
216
|
-
};
|
217
|
-
} & {
|
218
|
-
modelValue: {
|
219
|
-
type: import("vue").PropType<boolean>;
|
220
|
-
required: false;
|
221
|
-
};
|
222
|
-
}>;
|
223
|
-
};
|
224
129
|
class: {
|
225
130
|
type: import("vue").PropType<String | String[]>;
|
226
131
|
required: boolean;
|
@@ -230,7 +135,15 @@ declare const _default: {
|
|
230
135
|
colors?: any;
|
231
136
|
blueprintType?: any;
|
232
137
|
blueprint?: any;
|
233
|
-
}
|
138
|
+
}>> & {
|
139
|
+
"onUpdate:modelValue"?: (value: boolean) => any;
|
140
|
+
onDoc$?: (description?: string) => any;
|
141
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
142
|
+
"update:modelValue": (value: boolean) => void;
|
143
|
+
doc$(description?: string): {
|
144
|
+
"update:modelValue": (value: boolean) => void;
|
145
|
+
};
|
146
|
+
}, string, {
|
234
147
|
container?: any;
|
235
148
|
blueprint?: any;
|
236
149
|
colorSchemaType?: any;
|
@@ -258,10 +171,13 @@ declare const _default: {
|
|
258
171
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
259
172
|
} & Readonly<import("vue").ExtractPropTypes<{
|
260
173
|
"v-slots": import("vue").Prop<{
|
261
|
-
default?: import("
|
174
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
262
175
|
} & {
|
263
176
|
activator?: () => VNodeChild;
|
264
177
|
}>;
|
178
|
+
visibleOnContentClick: {
|
179
|
+
type: import("vue").PropType<boolean>;
|
180
|
+
};
|
265
181
|
openOnHover: {
|
266
182
|
type: import("vue").PropType<boolean>;
|
267
183
|
};
|
@@ -272,6 +188,18 @@ declare const _default: {
|
|
272
188
|
closeDelay: {
|
273
189
|
type: import("vue").PropType<string | number>;
|
274
190
|
};
|
191
|
+
minHeight: {
|
192
|
+
type: import("vue").PropType<string | number>;
|
193
|
+
};
|
194
|
+
minWidth: {
|
195
|
+
type: import("vue").PropType<string | number>;
|
196
|
+
};
|
197
|
+
attach: {
|
198
|
+
type: import("vue").PropType<string | boolean | Element>;
|
199
|
+
};
|
200
|
+
activator: {
|
201
|
+
type: import("vue").PropType<string>;
|
202
|
+
};
|
275
203
|
"onUpdate:modelValue": {
|
276
204
|
type: import("vue").PropType<(value: boolean) => any>;
|
277
205
|
};
|
@@ -283,61 +211,6 @@ declare const _default: {
|
|
283
211
|
type: import("vue").PropType<boolean>;
|
284
212
|
required: false;
|
285
213
|
};
|
286
|
-
name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
287
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
288
|
-
}; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
289
|
-
type: import("vue").PropType<boolean>;
|
290
|
-
required: false;
|
291
|
-
}; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
292
|
-
type: import("vue").PropType<boolean>;
|
293
|
-
required: false;
|
294
|
-
}; } & {
|
295
|
-
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, boolean, {
|
296
|
-
"onUpdate:modelValue": {
|
297
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
298
|
-
};
|
299
|
-
} & {
|
300
|
-
"v-model": {
|
301
|
-
type: import("vue").PropType<boolean>;
|
302
|
-
required: false;
|
303
|
-
};
|
304
|
-
} & {
|
305
|
-
modelValue: {
|
306
|
-
type: import("vue").PropType<boolean>;
|
307
|
-
required: false;
|
308
|
-
};
|
309
|
-
}>;
|
310
|
-
defaultValue(value?: boolean): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, boolean, {
|
311
|
-
"onUpdate:modelValue": {
|
312
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
313
|
-
};
|
314
|
-
} & {
|
315
|
-
"v-model": {
|
316
|
-
type: import("vue").PropType<boolean>;
|
317
|
-
required: false;
|
318
|
-
};
|
319
|
-
} & {
|
320
|
-
modelValue: {
|
321
|
-
type: import("vue").PropType<boolean>;
|
322
|
-
required: false;
|
323
|
-
};
|
324
|
-
}, false>;
|
325
|
-
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, boolean, {
|
326
|
-
"onUpdate:modelValue": {
|
327
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
328
|
-
};
|
329
|
-
} & {
|
330
|
-
"v-model": {
|
331
|
-
type: import("vue").PropType<boolean>;
|
332
|
-
required: false;
|
333
|
-
};
|
334
|
-
} & {
|
335
|
-
modelValue: {
|
336
|
-
type: import("vue").PropType<boolean>;
|
337
|
-
required: false;
|
338
|
-
};
|
339
|
-
}>;
|
340
|
-
};
|
341
214
|
class: {
|
342
215
|
type: import("vue").PropType<String | String[]>;
|
343
216
|
required: boolean;
|
@@ -347,16 +220,22 @@ declare const _default: {
|
|
347
220
|
colors?: any;
|
348
221
|
blueprintType?: any;
|
349
222
|
blueprint?: any;
|
350
|
-
}>> &
|
223
|
+
}>> & {
|
224
|
+
"onUpdate:modelValue"?: (value: boolean) => any;
|
225
|
+
onDoc$?: (description?: string) => any;
|
226
|
+
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
351
227
|
__isFragment?: never;
|
352
228
|
__isTeleport?: never;
|
353
229
|
__isSuspense?: never;
|
354
230
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
355
231
|
"v-slots": import("vue").Prop<{
|
356
|
-
default?: import("
|
232
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
357
233
|
} & {
|
358
234
|
activator?: () => VNodeChild;
|
359
235
|
}>;
|
236
|
+
visibleOnContentClick: {
|
237
|
+
type: import("vue").PropType<boolean>;
|
238
|
+
};
|
360
239
|
openOnHover: {
|
361
240
|
type: import("vue").PropType<boolean>;
|
362
241
|
};
|
@@ -367,6 +246,18 @@ declare const _default: {
|
|
367
246
|
closeDelay: {
|
368
247
|
type: import("vue").PropType<string | number>;
|
369
248
|
};
|
249
|
+
minHeight: {
|
250
|
+
type: import("vue").PropType<string | number>;
|
251
|
+
};
|
252
|
+
minWidth: {
|
253
|
+
type: import("vue").PropType<string | number>;
|
254
|
+
};
|
255
|
+
attach: {
|
256
|
+
type: import("vue").PropType<string | boolean | Element>;
|
257
|
+
};
|
258
|
+
activator: {
|
259
|
+
type: import("vue").PropType<string>;
|
260
|
+
};
|
370
261
|
"onUpdate:modelValue": {
|
371
262
|
type: import("vue").PropType<(value: boolean) => any>;
|
372
263
|
};
|
@@ -378,61 +269,6 @@ declare const _default: {
|
|
378
269
|
type: import("vue").PropType<boolean>;
|
379
270
|
required: false;
|
380
271
|
};
|
381
|
-
name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
382
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
383
|
-
}; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
384
|
-
type: import("vue").PropType<boolean>;
|
385
|
-
required: false;
|
386
|
-
}; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
387
|
-
type: import("vue").PropType<boolean>;
|
388
|
-
required: false;
|
389
|
-
}; } & {
|
390
|
-
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, boolean, {
|
391
|
-
"onUpdate:modelValue": {
|
392
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
393
|
-
};
|
394
|
-
} & {
|
395
|
-
"v-model": {
|
396
|
-
type: import("vue").PropType<boolean>;
|
397
|
-
required: false;
|
398
|
-
};
|
399
|
-
} & {
|
400
|
-
modelValue: {
|
401
|
-
type: import("vue").PropType<boolean>;
|
402
|
-
required: false;
|
403
|
-
};
|
404
|
-
}>;
|
405
|
-
defaultValue(value?: boolean): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, boolean, {
|
406
|
-
"onUpdate:modelValue": {
|
407
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
408
|
-
};
|
409
|
-
} & {
|
410
|
-
"v-model": {
|
411
|
-
type: import("vue").PropType<boolean>;
|
412
|
-
required: false;
|
413
|
-
};
|
414
|
-
} & {
|
415
|
-
modelValue: {
|
416
|
-
type: import("vue").PropType<boolean>;
|
417
|
-
required: false;
|
418
|
-
};
|
419
|
-
}, false>;
|
420
|
-
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, boolean, {
|
421
|
-
"onUpdate:modelValue": {
|
422
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
423
|
-
};
|
424
|
-
} & {
|
425
|
-
"v-model": {
|
426
|
-
type: import("vue").PropType<boolean>;
|
427
|
-
required: false;
|
428
|
-
};
|
429
|
-
} & {
|
430
|
-
modelValue: {
|
431
|
-
type: import("vue").PropType<boolean>;
|
432
|
-
required: false;
|
433
|
-
};
|
434
|
-
}>;
|
435
|
-
};
|
436
272
|
class: {
|
437
273
|
type: import("vue").PropType<String | String[]>;
|
438
274
|
required: boolean;
|
@@ -442,7 +278,15 @@ declare const _default: {
|
|
442
278
|
colors?: any;
|
443
279
|
blueprintType?: any;
|
444
280
|
blueprint?: any;
|
445
|
-
}
|
281
|
+
}>> & {
|
282
|
+
"onUpdate:modelValue"?: (value: boolean) => any;
|
283
|
+
onDoc$?: (description?: string) => any;
|
284
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
285
|
+
"update:modelValue": (value: boolean) => void;
|
286
|
+
doc$(description?: string): {
|
287
|
+
"update:modelValue": (value: boolean) => void;
|
288
|
+
};
|
289
|
+
}, string, {
|
446
290
|
container?: any;
|
447
291
|
blueprint?: any;
|
448
292
|
colorSchemaType?: any;
|
@@ -457,78 +301,25 @@ declare const _default: {
|
|
457
301
|
colors?: any;
|
458
302
|
} & {
|
459
303
|
class?: String | String[];
|
460
|
-
|
461
|
-
|
462
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
463
|
-
};
|
464
|
-
} & {
|
465
|
-
[x: `v-model:${string}`]: {
|
466
|
-
type: import("vue").PropType<boolean>;
|
467
|
-
required: false;
|
468
|
-
};
|
469
|
-
} & {
|
470
|
-
[x: string]: {
|
471
|
-
type: import("vue").PropType<boolean>;
|
472
|
-
required: false;
|
473
|
-
};
|
474
|
-
} & {
|
475
|
-
require(): import("../../DefineVueTypings").DefinePropModelRequire<string, boolean, {
|
476
|
-
"onUpdate:modelValue": {
|
477
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
478
|
-
};
|
479
|
-
} & {
|
480
|
-
"v-model": {
|
481
|
-
type: import("vue").PropType<boolean>;
|
482
|
-
required: false;
|
483
|
-
};
|
484
|
-
} & {
|
485
|
-
modelValue: {
|
486
|
-
type: import("vue").PropType<boolean>;
|
487
|
-
required: false;
|
488
|
-
};
|
489
|
-
}>;
|
490
|
-
defaultValue(value?: boolean): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, boolean, {
|
491
|
-
"onUpdate:modelValue": {
|
492
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
493
|
-
};
|
494
|
-
} & {
|
495
|
-
"v-model": {
|
496
|
-
type: import("vue").PropType<boolean>;
|
497
|
-
required: false;
|
498
|
-
};
|
499
|
-
} & {
|
500
|
-
modelValue: {
|
501
|
-
type: import("vue").PropType<boolean>;
|
502
|
-
required: false;
|
503
|
-
};
|
504
|
-
}, false>;
|
505
|
-
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, boolean, {
|
506
|
-
"onUpdate:modelValue": {
|
507
|
-
type: import("vue").PropType<(value: boolean) => any>;
|
508
|
-
};
|
509
|
-
} & {
|
510
|
-
"v-model": {
|
511
|
-
type: import("vue").PropType<boolean>;
|
512
|
-
required: false;
|
513
|
-
};
|
514
|
-
} & {
|
515
|
-
modelValue: {
|
516
|
-
type: import("vue").PropType<boolean>;
|
517
|
-
required: false;
|
518
|
-
};
|
519
|
-
}>;
|
520
|
-
};
|
304
|
+
minHeight?: string | number;
|
305
|
+
minWidth?: string | number;
|
521
306
|
"v-slots"?: {
|
522
|
-
default?: import("
|
307
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
523
308
|
} & {
|
524
309
|
activator?: () => VNodeChild;
|
525
310
|
};
|
526
311
|
"v-model"?: boolean;
|
527
312
|
modelValue?: boolean;
|
528
313
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
314
|
+
attach?: string | boolean | Element;
|
529
315
|
location?: "left" | "center" | "right" | "bottom" | "top" | "end" | "start" | "center center" | "bottom end" | "bottom start" | "top center" | "top end" | "top start" | "end bottom" | "end top" | "start bottom" | "start top";
|
316
|
+
activator?: string;
|
530
317
|
closeDelay?: string | number;
|
531
318
|
openOnHover?: boolean;
|
532
|
-
|
319
|
+
visibleOnContentClick?: boolean;
|
320
|
+
}>, "onUpdate:modelValue" | "onDoc$"> & {
|
321
|
+
"onUpdate:modelValue"?: (value: boolean) => any;
|
322
|
+
onDoc$?: (description?: string) => any;
|
323
|
+
};
|
533
324
|
};
|
534
325
|
export default _default;
|