@omnia/fx 8.0.44-vnext → 8.0.46-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 +275 -90
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerButton.d.ts +283 -71
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +594 -57
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerField.d.ts +353 -86
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerInlineField.d.ts +369 -93
- 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
@@ -56,23 +56,26 @@ declare const _default: {
|
|
56
56
|
[key: string]: any;
|
57
57
|
}>) => void)[];
|
58
58
|
readonly description?: string;
|
59
|
-
readonly
|
59
|
+
readonly "v-model"?: Identity[];
|
60
|
+
readonly modelValue?: Identity[];
|
61
|
+
"onUpdate:modelValue"?: ((value: Identity[]) => any) & ((value: Identity[]) => any);
|
60
62
|
readonly singleLine?: boolean;
|
61
63
|
readonly ariaInvalid?: boolean;
|
62
64
|
readonly ariaDescribedby?: string;
|
63
65
|
readonly providerIds?: GuidValue[];
|
64
|
-
readonly
|
65
|
-
readonly isKeepMenuOpen?: (value: Boolean) => void;
|
66
|
-
readonly attachToParent?: boolean;
|
66
|
+
readonly "provider-ids"?: GuidValue[];
|
67
67
|
readonly keepSelectionMenu?: boolean;
|
68
68
|
readonly showCurrentUserOption?: boolean;
|
69
|
+
readonly autoOpenSelection?: boolean;
|
69
70
|
readonly disabledIdentities?: Identity[];
|
70
71
|
readonly blockedIdentities?: Identity[];
|
71
|
-
readonly onMenuToggle?: (
|
72
|
+
readonly onMenuToggle?: (value: boolean) => void;
|
73
|
+
readonly "on-menu-toggle"?: (value: boolean) => void;
|
72
74
|
readonly hideTab?: boolean;
|
73
75
|
readonly hideGroupTypeSelection?: boolean;
|
74
76
|
readonly hideUserTypeSelection?: boolean;
|
75
77
|
readonly hideDynamicGroupSelection?: boolean;
|
78
|
+
onDoc$?: (description?: string) => any;
|
76
79
|
readonly showSelectedIdentities?: boolean;
|
77
80
|
};
|
78
81
|
$attrs: {
|
@@ -86,36 +89,127 @@ declare const _default: {
|
|
86
89
|
}>;
|
87
90
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
88
91
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
89
|
-
$emit: (event: string,
|
92
|
+
$emit: ((event: "doc$", description?: string) => void) & ((event: "update:modelValue", value: Identity[]) => void);
|
90
93
|
$el: any;
|
91
94
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
onMenuToggle:
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
95
|
+
hideDynamicGroupSelection: {
|
96
|
+
type: import("vue").PropType<boolean>;
|
97
|
+
required: false;
|
98
|
+
};
|
99
|
+
hideUserTypeSelection: {
|
100
|
+
type: import("vue").PropType<boolean>;
|
101
|
+
required: false;
|
102
|
+
};
|
103
|
+
hideGroupTypeSelection: {
|
104
|
+
type: import("vue").PropType<boolean>;
|
105
|
+
required: false;
|
106
|
+
};
|
107
|
+
hideTab: {
|
108
|
+
type: import("vue").PropType<boolean>;
|
109
|
+
required: false;
|
110
|
+
};
|
111
|
+
"on-menu-toggle": {
|
112
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
113
|
+
};
|
114
|
+
onMenuToggle: {
|
115
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
116
|
+
};
|
117
|
+
filter: {
|
118
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
119
|
+
} & {
|
120
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
121
|
+
};
|
122
|
+
blockedIdentities: {
|
123
|
+
type: import("vue").PropType<Identity[]>;
|
124
|
+
required: false;
|
125
|
+
};
|
126
|
+
disabledIdentities: {
|
127
|
+
type: import("vue").PropType<Identity[]>;
|
128
|
+
required: false;
|
129
|
+
};
|
130
|
+
autoOpenSelection: {
|
131
|
+
type: import("vue").PropType<boolean>;
|
132
|
+
required: false;
|
133
|
+
};
|
134
|
+
showCurrentUserOption: {
|
135
|
+
type: import("vue").PropType<boolean>;
|
136
|
+
required: false;
|
137
|
+
};
|
138
|
+
ariaInvalid: {
|
139
|
+
type: import("vue").PropType<boolean>;
|
140
|
+
required: false;
|
141
|
+
};
|
142
|
+
ariaDescribedby: {
|
143
|
+
type: import("vue").PropType<string>;
|
144
|
+
required: false;
|
145
|
+
};
|
146
|
+
singleLine: {
|
147
|
+
type: import("vue").PropType<boolean>;
|
148
|
+
required: false;
|
149
|
+
};
|
150
|
+
top: {
|
151
|
+
type: import("vue").PropType<boolean>;
|
152
|
+
required: false;
|
153
|
+
};
|
154
|
+
keepSelectionMenu: {
|
155
|
+
type: import("vue").PropType<boolean>;
|
156
|
+
required: false;
|
157
|
+
};
|
158
|
+
showSelectedIdentities: {
|
159
|
+
type: import("vue").PropType<boolean>;
|
160
|
+
required: false;
|
161
|
+
};
|
162
|
+
disabled: {
|
163
|
+
type: import("vue").PropType<boolean>;
|
164
|
+
required: false;
|
165
|
+
};
|
166
|
+
required: {
|
167
|
+
type: import("vue").PropType<boolean>;
|
168
|
+
required: false;
|
169
|
+
};
|
170
|
+
multiple: {
|
171
|
+
type: import("vue").PropType<boolean>;
|
172
|
+
required: false;
|
173
|
+
};
|
174
|
+
description: {
|
175
|
+
type: import("vue").PropType<string>;
|
176
|
+
required: false;
|
177
|
+
};
|
178
|
+
label: {
|
179
|
+
type: import("vue").PropType<string>;
|
180
|
+
required: false;
|
181
|
+
};
|
182
|
+
"provider-ids": {
|
183
|
+
type: import("vue").PropType<GuidValue[]>;
|
184
|
+
};
|
185
|
+
providerIds: {
|
186
|
+
type: import("vue").PropType<GuidValue[]>;
|
187
|
+
};
|
188
|
+
type: {
|
189
|
+
type: import("vue").PropType<PrincipalTypes>;
|
190
|
+
} & {
|
191
|
+
type: import("vue").PropType<PrincipalTypes>;
|
192
|
+
};
|
193
|
+
"onUpdate:modelValue": {
|
194
|
+
type: import("vue").PropType<(value: Identity[]) => any>;
|
195
|
+
};
|
196
|
+
"v-model": {
|
197
|
+
type: import("vue").PropType<Identity[]>;
|
198
|
+
required: false;
|
199
|
+
};
|
200
|
+
modelValue: {
|
201
|
+
type: import("vue").PropType<Identity[]>;
|
202
|
+
required: false;
|
203
|
+
};
|
204
|
+
}>> & {
|
205
|
+
"onUpdate:modelValue"?: (value: Identity[]) => any;
|
206
|
+
onDoc$?: (description?: string) => any;
|
207
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
208
|
+
"update:modelValue": (value: Identity[]) => true;
|
209
|
+
doc$(description?: string): {
|
210
|
+
"update:modelValue": (value: Identity[]) => true;
|
211
|
+
};
|
212
|
+
}, string, {}, {}, string, {}> & {
|
119
213
|
beforeCreate?: (() => void) | (() => void)[];
|
120
214
|
created?: (() => void) | (() => void)[];
|
121
215
|
beforeMount?: (() => void) | (() => void)[];
|
@@ -136,64 +230,241 @@ declare const _default: {
|
|
136
230
|
$nextTick: typeof import("vue").nextTick;
|
137
231
|
$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;
|
138
232
|
} & Readonly<import("vue").ExtractPropTypes<{
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
onMenuToggle:
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
233
|
+
hideDynamicGroupSelection: {
|
234
|
+
type: import("vue").PropType<boolean>;
|
235
|
+
required: false;
|
236
|
+
};
|
237
|
+
hideUserTypeSelection: {
|
238
|
+
type: import("vue").PropType<boolean>;
|
239
|
+
required: false;
|
240
|
+
};
|
241
|
+
hideGroupTypeSelection: {
|
242
|
+
type: import("vue").PropType<boolean>;
|
243
|
+
required: false;
|
244
|
+
};
|
245
|
+
hideTab: {
|
246
|
+
type: import("vue").PropType<boolean>;
|
247
|
+
required: false;
|
248
|
+
};
|
249
|
+
"on-menu-toggle": {
|
250
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
251
|
+
};
|
252
|
+
onMenuToggle: {
|
253
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
254
|
+
};
|
255
|
+
filter: {
|
256
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
257
|
+
} & {
|
258
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
259
|
+
};
|
260
|
+
blockedIdentities: {
|
261
|
+
type: import("vue").PropType<Identity[]>;
|
262
|
+
required: false;
|
263
|
+
};
|
264
|
+
disabledIdentities: {
|
265
|
+
type: import("vue").PropType<Identity[]>;
|
266
|
+
required: false;
|
267
|
+
};
|
268
|
+
autoOpenSelection: {
|
269
|
+
type: import("vue").PropType<boolean>;
|
270
|
+
required: false;
|
271
|
+
};
|
272
|
+
showCurrentUserOption: {
|
273
|
+
type: import("vue").PropType<boolean>;
|
274
|
+
required: false;
|
275
|
+
};
|
276
|
+
ariaInvalid: {
|
277
|
+
type: import("vue").PropType<boolean>;
|
278
|
+
required: false;
|
279
|
+
};
|
280
|
+
ariaDescribedby: {
|
281
|
+
type: import("vue").PropType<string>;
|
282
|
+
required: false;
|
283
|
+
};
|
284
|
+
singleLine: {
|
285
|
+
type: import("vue").PropType<boolean>;
|
286
|
+
required: false;
|
287
|
+
};
|
288
|
+
top: {
|
289
|
+
type: import("vue").PropType<boolean>;
|
290
|
+
required: false;
|
291
|
+
};
|
292
|
+
keepSelectionMenu: {
|
293
|
+
type: import("vue").PropType<boolean>;
|
294
|
+
required: false;
|
295
|
+
};
|
296
|
+
showSelectedIdentities: {
|
297
|
+
type: import("vue").PropType<boolean>;
|
298
|
+
required: false;
|
299
|
+
};
|
300
|
+
disabled: {
|
301
|
+
type: import("vue").PropType<boolean>;
|
302
|
+
required: false;
|
303
|
+
};
|
304
|
+
required: {
|
305
|
+
type: import("vue").PropType<boolean>;
|
306
|
+
required: false;
|
307
|
+
};
|
308
|
+
multiple: {
|
309
|
+
type: import("vue").PropType<boolean>;
|
310
|
+
required: false;
|
311
|
+
};
|
312
|
+
description: {
|
313
|
+
type: import("vue").PropType<string>;
|
314
|
+
required: false;
|
315
|
+
};
|
316
|
+
label: {
|
317
|
+
type: import("vue").PropType<string>;
|
318
|
+
required: false;
|
319
|
+
};
|
320
|
+
"provider-ids": {
|
321
|
+
type: import("vue").PropType<GuidValue[]>;
|
322
|
+
};
|
323
|
+
providerIds: {
|
324
|
+
type: import("vue").PropType<GuidValue[]>;
|
325
|
+
};
|
326
|
+
type: {
|
327
|
+
type: import("vue").PropType<PrincipalTypes>;
|
328
|
+
} & {
|
329
|
+
type: import("vue").PropType<PrincipalTypes>;
|
330
|
+
};
|
331
|
+
"onUpdate:modelValue": {
|
332
|
+
type: import("vue").PropType<(value: Identity[]) => any>;
|
333
|
+
};
|
334
|
+
"v-model": {
|
335
|
+
type: import("vue").PropType<Identity[]>;
|
336
|
+
required: false;
|
337
|
+
};
|
338
|
+
modelValue: {
|
339
|
+
type: import("vue").PropType<Identity[]>;
|
340
|
+
required: false;
|
341
|
+
};
|
342
|
+
}>> & {
|
343
|
+
"onUpdate:modelValue"?: (value: Identity[]) => any;
|
344
|
+
onDoc$?: (description?: string) => any;
|
345
|
+
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
166
346
|
__isFragment?: never;
|
167
347
|
__isTeleport?: never;
|
168
348
|
__isSuspense?: never;
|
169
349
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
onMenuToggle:
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
}
|
350
|
+
hideDynamicGroupSelection: {
|
351
|
+
type: import("vue").PropType<boolean>;
|
352
|
+
required: false;
|
353
|
+
};
|
354
|
+
hideUserTypeSelection: {
|
355
|
+
type: import("vue").PropType<boolean>;
|
356
|
+
required: false;
|
357
|
+
};
|
358
|
+
hideGroupTypeSelection: {
|
359
|
+
type: import("vue").PropType<boolean>;
|
360
|
+
required: false;
|
361
|
+
};
|
362
|
+
hideTab: {
|
363
|
+
type: import("vue").PropType<boolean>;
|
364
|
+
required: false;
|
365
|
+
};
|
366
|
+
"on-menu-toggle": {
|
367
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
368
|
+
};
|
369
|
+
onMenuToggle: {
|
370
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
371
|
+
};
|
372
|
+
filter: {
|
373
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
374
|
+
} & {
|
375
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
376
|
+
};
|
377
|
+
blockedIdentities: {
|
378
|
+
type: import("vue").PropType<Identity[]>;
|
379
|
+
required: false;
|
380
|
+
};
|
381
|
+
disabledIdentities: {
|
382
|
+
type: import("vue").PropType<Identity[]>;
|
383
|
+
required: false;
|
384
|
+
};
|
385
|
+
autoOpenSelection: {
|
386
|
+
type: import("vue").PropType<boolean>;
|
387
|
+
required: false;
|
388
|
+
};
|
389
|
+
showCurrentUserOption: {
|
390
|
+
type: import("vue").PropType<boolean>;
|
391
|
+
required: false;
|
392
|
+
};
|
393
|
+
ariaInvalid: {
|
394
|
+
type: import("vue").PropType<boolean>;
|
395
|
+
required: false;
|
396
|
+
};
|
397
|
+
ariaDescribedby: {
|
398
|
+
type: import("vue").PropType<string>;
|
399
|
+
required: false;
|
400
|
+
};
|
401
|
+
singleLine: {
|
402
|
+
type: import("vue").PropType<boolean>;
|
403
|
+
required: false;
|
404
|
+
};
|
405
|
+
top: {
|
406
|
+
type: import("vue").PropType<boolean>;
|
407
|
+
required: false;
|
408
|
+
};
|
409
|
+
keepSelectionMenu: {
|
410
|
+
type: import("vue").PropType<boolean>;
|
411
|
+
required: false;
|
412
|
+
};
|
413
|
+
showSelectedIdentities: {
|
414
|
+
type: import("vue").PropType<boolean>;
|
415
|
+
required: false;
|
416
|
+
};
|
417
|
+
disabled: {
|
418
|
+
type: import("vue").PropType<boolean>;
|
419
|
+
required: false;
|
420
|
+
};
|
421
|
+
required: {
|
422
|
+
type: import("vue").PropType<boolean>;
|
423
|
+
required: false;
|
424
|
+
};
|
425
|
+
multiple: {
|
426
|
+
type: import("vue").PropType<boolean>;
|
427
|
+
required: false;
|
428
|
+
};
|
429
|
+
description: {
|
430
|
+
type: import("vue").PropType<string>;
|
431
|
+
required: false;
|
432
|
+
};
|
433
|
+
label: {
|
434
|
+
type: import("vue").PropType<string>;
|
435
|
+
required: false;
|
436
|
+
};
|
437
|
+
"provider-ids": {
|
438
|
+
type: import("vue").PropType<GuidValue[]>;
|
439
|
+
};
|
440
|
+
providerIds: {
|
441
|
+
type: import("vue").PropType<GuidValue[]>;
|
442
|
+
};
|
443
|
+
type: {
|
444
|
+
type: import("vue").PropType<PrincipalTypes>;
|
445
|
+
} & {
|
446
|
+
type: import("vue").PropType<PrincipalTypes>;
|
447
|
+
};
|
448
|
+
"onUpdate:modelValue": {
|
449
|
+
type: import("vue").PropType<(value: Identity[]) => any>;
|
450
|
+
};
|
451
|
+
"v-model": {
|
452
|
+
type: import("vue").PropType<Identity[]>;
|
453
|
+
required: false;
|
454
|
+
};
|
455
|
+
modelValue: {
|
456
|
+
type: import("vue").PropType<Identity[]>;
|
457
|
+
required: false;
|
458
|
+
};
|
459
|
+
}>> & {
|
460
|
+
"onUpdate:modelValue"?: (value: Identity[]) => any;
|
461
|
+
onDoc$?: (description?: string) => any;
|
462
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
463
|
+
"update:modelValue": (value: Identity[]) => true;
|
464
|
+
doc$(description?: string): {
|
465
|
+
"update:modelValue": (value: Identity[]) => true;
|
466
|
+
};
|
467
|
+
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
197
468
|
propsDefinition: Omit<Readonly<{} & {
|
198
469
|
filter?: (identities: IResolvedIdentity[]) => IResolvedIdentity[];
|
199
470
|
label?: string;
|
@@ -203,24 +474,29 @@ declare const _default: {
|
|
203
474
|
disabled?: boolean;
|
204
475
|
required?: boolean;
|
205
476
|
description?: string;
|
206
|
-
|
477
|
+
"v-model"?: Identity[];
|
478
|
+
modelValue?: Identity[];
|
479
|
+
"onUpdate:modelValue"?: (value: Identity[]) => any;
|
207
480
|
singleLine?: boolean;
|
208
481
|
ariaInvalid?: boolean;
|
209
482
|
ariaDescribedby?: string;
|
210
483
|
providerIds?: GuidValue[];
|
211
|
-
|
212
|
-
isKeepMenuOpen?: (value: Boolean) => void;
|
213
|
-
attachToParent?: boolean;
|
484
|
+
"provider-ids"?: GuidValue[];
|
214
485
|
keepSelectionMenu?: boolean;
|
215
486
|
showCurrentUserOption?: boolean;
|
487
|
+
autoOpenSelection?: boolean;
|
216
488
|
disabledIdentities?: Identity[];
|
217
489
|
blockedIdentities?: Identity[];
|
218
|
-
onMenuToggle?: (
|
490
|
+
onMenuToggle?: (value: boolean) => void;
|
491
|
+
"on-menu-toggle"?: (value: boolean) => void;
|
219
492
|
hideTab?: boolean;
|
220
493
|
hideGroupTypeSelection?: boolean;
|
221
494
|
hideUserTypeSelection?: boolean;
|
222
495
|
hideDynamicGroupSelection?: boolean;
|
223
496
|
showSelectedIdentities?: boolean;
|
224
|
-
}>,
|
497
|
+
}>, "onUpdate:modelValue" | "onDoc$"> & {
|
498
|
+
"onUpdate:modelValue"?: (value: Identity[]) => any;
|
499
|
+
onDoc$?: (description?: string) => any;
|
500
|
+
};
|
225
501
|
};
|
226
502
|
export default _default;
|
@@ -56,7 +56,7 @@ declare const _default: {
|
|
56
56
|
}>) => void)[];
|
57
57
|
readonly settings?: boolean;
|
58
58
|
readonly "v-slots"?: {
|
59
|
-
default?:
|
59
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
60
60
|
} & {
|
61
61
|
actions?: Func<[VNodeChild]>;
|
62
62
|
actionsFooter?: Func<[VNodeChild]>;
|
@@ -89,7 +89,7 @@ declare const _default: {
|
|
89
89
|
$el: any;
|
90
90
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
91
91
|
"v-slots": import("vue").Prop<{
|
92
|
-
default?:
|
92
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
93
93
|
} & {
|
94
94
|
actions?: Func<[VNodeChild]>;
|
95
95
|
actionsFooter?: Func<[VNodeChild]>;
|
@@ -166,7 +166,7 @@ declare const _default: {
|
|
166
166
|
$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;
|
167
167
|
} & Readonly<import("vue").ExtractPropTypes<{
|
168
168
|
"v-slots": import("vue").Prop<{
|
169
|
-
default?:
|
169
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
170
170
|
} & {
|
171
171
|
actions?: Func<[VNodeChild]>;
|
172
172
|
actionsFooter?: Func<[VNodeChild]>;
|
@@ -219,7 +219,7 @@ declare const _default: {
|
|
219
219
|
__isSuspense?: never;
|
220
220
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
221
221
|
"v-slots": import("vue").Prop<{
|
222
|
-
default?:
|
222
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
223
223
|
} & {
|
224
224
|
actions?: Func<[VNodeChild]>;
|
225
225
|
actionsFooter?: Func<[VNodeChild]>;
|
@@ -283,7 +283,7 @@ declare const _default: {
|
|
283
283
|
icon?: IIcon;
|
284
284
|
settings?: boolean;
|
285
285
|
"v-slots"?: {
|
286
|
-
default?:
|
286
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
287
287
|
} & {
|
288
288
|
actions?: Func<[VNodeChild]>;
|
289
289
|
actionsFooter?: Func<[VNodeChild]>;
|
@@ -59,7 +59,7 @@ declare const _default: {
|
|
59
59
|
}>) => void)[];
|
60
60
|
readonly navigation?: boolean;
|
61
61
|
readonly "v-slots"?: {
|
62
|
-
default?:
|
62
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
63
63
|
} & {
|
64
64
|
actionButtons?: Func<[VNodeChild]>;
|
65
65
|
};
|
@@ -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
|
actionButtons?: Func<[VNodeChild]>;
|
90
90
|
}>;
|
@@ -152,7 +152,7 @@ declare const _default: {
|
|
152
152
|
$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;
|
153
153
|
} & Readonly<import("vue").ExtractPropTypes<{
|
154
154
|
"v-slots": import("vue").Prop<{
|
155
|
-
default?:
|
155
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
156
156
|
} & {
|
157
157
|
actionButtons?: Func<[VNodeChild]>;
|
158
158
|
}>;
|
@@ -195,7 +195,7 @@ declare const _default: {
|
|
195
195
|
__isSuspense?: never;
|
196
196
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
197
197
|
"v-slots": import("vue").Prop<{
|
198
|
-
default?:
|
198
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
199
199
|
} & {
|
200
200
|
actionButtons?: Func<[VNodeChild]>;
|
201
201
|
}>;
|
@@ -255,7 +255,7 @@ declare const _default: {
|
|
255
255
|
absolute?: boolean;
|
256
256
|
navigation?: boolean;
|
257
257
|
"v-slots"?: {
|
258
|
-
default?:
|
258
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
259
259
|
} & {
|
260
260
|
actionButtons?: Func<[VNodeChild]>;
|
261
261
|
};
|
@@ -7,7 +7,7 @@ declare const _default: {
|
|
7
7
|
class?: unknown;
|
8
8
|
key?: string | number | symbol;
|
9
9
|
readonly color?: string;
|
10
|
-
readonly size?:
|
10
|
+
readonly size?: "small" | "default" | "large" | "x-large" | "x-small";
|
11
11
|
ref?: import("vue").VNodeRef;
|
12
12
|
ref_for?: boolean;
|
13
13
|
ref_key?: string;
|
@@ -69,7 +69,7 @@ declare const _default: {
|
|
69
69
|
type: import("vue").PropType<boolean>;
|
70
70
|
};
|
71
71
|
size: {
|
72
|
-
type: import("vue").PropType<
|
72
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
73
73
|
};
|
74
74
|
color: {
|
75
75
|
type: import("vue").PropType<string>;
|
@@ -99,7 +99,7 @@ declare const _default: {
|
|
99
99
|
type: import("vue").PropType<boolean>;
|
100
100
|
};
|
101
101
|
size: {
|
102
|
-
type: import("vue").PropType<
|
102
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
103
103
|
};
|
104
104
|
color: {
|
105
105
|
type: import("vue").PropType<string>;
|
@@ -113,7 +113,7 @@ declare const _default: {
|
|
113
113
|
type: import("vue").PropType<boolean>;
|
114
114
|
};
|
115
115
|
size: {
|
116
|
-
type: import("vue").PropType<
|
116
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
117
117
|
};
|
118
118
|
color: {
|
119
119
|
type: import("vue").PropType<string>;
|
@@ -121,7 +121,7 @@ declare const _default: {
|
|
121
121
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
122
122
|
propsDefinition: Omit<Readonly<{} & {
|
123
123
|
color?: string;
|
124
|
-
size?:
|
124
|
+
size?: "small" | "default" | "large" | "x-large" | "x-small";
|
125
125
|
gradient?: boolean;
|
126
126
|
}>, never>;
|
127
127
|
};
|