@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
@@ -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,22 +69,25 @@ 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;
|
90
|
+
readonly searchable?: boolean;
|
86
91
|
};
|
87
92
|
$attrs: {
|
88
93
|
[x: string]: unknown;
|
@@ -99,16 +104,36 @@ declare const _default: {
|
|
99
104
|
$el: any;
|
100
105
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
101
106
|
"v-slots": import("vue").Prop<{
|
102
|
-
default?: import("
|
107
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
103
108
|
} & {
|
104
|
-
|
109
|
+
chip?: (item: RenderingItem, index: Number) => VNodeChild;
|
105
110
|
selection?: (item: RenderingItem, index: Number) => VNodeChild;
|
106
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
|
+
};
|
107
128
|
toned: {
|
108
129
|
type: import("vue").PropType<boolean>;
|
109
130
|
} & {
|
110
131
|
type: import("vue").PropType<boolean>;
|
111
132
|
};
|
133
|
+
searchable: {
|
134
|
+
type: import("vue").PropType<boolean>;
|
135
|
+
required: false;
|
136
|
+
};
|
112
137
|
clearable: {
|
113
138
|
type: import("vue").PropType<boolean>;
|
114
139
|
};
|
@@ -181,16 +206,36 @@ declare const _default: {
|
|
181
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;
|
182
207
|
} & Readonly<import("vue").ExtractPropTypes<{
|
183
208
|
"v-slots": import("vue").Prop<{
|
184
|
-
default?: import("
|
209
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
185
210
|
} & {
|
186
|
-
|
211
|
+
chip?: (item: RenderingItem, index: Number) => VNodeChild;
|
187
212
|
selection?: (item: RenderingItem, index: Number) => VNodeChild;
|
188
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
|
+
};
|
189
230
|
toned: {
|
190
231
|
type: import("vue").PropType<boolean>;
|
191
232
|
} & {
|
192
233
|
type: import("vue").PropType<boolean>;
|
193
234
|
};
|
235
|
+
searchable: {
|
236
|
+
type: import("vue").PropType<boolean>;
|
237
|
+
required: false;
|
238
|
+
};
|
194
239
|
clearable: {
|
195
240
|
type: import("vue").PropType<boolean>;
|
196
241
|
};
|
@@ -238,16 +283,36 @@ declare const _default: {
|
|
238
283
|
__isSuspense?: never;
|
239
284
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
240
285
|
"v-slots": import("vue").Prop<{
|
241
|
-
default?: import("
|
286
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
242
287
|
} & {
|
243
|
-
|
288
|
+
chip?: (item: RenderingItem, index: Number) => VNodeChild;
|
244
289
|
selection?: (item: RenderingItem, index: Number) => VNodeChild;
|
245
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
|
+
};
|
246
307
|
toned: {
|
247
308
|
type: import("vue").PropType<boolean>;
|
248
309
|
} & {
|
249
310
|
type: import("vue").PropType<boolean>;
|
250
311
|
};
|
312
|
+
searchable: {
|
313
|
+
type: import("vue").PropType<boolean>;
|
314
|
+
required: false;
|
315
|
+
};
|
251
316
|
clearable: {
|
252
317
|
type: import("vue").PropType<boolean>;
|
253
318
|
};
|
@@ -308,21 +373,26 @@ declare const _default: {
|
|
308
373
|
} & {
|
309
374
|
label?: string;
|
310
375
|
class?: String | String[];
|
376
|
+
multiple?: boolean;
|
377
|
+
disabled?: boolean;
|
378
|
+
readonly?: boolean;
|
311
379
|
toned?: boolean;
|
312
380
|
"v-slots"?: {
|
313
|
-
default?: import("
|
381
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
314
382
|
} & {
|
315
|
-
|
383
|
+
chip?: (item: RenderingItem, index: Number) => VNodeChild;
|
316
384
|
selection?: (item: RenderingItem, index: Number) => VNodeChild;
|
317
385
|
};
|
318
386
|
"v-model"?: any;
|
319
387
|
modelValue?: any;
|
320
388
|
"onUpdate:modelValue"?: (value: any) => any;
|
321
389
|
variant?: "default" | "add" | "picker";
|
390
|
+
loading?: boolean;
|
322
391
|
items?: any;
|
392
|
+
clearable?: boolean;
|
323
393
|
itemTitle?: any;
|
324
394
|
itemValue?: any;
|
325
|
-
|
395
|
+
searchable?: boolean;
|
326
396
|
}>, "onUpdate:modelValue" | "onClick:button"> & {
|
327
397
|
"onUpdate:modelValue"?: (value: any) => any;
|
328
398
|
"onClick:button"?: (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;
|
@@ -13,6 +18,7 @@ declare const _default: {
|
|
13
18
|
class?: String | String[];
|
14
19
|
readonly type?: "number";
|
15
20
|
key?: string | number | symbol;
|
21
|
+
readonly disabled?: boolean;
|
16
22
|
ref?: import("vue").VNodeRef;
|
17
23
|
ref_for?: boolean;
|
18
24
|
ref_key?: string;
|
@@ -54,13 +60,20 @@ declare const _default: {
|
|
54
60
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
55
61
|
[key: string]: any;
|
56
62
|
}>) => void)[];
|
57
|
-
readonly
|
63
|
+
readonly placeholder?: string;
|
64
|
+
readonly toned?: boolean;
|
65
|
+
readonly "v-slots"?: {
|
66
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
67
|
+
} & OTextFieldSlots;
|
58
68
|
readonly "v-model"?: string;
|
59
69
|
readonly modelValue?: string;
|
60
70
|
"onUpdate:modelValue"?: ((value: string) => any) & ((value: string) => any);
|
61
|
-
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";
|
62
72
|
readonly loading?: boolean;
|
73
|
+
readonly autofocus?: boolean;
|
74
|
+
"onClick:clear"?: () => any;
|
63
75
|
readonly clearable?: boolean;
|
76
|
+
onDoc$?: (description?: string) => any;
|
64
77
|
"onClick:button"?: () => any;
|
65
78
|
};
|
66
79
|
$attrs: {
|
@@ -74,18 +87,24 @@ declare const _default: {
|
|
74
87
|
}>;
|
75
88
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
76
89
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
77
|
-
$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);
|
78
91
|
$el: any;
|
79
92
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
80
|
-
|
93
|
+
disabled: {
|
81
94
|
type: import("vue").PropType<boolean>;
|
82
|
-
|
95
|
+
required: false;
|
96
|
+
};
|
97
|
+
loading: {
|
83
98
|
type: import("vue").PropType<boolean>;
|
99
|
+
required: false;
|
84
100
|
};
|
85
101
|
toned: {
|
86
|
-
type: import("vue").PropType<
|
87
|
-
|
88
|
-
|
102
|
+
type: import("vue").PropType<boolean>;
|
103
|
+
required: false;
|
104
|
+
};
|
105
|
+
autofocus: {
|
106
|
+
type: import("vue").PropType<boolean>;
|
107
|
+
required: false;
|
89
108
|
};
|
90
109
|
type: {
|
91
110
|
type: import("vue").PropType<"number">;
|
@@ -94,7 +113,10 @@ declare const _default: {
|
|
94
113
|
type: import("vue").PropType<boolean>;
|
95
114
|
};
|
96
115
|
variant: {
|
97
|
-
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>;
|
98
120
|
};
|
99
121
|
label: {
|
100
122
|
type: import("vue").PropType<string>;
|
@@ -110,6 +132,9 @@ declare const _default: {
|
|
110
132
|
type: import("vue").PropType<string>;
|
111
133
|
required: false;
|
112
134
|
};
|
135
|
+
"v-slots": import("vue").Prop<{
|
136
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
137
|
+
} & OTextFieldSlots>;
|
113
138
|
class: {
|
114
139
|
type: import("vue").PropType<String | String[]>;
|
115
140
|
required: boolean;
|
@@ -121,8 +146,14 @@ declare const _default: {
|
|
121
146
|
blueprint?: any;
|
122
147
|
}>> & {
|
123
148
|
"onUpdate:modelValue"?: (value: string) => any;
|
149
|
+
"onClick:clear"?: () => any;
|
150
|
+
onDoc$?: (description?: string) => any;
|
124
151
|
"onClick:button"?: () => any;
|
125
152
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
153
|
+
"click:clear": () => void;
|
154
|
+
doc$(description?: string): {
|
155
|
+
"click:clear": () => void;
|
156
|
+
};
|
126
157
|
"update:modelValue": (value: string) => true;
|
127
158
|
"click:button": () => true;
|
128
159
|
}, string, {
|
@@ -152,15 +183,21 @@ declare const _default: {
|
|
152
183
|
$nextTick: typeof import("vue").nextTick;
|
153
184
|
$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;
|
154
185
|
} & Readonly<import("vue").ExtractPropTypes<{
|
155
|
-
|
186
|
+
disabled: {
|
156
187
|
type: import("vue").PropType<boolean>;
|
157
|
-
|
188
|
+
required: false;
|
189
|
+
};
|
190
|
+
loading: {
|
158
191
|
type: import("vue").PropType<boolean>;
|
192
|
+
required: false;
|
159
193
|
};
|
160
194
|
toned: {
|
161
|
-
type: import("vue").PropType<
|
162
|
-
|
163
|
-
|
195
|
+
type: import("vue").PropType<boolean>;
|
196
|
+
required: false;
|
197
|
+
};
|
198
|
+
autofocus: {
|
199
|
+
type: import("vue").PropType<boolean>;
|
200
|
+
required: false;
|
164
201
|
};
|
165
202
|
type: {
|
166
203
|
type: import("vue").PropType<"number">;
|
@@ -169,7 +206,10 @@ declare const _default: {
|
|
169
206
|
type: import("vue").PropType<boolean>;
|
170
207
|
};
|
171
208
|
variant: {
|
172
|
-
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>;
|
173
213
|
};
|
174
214
|
label: {
|
175
215
|
type: import("vue").PropType<string>;
|
@@ -185,6 +225,9 @@ declare const _default: {
|
|
185
225
|
type: import("vue").PropType<string>;
|
186
226
|
required: false;
|
187
227
|
};
|
228
|
+
"v-slots": import("vue").Prop<{
|
229
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
230
|
+
} & OTextFieldSlots>;
|
188
231
|
class: {
|
189
232
|
type: import("vue").PropType<String | String[]>;
|
190
233
|
required: boolean;
|
@@ -196,21 +239,29 @@ declare const _default: {
|
|
196
239
|
blueprint?: any;
|
197
240
|
}>> & {
|
198
241
|
"onUpdate:modelValue"?: (value: string) => any;
|
242
|
+
"onClick:clear"?: () => any;
|
243
|
+
onDoc$?: (description?: string) => any;
|
199
244
|
"onClick:button"?: () => any;
|
200
245
|
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
201
246
|
__isFragment?: never;
|
202
247
|
__isTeleport?: never;
|
203
248
|
__isSuspense?: never;
|
204
249
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
205
|
-
|
250
|
+
disabled: {
|
206
251
|
type: import("vue").PropType<boolean>;
|
207
|
-
|
252
|
+
required: false;
|
253
|
+
};
|
254
|
+
loading: {
|
208
255
|
type: import("vue").PropType<boolean>;
|
256
|
+
required: false;
|
209
257
|
};
|
210
258
|
toned: {
|
211
|
-
type: import("vue").PropType<
|
212
|
-
|
213
|
-
|
259
|
+
type: import("vue").PropType<boolean>;
|
260
|
+
required: false;
|
261
|
+
};
|
262
|
+
autofocus: {
|
263
|
+
type: import("vue").PropType<boolean>;
|
264
|
+
required: false;
|
214
265
|
};
|
215
266
|
type: {
|
216
267
|
type: import("vue").PropType<"number">;
|
@@ -219,7 +270,10 @@ declare const _default: {
|
|
219
270
|
type: import("vue").PropType<boolean>;
|
220
271
|
};
|
221
272
|
variant: {
|
222
|
-
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>;
|
223
277
|
};
|
224
278
|
label: {
|
225
279
|
type: import("vue").PropType<string>;
|
@@ -235,6 +289,9 @@ declare const _default: {
|
|
235
289
|
type: import("vue").PropType<string>;
|
236
290
|
required: false;
|
237
291
|
};
|
292
|
+
"v-slots": import("vue").Prop<{
|
293
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
294
|
+
} & OTextFieldSlots>;
|
238
295
|
class: {
|
239
296
|
type: import("vue").PropType<String | String[]>;
|
240
297
|
required: boolean;
|
@@ -246,8 +303,14 @@ declare const _default: {
|
|
246
303
|
blueprint?: any;
|
247
304
|
}>> & {
|
248
305
|
"onUpdate:modelValue"?: (value: string) => any;
|
306
|
+
"onClick:clear"?: () => any;
|
307
|
+
onDoc$?: (description?: string) => any;
|
249
308
|
"onClick:button"?: () => any;
|
250
309
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
310
|
+
"click:clear": () => void;
|
311
|
+
doc$(description?: string): {
|
312
|
+
"click:clear": () => void;
|
313
|
+
};
|
251
314
|
"update:modelValue": (value: string) => true;
|
252
315
|
"click:button": () => true;
|
253
316
|
}, string, {
|
@@ -267,15 +330,23 @@ declare const _default: {
|
|
267
330
|
label?: string;
|
268
331
|
class?: String | String[];
|
269
332
|
type?: "number";
|
270
|
-
|
333
|
+
disabled?: boolean;
|
334
|
+
placeholder?: string;
|
335
|
+
toned?: boolean;
|
336
|
+
"v-slots"?: {
|
337
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
338
|
+
} & OTextFieldSlots;
|
271
339
|
"v-model"?: string;
|
272
340
|
modelValue?: string;
|
273
341
|
"onUpdate:modelValue"?: (value: string) => any;
|
274
|
-
variant?: "search" | "link" | "default" | "media" | "find-slim" | "numberselector" | "numberselector-prepend";
|
342
|
+
variant?: "search" | "link" | "default" | "media" | "filter-menu" | "find-slim" | "numberselector" | "numberselector-prepend";
|
275
343
|
loading?: boolean;
|
344
|
+
autofocus?: boolean;
|
276
345
|
clearable?: boolean;
|
277
|
-
}>, "onUpdate:modelValue" | "onClick:button"> & {
|
346
|
+
}>, "onUpdate:modelValue" | "onClick:clear" | "onDoc$" | "onClick:button"> & {
|
278
347
|
"onUpdate:modelValue"?: (value: string) => any;
|
348
|
+
"onClick:clear"?: () => any;
|
349
|
+
onDoc$?: (description?: string) => any;
|
279
350
|
"onClick:button"?: () => any;
|
280
351
|
};
|
281
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
|
};
|