@omnia/fx 8.0.44-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 +68 -12
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +75 -12
- 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
@@ -26,6 +26,8 @@ declare const _default: {
|
|
26
26
|
style?: unknown;
|
27
27
|
class?: String | String[];
|
28
28
|
key?: string | number | symbol;
|
29
|
+
readonly multiple?: boolean;
|
30
|
+
readonly disabled?: boolean;
|
29
31
|
ref?: import("vue").VNodeRef;
|
30
32
|
ref_for?: boolean;
|
31
33
|
ref_key?: string;
|
@@ -67,21 +69,23 @@ declare const _default: {
|
|
67
69
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
68
70
|
[key: string]: any;
|
69
71
|
}>) => void)[];
|
72
|
+
readonly readonly?: boolean;
|
70
73
|
readonly toned?: boolean;
|
71
74
|
readonly "v-slots"?: {
|
72
|
-
default?: import("
|
75
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
73
76
|
} & {
|
74
|
-
|
77
|
+
chip?: (item: RenderingItem, index: Number) => VNodeChild;
|
75
78
|
selection?: (item: RenderingItem, index: Number) => VNodeChild;
|
76
79
|
};
|
77
80
|
readonly "v-model"?: any;
|
78
81
|
readonly modelValue?: any;
|
79
82
|
"onUpdate:modelValue"?: ((value: any) => any) & ((value: any) => any);
|
80
83
|
readonly variant?: "default" | "add" | "picker";
|
84
|
+
readonly loading?: boolean;
|
81
85
|
readonly items?: any;
|
86
|
+
readonly clearable?: boolean;
|
82
87
|
readonly itemTitle?: any;
|
83
88
|
readonly itemValue?: any;
|
84
|
-
readonly clearable?: boolean;
|
85
89
|
"onClick:button"?: (value: any) => any;
|
86
90
|
readonly searchable?: boolean;
|
87
91
|
};
|
@@ -100,11 +104,27 @@ declare const _default: {
|
|
100
104
|
$el: any;
|
101
105
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
102
106
|
"v-slots": import("vue").Prop<{
|
103
|
-
default?: import("
|
107
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
104
108
|
} & {
|
105
|
-
|
109
|
+
chip?: (item: RenderingItem, index: Number) => VNodeChild;
|
106
110
|
selection?: (item: RenderingItem, index: Number) => VNodeChild;
|
107
111
|
}>;
|
112
|
+
disabled: {
|
113
|
+
type: import("vue").PropType<boolean>;
|
114
|
+
required: false;
|
115
|
+
};
|
116
|
+
loading: {
|
117
|
+
type: import("vue").PropType<boolean>;
|
118
|
+
required: false;
|
119
|
+
};
|
120
|
+
multiple: {
|
121
|
+
type: import("vue").PropType<boolean>;
|
122
|
+
required: false;
|
123
|
+
};
|
124
|
+
readonly: {
|
125
|
+
type: import("vue").PropType<boolean>;
|
126
|
+
required: false;
|
127
|
+
};
|
108
128
|
toned: {
|
109
129
|
type: import("vue").PropType<boolean>;
|
110
130
|
} & {
|
@@ -186,11 +206,27 @@ declare const _default: {
|
|
186
206
|
$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;
|
187
207
|
} & Readonly<import("vue").ExtractPropTypes<{
|
188
208
|
"v-slots": import("vue").Prop<{
|
189
|
-
default?: import("
|
209
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
190
210
|
} & {
|
191
|
-
|
211
|
+
chip?: (item: RenderingItem, index: Number) => VNodeChild;
|
192
212
|
selection?: (item: RenderingItem, index: Number) => VNodeChild;
|
193
213
|
}>;
|
214
|
+
disabled: {
|
215
|
+
type: import("vue").PropType<boolean>;
|
216
|
+
required: false;
|
217
|
+
};
|
218
|
+
loading: {
|
219
|
+
type: import("vue").PropType<boolean>;
|
220
|
+
required: false;
|
221
|
+
};
|
222
|
+
multiple: {
|
223
|
+
type: import("vue").PropType<boolean>;
|
224
|
+
required: false;
|
225
|
+
};
|
226
|
+
readonly: {
|
227
|
+
type: import("vue").PropType<boolean>;
|
228
|
+
required: false;
|
229
|
+
};
|
194
230
|
toned: {
|
195
231
|
type: import("vue").PropType<boolean>;
|
196
232
|
} & {
|
@@ -247,11 +283,27 @@ declare const _default: {
|
|
247
283
|
__isSuspense?: never;
|
248
284
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
249
285
|
"v-slots": import("vue").Prop<{
|
250
|
-
default?: import("
|
286
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
251
287
|
} & {
|
252
|
-
|
288
|
+
chip?: (item: RenderingItem, index: Number) => VNodeChild;
|
253
289
|
selection?: (item: RenderingItem, index: Number) => VNodeChild;
|
254
290
|
}>;
|
291
|
+
disabled: {
|
292
|
+
type: import("vue").PropType<boolean>;
|
293
|
+
required: false;
|
294
|
+
};
|
295
|
+
loading: {
|
296
|
+
type: import("vue").PropType<boolean>;
|
297
|
+
required: false;
|
298
|
+
};
|
299
|
+
multiple: {
|
300
|
+
type: import("vue").PropType<boolean>;
|
301
|
+
required: false;
|
302
|
+
};
|
303
|
+
readonly: {
|
304
|
+
type: import("vue").PropType<boolean>;
|
305
|
+
required: false;
|
306
|
+
};
|
255
307
|
toned: {
|
256
308
|
type: import("vue").PropType<boolean>;
|
257
309
|
} & {
|
@@ -321,21 +373,25 @@ declare const _default: {
|
|
321
373
|
} & {
|
322
374
|
label?: string;
|
323
375
|
class?: String | String[];
|
376
|
+
multiple?: boolean;
|
377
|
+
disabled?: boolean;
|
378
|
+
readonly?: boolean;
|
324
379
|
toned?: boolean;
|
325
380
|
"v-slots"?: {
|
326
|
-
default?: import("
|
381
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
327
382
|
} & {
|
328
|
-
|
383
|
+
chip?: (item: RenderingItem, index: Number) => VNodeChild;
|
329
384
|
selection?: (item: RenderingItem, index: Number) => VNodeChild;
|
330
385
|
};
|
331
386
|
"v-model"?: any;
|
332
387
|
modelValue?: any;
|
333
388
|
"onUpdate:modelValue"?: (value: any) => any;
|
334
389
|
variant?: "default" | "add" | "picker";
|
390
|
+
loading?: boolean;
|
335
391
|
items?: any;
|
392
|
+
clearable?: boolean;
|
336
393
|
itemTitle?: any;
|
337
394
|
itemValue?: any;
|
338
|
-
clearable?: boolean;
|
339
395
|
searchable?: boolean;
|
340
396
|
}>, "onUpdate:modelValue" | "onClick:button"> & {
|
341
397
|
"onUpdate:modelValue"?: (value: any) => any;
|
@@ -1,3 +1,8 @@
|
|
1
|
+
import { VNodeChild } from "vue";
|
2
|
+
import { VTextFieldSlots } from "../../ComponentTypings";
|
3
|
+
interface OTextFieldSlots extends VTextFieldSlots {
|
4
|
+
filterMenu?(closeMenuCallback: () => void): VNodeChild;
|
5
|
+
}
|
1
6
|
declare const _default: {
|
2
7
|
new (...args: any[]): {
|
3
8
|
$: import("vue").ComponentInternalInstance;
|
@@ -55,13 +60,20 @@ declare const _default: {
|
|
55
60
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
56
61
|
[key: string]: any;
|
57
62
|
}>) => void)[];
|
58
|
-
readonly
|
63
|
+
readonly placeholder?: string;
|
64
|
+
readonly toned?: boolean;
|
65
|
+
readonly "v-slots"?: {
|
66
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
67
|
+
} & OTextFieldSlots;
|
59
68
|
readonly "v-model"?: string;
|
60
69
|
readonly modelValue?: string;
|
61
70
|
"onUpdate:modelValue"?: ((value: string) => any) & ((value: string) => any);
|
62
|
-
readonly variant?: "search" | "link" | "default" | "media" | "find-slim" | "numberselector" | "numberselector-prepend";
|
71
|
+
readonly variant?: "search" | "link" | "default" | "media" | "filter-menu" | "find-slim" | "numberselector" | "numberselector-prepend";
|
63
72
|
readonly loading?: boolean;
|
73
|
+
readonly autofocus?: boolean;
|
74
|
+
"onClick:clear"?: () => any;
|
64
75
|
readonly clearable?: boolean;
|
76
|
+
onDoc$?: (description?: string) => any;
|
65
77
|
"onClick:button"?: () => any;
|
66
78
|
};
|
67
79
|
$attrs: {
|
@@ -75,7 +87,7 @@ declare const _default: {
|
|
75
87
|
}>;
|
76
88
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
77
89
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
78
|
-
$emit: ((event: "update:modelValue", value: string) => void) & ((event: "click:button") => void);
|
90
|
+
$emit: ((event: "doc$", description?: string) => void) & ((event: "update:modelValue", value: string) => void) & ((event: "click:clear") => void) & ((event: "click:button") => void);
|
79
91
|
$el: any;
|
80
92
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
81
93
|
disabled: {
|
@@ -87,7 +99,11 @@ declare const _default: {
|
|
87
99
|
required: false;
|
88
100
|
};
|
89
101
|
toned: {
|
90
|
-
type: import("vue").PropType<
|
102
|
+
type: import("vue").PropType<boolean>;
|
103
|
+
required: false;
|
104
|
+
};
|
105
|
+
autofocus: {
|
106
|
+
type: import("vue").PropType<boolean>;
|
91
107
|
required: false;
|
92
108
|
};
|
93
109
|
type: {
|
@@ -97,7 +113,10 @@ declare const _default: {
|
|
97
113
|
type: import("vue").PropType<boolean>;
|
98
114
|
};
|
99
115
|
variant: {
|
100
|
-
type: import("vue").PropType<"search" | "link" | "default" | "media" | "find-slim" | "numberselector" | "numberselector-prepend">;
|
116
|
+
type: import("vue").PropType<"search" | "link" | "default" | "media" | "filter-menu" | "find-slim" | "numberselector" | "numberselector-prepend">;
|
117
|
+
};
|
118
|
+
placeholder: {
|
119
|
+
type: import("vue").PropType<string>;
|
101
120
|
};
|
102
121
|
label: {
|
103
122
|
type: import("vue").PropType<string>;
|
@@ -113,6 +132,9 @@ declare const _default: {
|
|
113
132
|
type: import("vue").PropType<string>;
|
114
133
|
required: false;
|
115
134
|
};
|
135
|
+
"v-slots": import("vue").Prop<{
|
136
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
137
|
+
} & OTextFieldSlots>;
|
116
138
|
class: {
|
117
139
|
type: import("vue").PropType<String | String[]>;
|
118
140
|
required: boolean;
|
@@ -124,8 +146,14 @@ declare const _default: {
|
|
124
146
|
blueprint?: any;
|
125
147
|
}>> & {
|
126
148
|
"onUpdate:modelValue"?: (value: string) => any;
|
149
|
+
"onClick:clear"?: () => any;
|
150
|
+
onDoc$?: (description?: string) => any;
|
127
151
|
"onClick:button"?: () => any;
|
128
152
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
153
|
+
"click:clear": () => void;
|
154
|
+
doc$(description?: string): {
|
155
|
+
"click:clear": () => void;
|
156
|
+
};
|
129
157
|
"update:modelValue": (value: string) => true;
|
130
158
|
"click:button": () => true;
|
131
159
|
}, string, {
|
@@ -164,7 +192,11 @@ declare const _default: {
|
|
164
192
|
required: false;
|
165
193
|
};
|
166
194
|
toned: {
|
167
|
-
type: import("vue").PropType<
|
195
|
+
type: import("vue").PropType<boolean>;
|
196
|
+
required: false;
|
197
|
+
};
|
198
|
+
autofocus: {
|
199
|
+
type: import("vue").PropType<boolean>;
|
168
200
|
required: false;
|
169
201
|
};
|
170
202
|
type: {
|
@@ -174,7 +206,10 @@ declare const _default: {
|
|
174
206
|
type: import("vue").PropType<boolean>;
|
175
207
|
};
|
176
208
|
variant: {
|
177
|
-
type: import("vue").PropType<"search" | "link" | "default" | "media" | "find-slim" | "numberselector" | "numberselector-prepend">;
|
209
|
+
type: import("vue").PropType<"search" | "link" | "default" | "media" | "filter-menu" | "find-slim" | "numberselector" | "numberselector-prepend">;
|
210
|
+
};
|
211
|
+
placeholder: {
|
212
|
+
type: import("vue").PropType<string>;
|
178
213
|
};
|
179
214
|
label: {
|
180
215
|
type: import("vue").PropType<string>;
|
@@ -190,6 +225,9 @@ declare const _default: {
|
|
190
225
|
type: import("vue").PropType<string>;
|
191
226
|
required: false;
|
192
227
|
};
|
228
|
+
"v-slots": import("vue").Prop<{
|
229
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
230
|
+
} & OTextFieldSlots>;
|
193
231
|
class: {
|
194
232
|
type: import("vue").PropType<String | String[]>;
|
195
233
|
required: boolean;
|
@@ -201,6 +239,8 @@ declare const _default: {
|
|
201
239
|
blueprint?: any;
|
202
240
|
}>> & {
|
203
241
|
"onUpdate:modelValue"?: (value: string) => any;
|
242
|
+
"onClick:clear"?: () => any;
|
243
|
+
onDoc$?: (description?: string) => any;
|
204
244
|
"onClick:button"?: () => any;
|
205
245
|
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
206
246
|
__isFragment?: never;
|
@@ -216,7 +256,11 @@ declare const _default: {
|
|
216
256
|
required: false;
|
217
257
|
};
|
218
258
|
toned: {
|
219
|
-
type: import("vue").PropType<
|
259
|
+
type: import("vue").PropType<boolean>;
|
260
|
+
required: false;
|
261
|
+
};
|
262
|
+
autofocus: {
|
263
|
+
type: import("vue").PropType<boolean>;
|
220
264
|
required: false;
|
221
265
|
};
|
222
266
|
type: {
|
@@ -226,7 +270,10 @@ declare const _default: {
|
|
226
270
|
type: import("vue").PropType<boolean>;
|
227
271
|
};
|
228
272
|
variant: {
|
229
|
-
type: import("vue").PropType<"search" | "link" | "default" | "media" | "find-slim" | "numberselector" | "numberselector-prepend">;
|
273
|
+
type: import("vue").PropType<"search" | "link" | "default" | "media" | "filter-menu" | "find-slim" | "numberselector" | "numberselector-prepend">;
|
274
|
+
};
|
275
|
+
placeholder: {
|
276
|
+
type: import("vue").PropType<string>;
|
230
277
|
};
|
231
278
|
label: {
|
232
279
|
type: import("vue").PropType<string>;
|
@@ -242,6 +289,9 @@ declare const _default: {
|
|
242
289
|
type: import("vue").PropType<string>;
|
243
290
|
required: false;
|
244
291
|
};
|
292
|
+
"v-slots": import("vue").Prop<{
|
293
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
294
|
+
} & OTextFieldSlots>;
|
245
295
|
class: {
|
246
296
|
type: import("vue").PropType<String | String[]>;
|
247
297
|
required: boolean;
|
@@ -253,8 +303,14 @@ declare const _default: {
|
|
253
303
|
blueprint?: any;
|
254
304
|
}>> & {
|
255
305
|
"onUpdate:modelValue"?: (value: string) => any;
|
306
|
+
"onClick:clear"?: () => any;
|
307
|
+
onDoc$?: (description?: string) => any;
|
256
308
|
"onClick:button"?: () => any;
|
257
309
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
310
|
+
"click:clear": () => void;
|
311
|
+
doc$(description?: string): {
|
312
|
+
"click:clear": () => void;
|
313
|
+
};
|
258
314
|
"update:modelValue": (value: string) => true;
|
259
315
|
"click:button": () => true;
|
260
316
|
}, string, {
|
@@ -275,15 +331,22 @@ declare const _default: {
|
|
275
331
|
class?: String | String[];
|
276
332
|
type?: "number";
|
277
333
|
disabled?: boolean;
|
278
|
-
|
334
|
+
placeholder?: string;
|
335
|
+
toned?: boolean;
|
336
|
+
"v-slots"?: {
|
337
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
338
|
+
} & OTextFieldSlots;
|
279
339
|
"v-model"?: string;
|
280
340
|
modelValue?: string;
|
281
341
|
"onUpdate:modelValue"?: (value: string) => any;
|
282
|
-
variant?: "search" | "link" | "default" | "media" | "find-slim" | "numberselector" | "numberselector-prepend";
|
342
|
+
variant?: "search" | "link" | "default" | "media" | "filter-menu" | "find-slim" | "numberselector" | "numberselector-prepend";
|
283
343
|
loading?: boolean;
|
344
|
+
autofocus?: boolean;
|
284
345
|
clearable?: boolean;
|
285
|
-
}>, "onUpdate:modelValue" | "onClick:button"> & {
|
346
|
+
}>, "onUpdate:modelValue" | "onClick:clear" | "onDoc$" | "onClick:button"> & {
|
286
347
|
"onUpdate:modelValue"?: (value: string) => any;
|
348
|
+
"onClick:clear"?: () => any;
|
349
|
+
onDoc$?: (description?: string) => any;
|
287
350
|
"onClick:button"?: () => any;
|
288
351
|
};
|
289
352
|
};
|
@@ -58,7 +58,7 @@ declare const _default: {
|
|
58
58
|
}>) => void)[];
|
59
59
|
readonly closeButton?: boolean;
|
60
60
|
readonly "v-slots"?: {
|
61
|
-
default?:
|
61
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
62
62
|
} & {
|
63
63
|
title?: Func<[VNodeChild]>;
|
64
64
|
customButtons?: Func<[VNodeChild]>;
|
@@ -84,7 +84,7 @@ declare const _default: {
|
|
84
84
|
$el: any;
|
85
85
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
86
86
|
"v-slots": import("vue").Prop<{
|
87
|
-
default?:
|
87
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
88
88
|
} & {
|
89
89
|
title?: Func<[VNodeChild]>;
|
90
90
|
customButtons?: Func<[VNodeChild]>;
|
@@ -150,7 +150,7 @@ declare const _default: {
|
|
150
150
|
$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;
|
151
151
|
} & Readonly<import("vue").ExtractPropTypes<{
|
152
152
|
"v-slots": import("vue").Prop<{
|
153
|
-
default?:
|
153
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
154
154
|
} & {
|
155
155
|
title?: Func<[VNodeChild]>;
|
156
156
|
customButtons?: Func<[VNodeChild]>;
|
@@ -191,7 +191,7 @@ declare const _default: {
|
|
191
191
|
__isSuspense?: never;
|
192
192
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
193
193
|
"v-slots": import("vue").Prop<{
|
194
|
-
default?:
|
194
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
195
195
|
} & {
|
196
196
|
title?: Func<[VNodeChild]>;
|
197
197
|
customButtons?: Func<[VNodeChild]>;
|
@@ -248,7 +248,7 @@ declare const _default: {
|
|
248
248
|
icon?: IIcon;
|
249
249
|
closeButton?: boolean;
|
250
250
|
"v-slots"?: {
|
251
|
-
default?:
|
251
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
252
252
|
} & {
|
253
253
|
title?: Func<[VNodeChild]>;
|
254
254
|
customButtons?: Func<[VNodeChild]>;
|
@@ -50,7 +50,7 @@ declare const _default: {
|
|
50
50
|
[key: string]: any;
|
51
51
|
}>) => void)[];
|
52
52
|
readonly "v-slots"?: {
|
53
|
-
default?: import("
|
53
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
54
54
|
} & {
|
55
55
|
activator?: () => VNodeChild;
|
56
56
|
};
|
@@ -72,7 +72,7 @@ declare const _default: {
|
|
72
72
|
$el: any;
|
73
73
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
74
74
|
"v-slots": import("vue").Prop<{
|
75
|
-
default?: import("
|
75
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
76
76
|
} & {
|
77
77
|
activator?: () => VNodeChild;
|
78
78
|
}>;
|
@@ -107,7 +107,7 @@ declare const _default: {
|
|
107
107
|
$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;
|
108
108
|
} & Readonly<import("vue").ExtractPropTypes<{
|
109
109
|
"v-slots": import("vue").Prop<{
|
110
|
-
default?: import("
|
110
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
111
111
|
} & {
|
112
112
|
activator?: () => VNodeChild;
|
113
113
|
}>;
|
@@ -126,7 +126,7 @@ declare const _default: {
|
|
126
126
|
__isSuspense?: never;
|
127
127
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
128
128
|
"v-slots": import("vue").Prop<{
|
129
|
-
default?: import("
|
129
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
130
130
|
} & {
|
131
131
|
activator?: () => VNodeChild;
|
132
132
|
}>;
|
@@ -143,7 +143,7 @@ declare const _default: {
|
|
143
143
|
propsDefinition: Omit<Readonly<{} & {
|
144
144
|
text?: string;
|
145
145
|
"v-slots"?: {
|
146
|
-
default?: import("
|
146
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
147
147
|
} & {
|
148
148
|
activator?: () => VNodeChild;
|
149
149
|
};
|
@@ -59,7 +59,7 @@ declare const _default: {
|
|
59
59
|
[key: string]: any;
|
60
60
|
}>) => void)[];
|
61
61
|
readonly "v-slots"?: {
|
62
|
-
default?: import("
|
62
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
63
63
|
} & {
|
64
64
|
itemAction?: (item: TreeViewItem, index: Number) => VNodeChild;
|
65
65
|
};
|
@@ -85,7 +85,7 @@ declare const _default: {
|
|
85
85
|
$el: any;
|
86
86
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
87
87
|
"v-slots": import("vue").Prop<{
|
88
|
-
default?: import("
|
88
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
89
89
|
} & {
|
90
90
|
itemAction?: (item: TreeViewItem, index: Number) => VNodeChild;
|
91
91
|
}>;
|
@@ -146,7 +146,7 @@ declare const _default: {
|
|
146
146
|
$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;
|
147
147
|
} & Readonly<import("vue").ExtractPropTypes<{
|
148
148
|
"v-slots": import("vue").Prop<{
|
149
|
-
default?: import("
|
149
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
150
150
|
} & {
|
151
151
|
itemAction?: (item: TreeViewItem, index: Number) => VNodeChild;
|
152
152
|
}>;
|
@@ -183,7 +183,7 @@ declare const _default: {
|
|
183
183
|
__isSuspense?: never;
|
184
184
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
185
185
|
"v-slots": import("vue").Prop<{
|
186
|
-
default?: import("
|
186
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
187
187
|
} & {
|
188
188
|
itemAction?: (item: TreeViewItem, index: Number) => VNodeChild;
|
189
189
|
}>;
|
@@ -232,7 +232,7 @@ declare const _default: {
|
|
232
232
|
} & {
|
233
233
|
multiple?: boolean;
|
234
234
|
"v-slots"?: {
|
235
|
-
default?: import("
|
235
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
236
236
|
} & {
|
237
237
|
itemAction?: (item: TreeViewItem, index: Number) => VNodeChild;
|
238
238
|
};
|
@@ -18,7 +18,7 @@ export declare class PersonaComponent extends VueComponentBase<IPersona> impleme
|
|
18
18
|
private resolvedUser;
|
19
19
|
created(): void;
|
20
20
|
beforeDestroy(): void;
|
21
|
-
getSize():
|
21
|
+
getSize(): "small" | "large";
|
22
22
|
onClick(): void;
|
23
23
|
onKeyUp(event: KeyboardEvent): void;
|
24
24
|
renderUserTitle(): JSX.Element;
|
@@ -51,8 +51,8 @@ declare const _default: {
|
|
51
51
|
[key: string]: any;
|
52
52
|
}>) => void)[];
|
53
53
|
readonly editor: Editor;
|
54
|
-
readonly onContentChanged: (content: string, extensionName?: string, data?: RichTextContentExtensionData) => void;
|
55
54
|
readonly items: ToolbarConfiguration[];
|
55
|
+
readonly onContentChanged: (content: string, extensionName?: string, data?: RichTextContentExtensionData) => void;
|
56
56
|
};
|
57
57
|
$attrs: {
|
58
58
|
[x: string]: unknown;
|
@@ -133,8 +133,8 @@ declare const _default: {
|
|
133
133
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
134
134
|
propsDefinition: Omit<Readonly<{
|
135
135
|
editor: Editor;
|
136
|
-
onContentChanged: (content: string, extensionName?: string, data?: RichTextContentExtensionData) => void;
|
137
136
|
items: ToolbarConfiguration[];
|
137
|
+
onContentChanged: (content: string, extensionName?: string, data?: RichTextContentExtensionData) => void;
|
138
138
|
} & {}>, never>;
|
139
139
|
};
|
140
140
|
export default _default;
|
@@ -116,7 +116,7 @@ declare const _default: {
|
|
116
116
|
[key: string]: any;
|
117
117
|
}>) => void)[];
|
118
118
|
readonly "v-slots"?: {
|
119
|
-
default?: import("
|
119
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
120
120
|
} & {
|
121
121
|
activator?: () => VNodeChild;
|
122
122
|
};
|
@@ -139,7 +139,7 @@ declare const _default: {
|
|
139
139
|
$el: any;
|
140
140
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
141
141
|
"v-slots": import("vue").Prop<{
|
142
|
-
default?: import("
|
142
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
143
143
|
} & {
|
144
144
|
activator?: () => VNodeChild;
|
145
145
|
}>;
|
@@ -246,7 +246,7 @@ declare const _default: {
|
|
246
246
|
$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;
|
247
247
|
} & Readonly<import("vue").ExtractPropTypes<{
|
248
248
|
"v-slots": import("vue").Prop<{
|
249
|
-
default?: import("
|
249
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
250
250
|
} & {
|
251
251
|
activator?: () => VNodeChild;
|
252
252
|
}>;
|
@@ -329,7 +329,7 @@ declare const _default: {
|
|
329
329
|
__isSuspense?: never;
|
330
330
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
331
331
|
"v-slots": import("vue").Prop<{
|
332
|
-
default?: import("
|
332
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
333
333
|
} & {
|
334
334
|
activator?: () => VNodeChild;
|
335
335
|
}>;
|
@@ -484,7 +484,7 @@ declare const _default: {
|
|
484
484
|
}>;
|
485
485
|
};
|
486
486
|
"v-slots"?: {
|
487
|
-
default?: import("
|
487
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
488
488
|
} & {
|
489
489
|
activator?: () => VNodeChild;
|
490
490
|
};
|
@@ -52,7 +52,7 @@ declare const _default: {
|
|
52
52
|
[key: string]: any;
|
53
53
|
}>) => void)[];
|
54
54
|
readonly "v-slots"?: {
|
55
|
-
default?: import("
|
55
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
56
56
|
} & {
|
57
57
|
activator?: () => VNodeChild;
|
58
58
|
};
|
@@ -75,11 +75,11 @@ declare const _default: {
|
|
75
75
|
$el: any;
|
76
76
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
77
77
|
"v-slots": import("vue").Prop<{
|
78
|
-
default?: import("
|
78
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
79
79
|
} & {
|
80
80
|
activator?: () => VNodeChild;
|
81
81
|
}, {
|
82
|
-
default?: import("
|
82
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
83
83
|
} & {
|
84
84
|
activator?: () => VNodeChild;
|
85
85
|
}>;
|
@@ -111,11 +111,11 @@ declare const _default: {
|
|
111
111
|
$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;
|
112
112
|
} & Readonly<import("vue").ExtractPropTypes<{
|
113
113
|
"v-slots": import("vue").Prop<{
|
114
|
-
default?: import("
|
114
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
115
115
|
} & {
|
116
116
|
activator?: () => VNodeChild;
|
117
117
|
}, {
|
118
|
-
default?: import("
|
118
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
119
119
|
} & {
|
120
120
|
activator?: () => VNodeChild;
|
121
121
|
}>;
|
@@ -129,11 +129,11 @@ declare const _default: {
|
|
129
129
|
__isSuspense?: never;
|
130
130
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
131
131
|
"v-slots": import("vue").Prop<{
|
132
|
-
default?: import("
|
132
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
133
133
|
} & {
|
134
134
|
activator?: () => VNodeChild;
|
135
135
|
}, {
|
136
|
-
default?: import("
|
136
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
137
137
|
} & {
|
138
138
|
activator?: () => VNodeChild;
|
139
139
|
}>;
|
@@ -146,7 +146,7 @@ declare const _default: {
|
|
146
146
|
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
147
147
|
propsDefinition: Omit<Readonly<{} & {
|
148
148
|
"v-slots"?: {
|
149
|
-
default?: import("
|
149
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
150
150
|
} & {
|
151
151
|
activator?: () => VNodeChild;
|
152
152
|
};
|