@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
@@ -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;
|