@omnia/fx 8.0.45-vnext → 8.0.47-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/journey/v2/JourneyBlade.d.ts +13 -9
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.css.d.ts +20 -0
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +14 -0
- package/package.json +2 -2
@@ -56,7 +56,7 @@ declare const _default: {
|
|
56
56
|
readonly modelValue?: Identity[];
|
57
57
|
readonly "onUpdate:modelValue"?: (value: Identity[]) => any;
|
58
58
|
readonly providerIds?: GuidValue[];
|
59
|
-
readonly
|
59
|
+
readonly "provider-ids"?: GuidValue[];
|
60
60
|
readonly disabledIdentities?: Identity[];
|
61
61
|
readonly blockedIdentities?: Identity[];
|
62
62
|
readonly hideTab?: Boolean;
|
@@ -64,7 +64,7 @@ declare const _default: {
|
|
64
64
|
readonly hideUserTypeSelection?: Boolean;
|
65
65
|
readonly hideDynamicGroupSelection?: Boolean;
|
66
66
|
onDoc$?: (description?: string) => any;
|
67
|
-
readonly
|
67
|
+
readonly attachToParent?: boolean;
|
68
68
|
readonly showSelectedIdentities?: Boolean;
|
69
69
|
readonly hideIdentityType?: Boolean;
|
70
70
|
onAdd?: (identity: Identity) => any;
|
@@ -357,14 +357,14 @@ declare const _default: {
|
|
357
357
|
modelValue?: Identity[];
|
358
358
|
"onUpdate:modelValue"?: (value: Identity[]) => any;
|
359
359
|
providerIds?: GuidValue[];
|
360
|
-
|
360
|
+
"provider-ids"?: GuidValue[];
|
361
361
|
disabledIdentities?: Identity[];
|
362
362
|
blockedIdentities?: Identity[];
|
363
363
|
hideTab?: Boolean;
|
364
364
|
hideGroupTypeSelection?: Boolean;
|
365
365
|
hideUserTypeSelection?: Boolean;
|
366
366
|
hideDynamicGroupSelection?: Boolean;
|
367
|
-
|
367
|
+
attachToParent?: boolean;
|
368
368
|
showSelectedIdentities?: Boolean;
|
369
369
|
hideIdentityType?: Boolean;
|
370
370
|
}>, "onDoc$" | "onAdd" | "onRemove"> & {
|
@@ -54,20 +54,23 @@ declare const _default: {
|
|
54
54
|
[key: string]: any;
|
55
55
|
}>) => void)[];
|
56
56
|
readonly description?: string;
|
57
|
+
onSelect?: (value: Identity) => any;
|
57
58
|
readonly singleLine?: boolean;
|
58
59
|
readonly ariaInvalid?: boolean;
|
59
60
|
readonly ariaDescribedby?: string;
|
60
61
|
readonly providerIds?: GuidValue[];
|
61
|
-
readonly
|
62
|
-
readonly attachToParent?: boolean;
|
62
|
+
readonly "provider-ids"?: GuidValue[];
|
63
63
|
readonly keepSelectionMenu?: boolean;
|
64
64
|
readonly disabledIdentities?: Identity[];
|
65
65
|
readonly blockedIdentities?: Identity[];
|
66
|
-
readonly onMenuToggle?: (
|
66
|
+
readonly onMenuToggle?: (value: boolean) => void;
|
67
|
+
readonly "on-menu-toggle"?: (value: boolean) => void;
|
67
68
|
readonly hideTab?: boolean;
|
68
69
|
readonly hideGroupTypeSelection?: boolean;
|
69
70
|
readonly hideUserTypeSelection?: boolean;
|
70
71
|
readonly hideDynamicGroupSelection?: boolean;
|
72
|
+
onDoc$?: (description?: string) => any;
|
73
|
+
readonly attachToParent?: boolean;
|
71
74
|
};
|
72
75
|
$attrs: {
|
73
76
|
[x: string]: unknown;
|
@@ -80,30 +83,100 @@ declare const _default: {
|
|
80
83
|
}>;
|
81
84
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
82
85
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
83
|
-
$emit: (event:
|
86
|
+
$emit: ((event: "select", value: Identity) => void) & ((event: "doc$", description?: string) => void);
|
84
87
|
$el: any;
|
85
88
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
89
|
+
ariaDescribedby: {
|
90
|
+
type: import("vue").PropType<string>;
|
91
|
+
required: false;
|
92
|
+
};
|
93
|
+
"on-menu-toggle": {
|
94
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
95
|
+
};
|
96
|
+
onMenuToggle: {
|
97
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
98
|
+
};
|
99
|
+
filter: {
|
100
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
101
|
+
} & {
|
102
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
103
|
+
};
|
104
|
+
blockedIdentities: {
|
105
|
+
type: import("vue").PropType<Identity[]>;
|
106
|
+
required: false;
|
107
|
+
};
|
108
|
+
disabledIdentities: {
|
109
|
+
type: import("vue").PropType<Identity[]>;
|
110
|
+
required: false;
|
111
|
+
};
|
112
|
+
hideDynamicGroupSelection: {
|
113
|
+
type: import("vue").PropType<boolean>;
|
114
|
+
required: false;
|
115
|
+
};
|
116
|
+
hideUserTypeSelection: {
|
117
|
+
type: import("vue").PropType<boolean>;
|
118
|
+
required: false;
|
119
|
+
};
|
120
|
+
hideGroupTypeSelection: {
|
121
|
+
type: import("vue").PropType<boolean>;
|
122
|
+
required: false;
|
123
|
+
};
|
124
|
+
hideTab: {
|
125
|
+
type: import("vue").PropType<boolean>;
|
126
|
+
required: false;
|
127
|
+
};
|
128
|
+
singleLine: {
|
129
|
+
type: import("vue").PropType<boolean>;
|
130
|
+
required: false;
|
131
|
+
};
|
132
|
+
ariaInvalid: {
|
133
|
+
type: import("vue").PropType<boolean>;
|
134
|
+
required: false;
|
135
|
+
};
|
136
|
+
top: {
|
137
|
+
type: import("vue").PropType<boolean>;
|
138
|
+
required: false;
|
139
|
+
};
|
140
|
+
keepSelectionMenu: {
|
141
|
+
type: import("vue").PropType<boolean>;
|
142
|
+
required: false;
|
143
|
+
};
|
144
|
+
attachToParent: {
|
145
|
+
type: import("vue").PropType<boolean>;
|
146
|
+
required: false;
|
147
|
+
};
|
148
|
+
disabled: {
|
149
|
+
type: import("vue").PropType<boolean>;
|
150
|
+
required: false;
|
151
|
+
};
|
152
|
+
description: {
|
153
|
+
type: import("vue").PropType<string>;
|
154
|
+
required: false;
|
155
|
+
};
|
156
|
+
label: {
|
157
|
+
type: import("vue").PropType<string>;
|
158
|
+
required: false;
|
159
|
+
};
|
160
|
+
"provider-ids": {
|
161
|
+
type: import("vue").PropType<GuidValue[]>;
|
162
|
+
};
|
163
|
+
providerIds: {
|
164
|
+
type: import("vue").PropType<GuidValue[]>;
|
165
|
+
};
|
166
|
+
type: {
|
167
|
+
type: import("vue").PropType<PrincipalTypes>;
|
168
|
+
} & {
|
169
|
+
type: import("vue").PropType<PrincipalTypes>;
|
170
|
+
};
|
171
|
+
}>> & {
|
172
|
+
onSelect?: (value: Identity) => any;
|
173
|
+
onDoc$?: (description?: string) => any;
|
174
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
175
|
+
select: (value: Identity) => true;
|
176
|
+
doc$(description?: string): {
|
177
|
+
select: (value: Identity) => true;
|
178
|
+
};
|
179
|
+
}, string, {}, {}, string, {}> & {
|
107
180
|
beforeCreate?: (() => void) | (() => void)[];
|
108
181
|
created?: (() => void) | (() => void)[];
|
109
182
|
beforeMount?: (() => void) | (() => void)[];
|
@@ -124,52 +197,187 @@ declare const _default: {
|
|
124
197
|
$nextTick: typeof import("vue").nextTick;
|
125
198
|
$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;
|
126
199
|
} & Readonly<import("vue").ExtractPropTypes<{
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
200
|
+
ariaDescribedby: {
|
201
|
+
type: import("vue").PropType<string>;
|
202
|
+
required: false;
|
203
|
+
};
|
204
|
+
"on-menu-toggle": {
|
205
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
206
|
+
};
|
207
|
+
onMenuToggle: {
|
208
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
209
|
+
};
|
210
|
+
filter: {
|
211
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
212
|
+
} & {
|
213
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
214
|
+
};
|
215
|
+
blockedIdentities: {
|
216
|
+
type: import("vue").PropType<Identity[]>;
|
217
|
+
required: false;
|
218
|
+
};
|
219
|
+
disabledIdentities: {
|
220
|
+
type: import("vue").PropType<Identity[]>;
|
221
|
+
required: false;
|
222
|
+
};
|
223
|
+
hideDynamicGroupSelection: {
|
224
|
+
type: import("vue").PropType<boolean>;
|
225
|
+
required: false;
|
226
|
+
};
|
227
|
+
hideUserTypeSelection: {
|
228
|
+
type: import("vue").PropType<boolean>;
|
229
|
+
required: false;
|
230
|
+
};
|
231
|
+
hideGroupTypeSelection: {
|
232
|
+
type: import("vue").PropType<boolean>;
|
233
|
+
required: false;
|
234
|
+
};
|
235
|
+
hideTab: {
|
236
|
+
type: import("vue").PropType<boolean>;
|
237
|
+
required: false;
|
238
|
+
};
|
239
|
+
singleLine: {
|
240
|
+
type: import("vue").PropType<boolean>;
|
241
|
+
required: false;
|
242
|
+
};
|
243
|
+
ariaInvalid: {
|
244
|
+
type: import("vue").PropType<boolean>;
|
245
|
+
required: false;
|
246
|
+
};
|
247
|
+
top: {
|
248
|
+
type: import("vue").PropType<boolean>;
|
249
|
+
required: false;
|
250
|
+
};
|
251
|
+
keepSelectionMenu: {
|
252
|
+
type: import("vue").PropType<boolean>;
|
253
|
+
required: false;
|
254
|
+
};
|
255
|
+
attachToParent: {
|
256
|
+
type: import("vue").PropType<boolean>;
|
257
|
+
required: false;
|
258
|
+
};
|
259
|
+
disabled: {
|
260
|
+
type: import("vue").PropType<boolean>;
|
261
|
+
required: false;
|
262
|
+
};
|
263
|
+
description: {
|
264
|
+
type: import("vue").PropType<string>;
|
265
|
+
required: false;
|
266
|
+
};
|
267
|
+
label: {
|
268
|
+
type: import("vue").PropType<string>;
|
269
|
+
required: false;
|
270
|
+
};
|
271
|
+
"provider-ids": {
|
272
|
+
type: import("vue").PropType<GuidValue[]>;
|
273
|
+
};
|
274
|
+
providerIds: {
|
275
|
+
type: import("vue").PropType<GuidValue[]>;
|
276
|
+
};
|
277
|
+
type: {
|
278
|
+
type: import("vue").PropType<PrincipalTypes>;
|
279
|
+
} & {
|
280
|
+
type: import("vue").PropType<PrincipalTypes>;
|
281
|
+
};
|
282
|
+
}>> & {
|
283
|
+
onSelect?: (value: Identity) => any;
|
284
|
+
onDoc$?: (description?: string) => any;
|
285
|
+
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
148
286
|
__isFragment?: never;
|
149
287
|
__isTeleport?: never;
|
150
288
|
__isSuspense?: never;
|
151
289
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
290
|
+
ariaDescribedby: {
|
291
|
+
type: import("vue").PropType<string>;
|
292
|
+
required: false;
|
293
|
+
};
|
294
|
+
"on-menu-toggle": {
|
295
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
296
|
+
};
|
297
|
+
onMenuToggle: {
|
298
|
+
type: import("vue").PropType<(value: boolean) => void>;
|
299
|
+
};
|
300
|
+
filter: {
|
301
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
302
|
+
} & {
|
303
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
304
|
+
};
|
305
|
+
blockedIdentities: {
|
306
|
+
type: import("vue").PropType<Identity[]>;
|
307
|
+
required: false;
|
308
|
+
};
|
309
|
+
disabledIdentities: {
|
310
|
+
type: import("vue").PropType<Identity[]>;
|
311
|
+
required: false;
|
312
|
+
};
|
313
|
+
hideDynamicGroupSelection: {
|
314
|
+
type: import("vue").PropType<boolean>;
|
315
|
+
required: false;
|
316
|
+
};
|
317
|
+
hideUserTypeSelection: {
|
318
|
+
type: import("vue").PropType<boolean>;
|
319
|
+
required: false;
|
320
|
+
};
|
321
|
+
hideGroupTypeSelection: {
|
322
|
+
type: import("vue").PropType<boolean>;
|
323
|
+
required: false;
|
324
|
+
};
|
325
|
+
hideTab: {
|
326
|
+
type: import("vue").PropType<boolean>;
|
327
|
+
required: false;
|
328
|
+
};
|
329
|
+
singleLine: {
|
330
|
+
type: import("vue").PropType<boolean>;
|
331
|
+
required: false;
|
332
|
+
};
|
333
|
+
ariaInvalid: {
|
334
|
+
type: import("vue").PropType<boolean>;
|
335
|
+
required: false;
|
336
|
+
};
|
337
|
+
top: {
|
338
|
+
type: import("vue").PropType<boolean>;
|
339
|
+
required: false;
|
340
|
+
};
|
341
|
+
keepSelectionMenu: {
|
342
|
+
type: import("vue").PropType<boolean>;
|
343
|
+
required: false;
|
344
|
+
};
|
345
|
+
attachToParent: {
|
346
|
+
type: import("vue").PropType<boolean>;
|
347
|
+
required: false;
|
348
|
+
};
|
349
|
+
disabled: {
|
350
|
+
type: import("vue").PropType<boolean>;
|
351
|
+
required: false;
|
352
|
+
};
|
353
|
+
description: {
|
354
|
+
type: import("vue").PropType<string>;
|
355
|
+
required: false;
|
356
|
+
};
|
357
|
+
label: {
|
358
|
+
type: import("vue").PropType<string>;
|
359
|
+
required: false;
|
360
|
+
};
|
361
|
+
"provider-ids": {
|
362
|
+
type: import("vue").PropType<GuidValue[]>;
|
363
|
+
};
|
364
|
+
providerIds: {
|
365
|
+
type: import("vue").PropType<GuidValue[]>;
|
366
|
+
};
|
367
|
+
type: {
|
368
|
+
type: import("vue").PropType<PrincipalTypes>;
|
369
|
+
} & {
|
370
|
+
type: import("vue").PropType<PrincipalTypes>;
|
371
|
+
};
|
372
|
+
}>> & {
|
373
|
+
onSelect?: (value: Identity) => any;
|
374
|
+
onDoc$?: (description?: string) => any;
|
375
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
376
|
+
select: (value: Identity) => true;
|
377
|
+
doc$(description?: string): {
|
378
|
+
select: (value: Identity) => true;
|
379
|
+
};
|
380
|
+
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
173
381
|
propsDefinition: Omit<Readonly<{} & {
|
174
382
|
filter?: (identities: IResolvedIdentity[]) => IResolvedIdentity[];
|
175
383
|
label?: string;
|
@@ -181,16 +389,20 @@ declare const _default: {
|
|
181
389
|
ariaInvalid?: boolean;
|
182
390
|
ariaDescribedby?: string;
|
183
391
|
providerIds?: GuidValue[];
|
184
|
-
|
185
|
-
attachToParent?: boolean;
|
392
|
+
"provider-ids"?: GuidValue[];
|
186
393
|
keepSelectionMenu?: boolean;
|
187
394
|
disabledIdentities?: Identity[];
|
188
395
|
blockedIdentities?: Identity[];
|
189
|
-
onMenuToggle?: (
|
396
|
+
onMenuToggle?: (value: boolean) => void;
|
397
|
+
"on-menu-toggle"?: (value: boolean) => void;
|
190
398
|
hideTab?: boolean;
|
191
399
|
hideGroupTypeSelection?: boolean;
|
192
400
|
hideUserTypeSelection?: boolean;
|
193
401
|
hideDynamicGroupSelection?: boolean;
|
194
|
-
|
402
|
+
attachToParent?: boolean;
|
403
|
+
}>, "onSelect" | "onDoc$"> & {
|
404
|
+
onSelect?: (value: Identity) => any;
|
405
|
+
onDoc$?: (description?: string) => any;
|
406
|
+
};
|
195
407
|
};
|
196
408
|
export default _default;
|
@@ -118,21 +118,21 @@ declare const _default: {
|
|
118
118
|
"onUpdate:modelValue"?: ((value: boolean) => any) & ((value: Identity) => any);
|
119
119
|
readonly location?: "left" | "center" | "right" | "bottom" | "top" | "end" | "start" | "center center" | "bottom end" | "bottom start" | "top center" | "top end" | "top start" | "end bottom" | "end top" | "start bottom" | "start top";
|
120
120
|
readonly providerIds?: GuidValue[];
|
121
|
-
readonly
|
121
|
+
readonly "provider-ids"?: GuidValue[];
|
122
122
|
readonly keepSelectionMenu?: boolean;
|
123
123
|
readonly disabledIdentities?: Identity[];
|
124
124
|
readonly blockedIdentities?: Identity[];
|
125
125
|
readonly onMenuToggle?: (values: boolean) => void;
|
126
|
+
readonly "on-menu-toggle"?: (values: boolean) => void;
|
126
127
|
readonly hideTab?: boolean;
|
127
128
|
readonly hideGroupTypeSelection?: boolean;
|
128
129
|
readonly hideUserTypeSelection?: boolean;
|
129
130
|
readonly hideDynamicGroupSelection?: boolean;
|
130
131
|
onDoc$?: (description?: string) => any;
|
131
132
|
readonly showMenu?: boolean;
|
132
|
-
readonly
|
133
|
+
readonly attachToParent?: boolean;
|
133
134
|
readonly "onUpdate:showMenu"?: (value: boolean) => any;
|
134
135
|
readonly "v-model:showMenu"?: boolean;
|
135
|
-
readonly "on-menu-toggle"?: (values: boolean) => void;
|
136
136
|
};
|
137
137
|
$attrs: {
|
138
138
|
[x: string]: unknown;
|
@@ -691,20 +691,20 @@ declare const _default: {
|
|
691
691
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
692
692
|
location?: "left" | "center" | "right" | "bottom" | "top" | "end" | "start" | "center center" | "bottom end" | "bottom start" | "top center" | "top end" | "top start" | "end bottom" | "end top" | "start bottom" | "start top";
|
693
693
|
providerIds?: GuidValue[];
|
694
|
-
|
694
|
+
"provider-ids"?: GuidValue[];
|
695
695
|
keepSelectionMenu?: boolean;
|
696
696
|
disabledIdentities?: Identity[];
|
697
697
|
blockedIdentities?: Identity[];
|
698
698
|
onMenuToggle?: (values: boolean) => void;
|
699
|
+
"on-menu-toggle"?: (values: boolean) => void;
|
699
700
|
hideTab?: boolean;
|
700
701
|
hideGroupTypeSelection?: boolean;
|
701
702
|
hideUserTypeSelection?: boolean;
|
702
703
|
hideDynamicGroupSelection?: boolean;
|
703
704
|
showMenu?: boolean;
|
704
|
-
|
705
|
+
attachToParent?: boolean;
|
705
706
|
"onUpdate:showMenu"?: (value: boolean) => any;
|
706
707
|
"v-model:showMenu"?: boolean;
|
707
|
-
"on-menu-toggle"?: (values: boolean) => void;
|
708
708
|
}>, "onUpdate:modelValue" | "onDoc$"> & {
|
709
709
|
"onUpdate:modelValue"?: (value: Identity) => any;
|
710
710
|
onDoc$?: (description?: string) => any;
|