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