@omnia/fx 8.0.44-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 +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
@@ -9,8 +9,8 @@ declare const _default: {
|
|
9
9
|
class?: unknown;
|
10
10
|
readonly type?: PrincipalTypes;
|
11
11
|
key?: string | number | symbol;
|
12
|
-
readonly top?:
|
13
|
-
readonly disabled?:
|
12
|
+
readonly top?: Boolean;
|
13
|
+
readonly disabled?: Boolean;
|
14
14
|
ref?: import("vue").VNodeRef;
|
15
15
|
ref_for?: boolean;
|
16
16
|
ref_key?: string;
|
@@ -52,21 +52,23 @@ declare const _default: {
|
|
52
52
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
53
53
|
[key: string]: any;
|
54
54
|
}>) => void)[];
|
55
|
-
readonly
|
55
|
+
readonly "v-model"?: Identity[];
|
56
|
+
readonly modelValue?: Identity[];
|
57
|
+
readonly "onUpdate:modelValue"?: (value: Identity[]) => any;
|
56
58
|
readonly providerIds?: GuidValue[];
|
57
|
-
readonly isKeepMenuOpen?: (value: Boolean) => void;
|
58
59
|
readonly attachToParent?: boolean;
|
59
|
-
readonly keepSelectionMenu?: boolean;
|
60
60
|
readonly disabledIdentities?: Identity[];
|
61
61
|
readonly blockedIdentities?: Identity[];
|
62
|
-
readonly hideTab?:
|
63
|
-
readonly hideGroupTypeSelection?:
|
64
|
-
readonly hideUserTypeSelection?:
|
65
|
-
readonly hideDynamicGroupSelection?:
|
66
|
-
|
67
|
-
readonly
|
68
|
-
readonly showSelectedIdentities?:
|
69
|
-
readonly
|
62
|
+
readonly hideTab?: Boolean;
|
63
|
+
readonly hideGroupTypeSelection?: Boolean;
|
64
|
+
readonly hideUserTypeSelection?: Boolean;
|
65
|
+
readonly hideDynamicGroupSelection?: Boolean;
|
66
|
+
onDoc$?: (description?: string) => any;
|
67
|
+
readonly "provider-ids"?: GuidValue[];
|
68
|
+
readonly showSelectedIdentities?: Boolean;
|
69
|
+
readonly hideIdentityType?: Boolean;
|
70
|
+
onAdd?: (identity: Identity) => any;
|
71
|
+
onRemove?: (identity: Identity) => any;
|
70
72
|
};
|
71
73
|
$attrs: {
|
72
74
|
[x: string]: unknown;
|
@@ -79,29 +81,91 @@ declare const _default: {
|
|
79
81
|
}>;
|
80
82
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
81
83
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
82
|
-
$emit: (event: string,
|
84
|
+
$emit: ((event: "add", identity: Identity) => void) & ((event: "doc$", description?: string) => void) & ((event: "remove", identity: Identity) => void);
|
83
85
|
$el: any;
|
84
86
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
87
|
+
filter: {
|
88
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
89
|
+
} & {
|
90
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
91
|
+
};
|
92
|
+
hideIdentityType: {
|
93
|
+
type: import("vue").PropType<Boolean>;
|
94
|
+
required: false;
|
95
|
+
};
|
96
|
+
showSelectedIdentities: {
|
97
|
+
type: import("vue").PropType<Boolean>;
|
98
|
+
required: false;
|
99
|
+
};
|
100
|
+
hideUserTypeSelection: {
|
101
|
+
type: import("vue").PropType<Boolean>;
|
102
|
+
required: false;
|
103
|
+
};
|
104
|
+
hideGroupTypeSelection: {
|
105
|
+
type: import("vue").PropType<Boolean>;
|
106
|
+
required: false;
|
107
|
+
};
|
108
|
+
hideDynamicGroupSelection: {
|
109
|
+
type: import("vue").PropType<Boolean>;
|
110
|
+
required: false;
|
111
|
+
};
|
112
|
+
hideTab: {
|
113
|
+
type: import("vue").PropType<Boolean>;
|
114
|
+
required: false;
|
115
|
+
};
|
116
|
+
blockedIdentities: {
|
117
|
+
type: import("vue").PropType<Identity[]>;
|
118
|
+
required: false;
|
119
|
+
};
|
120
|
+
disabledIdentities: {
|
121
|
+
type: import("vue").PropType<Identity[]>;
|
122
|
+
required: false;
|
123
|
+
};
|
124
|
+
disabled: {
|
125
|
+
type: import("vue").PropType<Boolean>;
|
126
|
+
required: false;
|
127
|
+
};
|
128
|
+
top: {
|
129
|
+
type: import("vue").PropType<Boolean>;
|
130
|
+
required: false;
|
131
|
+
};
|
132
|
+
attachToParent: {
|
133
|
+
type: import("vue").PropType<boolean>;
|
134
|
+
required: false;
|
135
|
+
};
|
136
|
+
"provider-ids": {
|
137
|
+
type: import("vue").PropType<GuidValue[]>;
|
138
|
+
};
|
139
|
+
providerIds: {
|
140
|
+
type: import("vue").PropType<GuidValue[]>;
|
141
|
+
};
|
142
|
+
type: {
|
143
|
+
type: import("vue").PropType<PrincipalTypes>;
|
144
|
+
} & {
|
145
|
+
type: import("vue").PropType<PrincipalTypes>;
|
146
|
+
};
|
147
|
+
"onUpdate:modelValue": {
|
148
|
+
type: import("vue").PropType<(value: Identity[]) => any>;
|
149
|
+
};
|
150
|
+
"v-model": {
|
151
|
+
type: import("vue").PropType<Identity[]>;
|
152
|
+
required: false;
|
153
|
+
};
|
154
|
+
modelValue: {
|
155
|
+
type: import("vue").PropType<Identity[]>;
|
156
|
+
required: false;
|
157
|
+
};
|
158
|
+
}>> & {
|
159
|
+
onDoc$?: (description?: string) => any;
|
160
|
+
onAdd?: (identity: Identity) => any;
|
161
|
+
onRemove?: (identity: Identity) => any;
|
162
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
163
|
+
remove: (identity: Identity) => void;
|
164
|
+
doc$(description?: string): {
|
165
|
+
remove: (identity: Identity) => void;
|
166
|
+
};
|
167
|
+
add: (identity: Identity) => void;
|
168
|
+
}, string, {}, {}, string, {}> & {
|
105
169
|
beforeCreate?: (() => void) | (() => void)[];
|
106
170
|
created?: (() => void) | (() => void)[];
|
107
171
|
beforeMount?: (() => void) | (() => void)[];
|
@@ -122,70 +186,191 @@ declare const _default: {
|
|
122
186
|
$nextTick: typeof import("vue").nextTick;
|
123
187
|
$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;
|
124
188
|
} & Readonly<import("vue").ExtractPropTypes<{
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
189
|
+
filter: {
|
190
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
191
|
+
} & {
|
192
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
193
|
+
};
|
194
|
+
hideIdentityType: {
|
195
|
+
type: import("vue").PropType<Boolean>;
|
196
|
+
required: false;
|
197
|
+
};
|
198
|
+
showSelectedIdentities: {
|
199
|
+
type: import("vue").PropType<Boolean>;
|
200
|
+
required: false;
|
201
|
+
};
|
202
|
+
hideUserTypeSelection: {
|
203
|
+
type: import("vue").PropType<Boolean>;
|
204
|
+
required: false;
|
205
|
+
};
|
206
|
+
hideGroupTypeSelection: {
|
207
|
+
type: import("vue").PropType<Boolean>;
|
208
|
+
required: false;
|
209
|
+
};
|
210
|
+
hideDynamicGroupSelection: {
|
211
|
+
type: import("vue").PropType<Boolean>;
|
212
|
+
required: false;
|
213
|
+
};
|
214
|
+
hideTab: {
|
215
|
+
type: import("vue").PropType<Boolean>;
|
216
|
+
required: false;
|
217
|
+
};
|
218
|
+
blockedIdentities: {
|
219
|
+
type: import("vue").PropType<Identity[]>;
|
220
|
+
required: false;
|
221
|
+
};
|
222
|
+
disabledIdentities: {
|
223
|
+
type: import("vue").PropType<Identity[]>;
|
224
|
+
required: false;
|
225
|
+
};
|
226
|
+
disabled: {
|
227
|
+
type: import("vue").PropType<Boolean>;
|
228
|
+
required: false;
|
229
|
+
};
|
230
|
+
top: {
|
231
|
+
type: import("vue").PropType<Boolean>;
|
232
|
+
required: false;
|
233
|
+
};
|
234
|
+
attachToParent: {
|
235
|
+
type: import("vue").PropType<boolean>;
|
236
|
+
required: false;
|
237
|
+
};
|
238
|
+
"provider-ids": {
|
239
|
+
type: import("vue").PropType<GuidValue[]>;
|
240
|
+
};
|
241
|
+
providerIds: {
|
242
|
+
type: import("vue").PropType<GuidValue[]>;
|
243
|
+
};
|
244
|
+
type: {
|
245
|
+
type: import("vue").PropType<PrincipalTypes>;
|
246
|
+
} & {
|
247
|
+
type: import("vue").PropType<PrincipalTypes>;
|
248
|
+
};
|
249
|
+
"onUpdate:modelValue": {
|
250
|
+
type: import("vue").PropType<(value: Identity[]) => any>;
|
251
|
+
};
|
252
|
+
"v-model": {
|
253
|
+
type: import("vue").PropType<Identity[]>;
|
254
|
+
required: false;
|
255
|
+
};
|
256
|
+
modelValue: {
|
257
|
+
type: import("vue").PropType<Identity[]>;
|
258
|
+
required: false;
|
259
|
+
};
|
260
|
+
}>> & {
|
261
|
+
onDoc$?: (description?: string) => any;
|
262
|
+
onAdd?: (identity: Identity) => any;
|
263
|
+
onRemove?: (identity: Identity) => any;
|
264
|
+
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
145
265
|
__isFragment?: never;
|
146
266
|
__isTeleport?: never;
|
147
267
|
__isSuspense?: never;
|
148
268
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
269
|
+
filter: {
|
270
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
271
|
+
} & {
|
272
|
+
type: import("vue").PropType<(identities: IResolvedIdentity[]) => IResolvedIdentity[]>;
|
273
|
+
};
|
274
|
+
hideIdentityType: {
|
275
|
+
type: import("vue").PropType<Boolean>;
|
276
|
+
required: false;
|
277
|
+
};
|
278
|
+
showSelectedIdentities: {
|
279
|
+
type: import("vue").PropType<Boolean>;
|
280
|
+
required: false;
|
281
|
+
};
|
282
|
+
hideUserTypeSelection: {
|
283
|
+
type: import("vue").PropType<Boolean>;
|
284
|
+
required: false;
|
285
|
+
};
|
286
|
+
hideGroupTypeSelection: {
|
287
|
+
type: import("vue").PropType<Boolean>;
|
288
|
+
required: false;
|
289
|
+
};
|
290
|
+
hideDynamicGroupSelection: {
|
291
|
+
type: import("vue").PropType<Boolean>;
|
292
|
+
required: false;
|
293
|
+
};
|
294
|
+
hideTab: {
|
295
|
+
type: import("vue").PropType<Boolean>;
|
296
|
+
required: false;
|
297
|
+
};
|
298
|
+
blockedIdentities: {
|
299
|
+
type: import("vue").PropType<Identity[]>;
|
300
|
+
required: false;
|
301
|
+
};
|
302
|
+
disabledIdentities: {
|
303
|
+
type: import("vue").PropType<Identity[]>;
|
304
|
+
required: false;
|
305
|
+
};
|
306
|
+
disabled: {
|
307
|
+
type: import("vue").PropType<Boolean>;
|
308
|
+
required: false;
|
309
|
+
};
|
310
|
+
top: {
|
311
|
+
type: import("vue").PropType<Boolean>;
|
312
|
+
required: false;
|
313
|
+
};
|
314
|
+
attachToParent: {
|
315
|
+
type: import("vue").PropType<boolean>;
|
316
|
+
required: false;
|
317
|
+
};
|
318
|
+
"provider-ids": {
|
319
|
+
type: import("vue").PropType<GuidValue[]>;
|
320
|
+
};
|
321
|
+
providerIds: {
|
322
|
+
type: import("vue").PropType<GuidValue[]>;
|
323
|
+
};
|
324
|
+
type: {
|
325
|
+
type: import("vue").PropType<PrincipalTypes>;
|
326
|
+
} & {
|
327
|
+
type: import("vue").PropType<PrincipalTypes>;
|
328
|
+
};
|
329
|
+
"onUpdate:modelValue": {
|
330
|
+
type: import("vue").PropType<(value: Identity[]) => any>;
|
331
|
+
};
|
332
|
+
"v-model": {
|
333
|
+
type: import("vue").PropType<Identity[]>;
|
334
|
+
required: false;
|
335
|
+
};
|
336
|
+
modelValue: {
|
337
|
+
type: import("vue").PropType<Identity[]>;
|
338
|
+
required: false;
|
339
|
+
};
|
340
|
+
}>> & {
|
341
|
+
onDoc$?: (description?: string) => any;
|
342
|
+
onAdd?: (identity: Identity) => any;
|
343
|
+
onRemove?: (identity: Identity) => any;
|
344
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
345
|
+
remove: (identity: Identity) => void;
|
346
|
+
doc$(description?: string): {
|
347
|
+
remove: (identity: Identity) => void;
|
348
|
+
};
|
349
|
+
add: (identity: Identity) => void;
|
350
|
+
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
169
351
|
propsDefinition: Omit<Readonly<{} & {
|
170
352
|
filter?: (identities: IResolvedIdentity[]) => IResolvedIdentity[];
|
171
353
|
type?: PrincipalTypes;
|
172
|
-
top?:
|
173
|
-
disabled?:
|
174
|
-
|
354
|
+
top?: Boolean;
|
355
|
+
disabled?: Boolean;
|
356
|
+
"v-model"?: Identity[];
|
357
|
+
modelValue?: Identity[];
|
358
|
+
"onUpdate:modelValue"?: (value: Identity[]) => any;
|
175
359
|
providerIds?: GuidValue[];
|
176
|
-
isKeepMenuOpen?: (value: Boolean) => void;
|
177
360
|
attachToParent?: boolean;
|
178
|
-
keepSelectionMenu?: boolean;
|
179
361
|
disabledIdentities?: Identity[];
|
180
362
|
blockedIdentities?: Identity[];
|
181
|
-
hideTab?:
|
182
|
-
hideGroupTypeSelection?:
|
183
|
-
hideUserTypeSelection?:
|
184
|
-
hideDynamicGroupSelection?:
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
363
|
+
hideTab?: Boolean;
|
364
|
+
hideGroupTypeSelection?: Boolean;
|
365
|
+
hideUserTypeSelection?: Boolean;
|
366
|
+
hideDynamicGroupSelection?: Boolean;
|
367
|
+
"provider-ids"?: GuidValue[];
|
368
|
+
showSelectedIdentities?: Boolean;
|
369
|
+
hideIdentityType?: Boolean;
|
370
|
+
}>, "onDoc$" | "onAdd" | "onRemove"> & {
|
371
|
+
onDoc$?: (description?: string) => any;
|
372
|
+
onAdd?: (identity: Identity) => any;
|
373
|
+
onRemove?: (identity: Identity) => any;
|
374
|
+
};
|
190
375
|
};
|
191
376
|
export default _default;
|