@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
|
@@ -6,6 +6,67 @@ declare const _default: {
|
|
|
6
6
|
$props: {
|
|
7
7
|
style?: unknown;
|
|
8
8
|
class?: unknown;
|
|
9
|
+
readonly name?: {
|
|
10
|
+
[x: `onUpdate:${string}`]: {
|
|
11
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
12
|
+
};
|
|
13
|
+
} & {
|
|
14
|
+
[x: `v-model:${string}`]: {
|
|
15
|
+
type: import("vue").PropType<UserIdentity>;
|
|
16
|
+
required: false;
|
|
17
|
+
};
|
|
18
|
+
} & {
|
|
19
|
+
[x: string]: {
|
|
20
|
+
type: import("vue").PropType<UserIdentity>;
|
|
21
|
+
required: false;
|
|
22
|
+
};
|
|
23
|
+
} & {
|
|
24
|
+
require(): import("../DefineVueTypings").DefinePropModelRequire<string, UserIdentity, {
|
|
25
|
+
"onUpdate:modelValue": {
|
|
26
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
27
|
+
};
|
|
28
|
+
} & {
|
|
29
|
+
"v-model": {
|
|
30
|
+
type: import("vue").PropType<UserIdentity>;
|
|
31
|
+
required: false;
|
|
32
|
+
};
|
|
33
|
+
} & {
|
|
34
|
+
modelValue: {
|
|
35
|
+
type: import("vue").PropType<UserIdentity>;
|
|
36
|
+
required: false;
|
|
37
|
+
};
|
|
38
|
+
}>;
|
|
39
|
+
defaultValue(value?: UserIdentity): import("../DefineVueTypings").DefinePropModelDefaultValue<string, UserIdentity, {
|
|
40
|
+
"onUpdate:modelValue": {
|
|
41
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
42
|
+
};
|
|
43
|
+
} & {
|
|
44
|
+
"v-model": {
|
|
45
|
+
type: import("vue").PropType<UserIdentity>;
|
|
46
|
+
required: false;
|
|
47
|
+
};
|
|
48
|
+
} & {
|
|
49
|
+
modelValue: {
|
|
50
|
+
type: import("vue").PropType<UserIdentity>;
|
|
51
|
+
required: false;
|
|
52
|
+
};
|
|
53
|
+
}, false>;
|
|
54
|
+
doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<string, UserIdentity, {
|
|
55
|
+
"onUpdate:modelValue": {
|
|
56
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
57
|
+
};
|
|
58
|
+
} & {
|
|
59
|
+
"v-model": {
|
|
60
|
+
type: import("vue").PropType<UserIdentity>;
|
|
61
|
+
required: false;
|
|
62
|
+
};
|
|
63
|
+
} & {
|
|
64
|
+
modelValue: {
|
|
65
|
+
type: import("vue").PropType<UserIdentity>;
|
|
66
|
+
required: false;
|
|
67
|
+
};
|
|
68
|
+
}>;
|
|
69
|
+
};
|
|
9
70
|
key?: string | number | symbol;
|
|
10
71
|
ref?: import("vue").VNodeRef;
|
|
11
72
|
ref_for?: boolean;
|
|
@@ -48,10 +109,10 @@ declare const _default: {
|
|
|
48
109
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
49
110
|
[key: string]: any;
|
|
50
111
|
}>) => void)[];
|
|
51
|
-
readonly
|
|
52
|
-
readonly
|
|
53
|
-
|
|
54
|
-
|
|
112
|
+
readonly "v-model"?: UserIdentity;
|
|
113
|
+
readonly modelValue?: UserIdentity;
|
|
114
|
+
readonly "onUpdate:modelValue"?: (value: UserIdentity) => any;
|
|
115
|
+
readonly styles?: unknown;
|
|
55
116
|
readonly offsetX?: number;
|
|
56
117
|
readonly offsetY?: number;
|
|
57
118
|
};
|
|
@@ -69,15 +130,90 @@ declare const _default: {
|
|
|
69
130
|
$emit: (event: string, ...args: any[]) => void;
|
|
70
131
|
$el: any;
|
|
71
132
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
}
|
|
80
|
-
|
|
133
|
+
offsetY: {
|
|
134
|
+
type: import("vue").PropType<number>;
|
|
135
|
+
required: false;
|
|
136
|
+
};
|
|
137
|
+
offsetX: {
|
|
138
|
+
type: import("vue").PropType<number>;
|
|
139
|
+
required: false;
|
|
140
|
+
};
|
|
141
|
+
styles: {
|
|
142
|
+
type: import("vue").PropType<{
|
|
143
|
+
container?: import("@omnia/fx-models").NestedCSSPropertiesExtends;
|
|
144
|
+
}>;
|
|
145
|
+
} & {
|
|
146
|
+
type: import("vue").PropType<{
|
|
147
|
+
container?: import("@omnia/fx-models").NestedCSSPropertiesExtends;
|
|
148
|
+
}>;
|
|
149
|
+
};
|
|
150
|
+
"onUpdate:modelValue": {
|
|
151
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
152
|
+
};
|
|
153
|
+
"v-model": {
|
|
154
|
+
type: import("vue").PropType<UserIdentity>;
|
|
155
|
+
required: false;
|
|
156
|
+
};
|
|
157
|
+
modelValue: {
|
|
158
|
+
type: import("vue").PropType<UserIdentity>;
|
|
159
|
+
required: false;
|
|
160
|
+
};
|
|
161
|
+
name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
|
162
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
163
|
+
}; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
|
164
|
+
type: import("vue").PropType<UserIdentity>;
|
|
165
|
+
required: false;
|
|
166
|
+
}; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
|
167
|
+
type: import("vue").PropType<UserIdentity>;
|
|
168
|
+
required: false;
|
|
169
|
+
}; } & {
|
|
170
|
+
require(): import("../DefineVueTypings").DefinePropModelRequire<TName, UserIdentity, {
|
|
171
|
+
"onUpdate:modelValue": {
|
|
172
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
173
|
+
};
|
|
174
|
+
} & {
|
|
175
|
+
"v-model": {
|
|
176
|
+
type: import("vue").PropType<UserIdentity>;
|
|
177
|
+
required: false;
|
|
178
|
+
};
|
|
179
|
+
} & {
|
|
180
|
+
modelValue: {
|
|
181
|
+
type: import("vue").PropType<UserIdentity>;
|
|
182
|
+
required: false;
|
|
183
|
+
};
|
|
184
|
+
}>;
|
|
185
|
+
defaultValue(value?: UserIdentity): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, UserIdentity, {
|
|
186
|
+
"onUpdate:modelValue": {
|
|
187
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
188
|
+
};
|
|
189
|
+
} & {
|
|
190
|
+
"v-model": {
|
|
191
|
+
type: import("vue").PropType<UserIdentity>;
|
|
192
|
+
required: false;
|
|
193
|
+
};
|
|
194
|
+
} & {
|
|
195
|
+
modelValue: {
|
|
196
|
+
type: import("vue").PropType<UserIdentity>;
|
|
197
|
+
required: false;
|
|
198
|
+
};
|
|
199
|
+
}, false>;
|
|
200
|
+
doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, UserIdentity, {
|
|
201
|
+
"onUpdate:modelValue": {
|
|
202
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
203
|
+
};
|
|
204
|
+
} & {
|
|
205
|
+
"v-model": {
|
|
206
|
+
type: import("vue").PropType<UserIdentity>;
|
|
207
|
+
required: false;
|
|
208
|
+
};
|
|
209
|
+
} & {
|
|
210
|
+
modelValue: {
|
|
211
|
+
type: import("vue").PropType<UserIdentity>;
|
|
212
|
+
required: false;
|
|
213
|
+
};
|
|
214
|
+
}>;
|
|
215
|
+
};
|
|
216
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
|
81
217
|
beforeCreate?: (() => void) | (() => void)[];
|
|
82
218
|
created?: (() => void) | (() => void)[];
|
|
83
219
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -98,33 +234,244 @@ declare const _default: {
|
|
|
98
234
|
$nextTick: typeof import("vue").nextTick;
|
|
99
235
|
$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;
|
|
100
236
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
}
|
|
237
|
+
offsetY: {
|
|
238
|
+
type: import("vue").PropType<number>;
|
|
239
|
+
required: false;
|
|
240
|
+
};
|
|
241
|
+
offsetX: {
|
|
242
|
+
type: import("vue").PropType<number>;
|
|
243
|
+
required: false;
|
|
244
|
+
};
|
|
245
|
+
styles: {
|
|
246
|
+
type: import("vue").PropType<{
|
|
247
|
+
container?: import("@omnia/fx-models").NestedCSSPropertiesExtends;
|
|
248
|
+
}>;
|
|
249
|
+
} & {
|
|
250
|
+
type: import("vue").PropType<{
|
|
251
|
+
container?: import("@omnia/fx-models").NestedCSSPropertiesExtends;
|
|
252
|
+
}>;
|
|
253
|
+
};
|
|
254
|
+
"onUpdate:modelValue": {
|
|
255
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
256
|
+
};
|
|
257
|
+
"v-model": {
|
|
258
|
+
type: import("vue").PropType<UserIdentity>;
|
|
259
|
+
required: false;
|
|
260
|
+
};
|
|
261
|
+
modelValue: {
|
|
262
|
+
type: import("vue").PropType<UserIdentity>;
|
|
263
|
+
required: false;
|
|
264
|
+
};
|
|
265
|
+
name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
|
266
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
267
|
+
}; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
|
268
|
+
type: import("vue").PropType<UserIdentity>;
|
|
269
|
+
required: false;
|
|
270
|
+
}; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
|
271
|
+
type: import("vue").PropType<UserIdentity>;
|
|
272
|
+
required: false;
|
|
273
|
+
}; } & {
|
|
274
|
+
require(): import("../DefineVueTypings").DefinePropModelRequire<TName, UserIdentity, {
|
|
275
|
+
"onUpdate:modelValue": {
|
|
276
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
277
|
+
};
|
|
278
|
+
} & {
|
|
279
|
+
"v-model": {
|
|
280
|
+
type: import("vue").PropType<UserIdentity>;
|
|
281
|
+
required: false;
|
|
282
|
+
};
|
|
283
|
+
} & {
|
|
284
|
+
modelValue: {
|
|
285
|
+
type: import("vue").PropType<UserIdentity>;
|
|
286
|
+
required: false;
|
|
287
|
+
};
|
|
288
|
+
}>;
|
|
289
|
+
defaultValue(value?: UserIdentity): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, UserIdentity, {
|
|
290
|
+
"onUpdate:modelValue": {
|
|
291
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
292
|
+
};
|
|
293
|
+
} & {
|
|
294
|
+
"v-model": {
|
|
295
|
+
type: import("vue").PropType<UserIdentity>;
|
|
296
|
+
required: false;
|
|
297
|
+
};
|
|
298
|
+
} & {
|
|
299
|
+
modelValue: {
|
|
300
|
+
type: import("vue").PropType<UserIdentity>;
|
|
301
|
+
required: false;
|
|
302
|
+
};
|
|
303
|
+
}, false>;
|
|
304
|
+
doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, UserIdentity, {
|
|
305
|
+
"onUpdate:modelValue": {
|
|
306
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
307
|
+
};
|
|
308
|
+
} & {
|
|
309
|
+
"v-model": {
|
|
310
|
+
type: import("vue").PropType<UserIdentity>;
|
|
311
|
+
required: false;
|
|
312
|
+
};
|
|
313
|
+
} & {
|
|
314
|
+
modelValue: {
|
|
315
|
+
type: import("vue").PropType<UserIdentity>;
|
|
316
|
+
required: false;
|
|
317
|
+
};
|
|
318
|
+
}>;
|
|
319
|
+
};
|
|
109
320
|
}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
|
110
321
|
__isFragment?: never;
|
|
111
322
|
__isTeleport?: never;
|
|
112
323
|
__isSuspense?: never;
|
|
113
324
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
325
|
+
offsetY: {
|
|
326
|
+
type: import("vue").PropType<number>;
|
|
327
|
+
required: false;
|
|
328
|
+
};
|
|
329
|
+
offsetX: {
|
|
330
|
+
type: import("vue").PropType<number>;
|
|
331
|
+
required: false;
|
|
332
|
+
};
|
|
333
|
+
styles: {
|
|
334
|
+
type: import("vue").PropType<{
|
|
335
|
+
container?: import("@omnia/fx-models").NestedCSSPropertiesExtends;
|
|
336
|
+
}>;
|
|
337
|
+
} & {
|
|
338
|
+
type: import("vue").PropType<{
|
|
126
339
|
container?: import("@omnia/fx-models").NestedCSSPropertiesExtends;
|
|
340
|
+
}>;
|
|
341
|
+
};
|
|
342
|
+
"onUpdate:modelValue": {
|
|
343
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
344
|
+
};
|
|
345
|
+
"v-model": {
|
|
346
|
+
type: import("vue").PropType<UserIdentity>;
|
|
347
|
+
required: false;
|
|
348
|
+
};
|
|
349
|
+
modelValue: {
|
|
350
|
+
type: import("vue").PropType<UserIdentity>;
|
|
351
|
+
required: false;
|
|
352
|
+
};
|
|
353
|
+
name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
|
354
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
355
|
+
}; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
|
356
|
+
type: import("vue").PropType<UserIdentity>;
|
|
357
|
+
required: false;
|
|
358
|
+
}; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
|
359
|
+
type: import("vue").PropType<UserIdentity>;
|
|
360
|
+
required: false;
|
|
361
|
+
}; } & {
|
|
362
|
+
require(): import("../DefineVueTypings").DefinePropModelRequire<TName, UserIdentity, {
|
|
363
|
+
"onUpdate:modelValue": {
|
|
364
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
365
|
+
};
|
|
366
|
+
} & {
|
|
367
|
+
"v-model": {
|
|
368
|
+
type: import("vue").PropType<UserIdentity>;
|
|
369
|
+
required: false;
|
|
370
|
+
};
|
|
371
|
+
} & {
|
|
372
|
+
modelValue: {
|
|
373
|
+
type: import("vue").PropType<UserIdentity>;
|
|
374
|
+
required: false;
|
|
375
|
+
};
|
|
376
|
+
}>;
|
|
377
|
+
defaultValue(value?: UserIdentity): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, UserIdentity, {
|
|
378
|
+
"onUpdate:modelValue": {
|
|
379
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
380
|
+
};
|
|
381
|
+
} & {
|
|
382
|
+
"v-model": {
|
|
383
|
+
type: import("vue").PropType<UserIdentity>;
|
|
384
|
+
required: false;
|
|
385
|
+
};
|
|
386
|
+
} & {
|
|
387
|
+
modelValue: {
|
|
388
|
+
type: import("vue").PropType<UserIdentity>;
|
|
389
|
+
required: false;
|
|
390
|
+
};
|
|
391
|
+
}, false>;
|
|
392
|
+
doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, UserIdentity, {
|
|
393
|
+
"onUpdate:modelValue": {
|
|
394
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
395
|
+
};
|
|
396
|
+
} & {
|
|
397
|
+
"v-model": {
|
|
398
|
+
type: import("vue").PropType<UserIdentity>;
|
|
399
|
+
required: false;
|
|
400
|
+
};
|
|
401
|
+
} & {
|
|
402
|
+
modelValue: {
|
|
403
|
+
type: import("vue").PropType<UserIdentity>;
|
|
404
|
+
required: false;
|
|
405
|
+
};
|
|
406
|
+
}>;
|
|
407
|
+
};
|
|
408
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
409
|
+
propsDefinition: Omit<Readonly<{} & {
|
|
410
|
+
name?: {
|
|
411
|
+
[x: `onUpdate:${string}`]: {
|
|
412
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
413
|
+
};
|
|
414
|
+
} & {
|
|
415
|
+
[x: `v-model:${string}`]: {
|
|
416
|
+
type: import("vue").PropType<UserIdentity>;
|
|
417
|
+
required: false;
|
|
418
|
+
};
|
|
419
|
+
} & {
|
|
420
|
+
[x: string]: {
|
|
421
|
+
type: import("vue").PropType<UserIdentity>;
|
|
422
|
+
required: false;
|
|
423
|
+
};
|
|
424
|
+
} & {
|
|
425
|
+
require(): import("../DefineVueTypings").DefinePropModelRequire<string, UserIdentity, {
|
|
426
|
+
"onUpdate:modelValue": {
|
|
427
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
428
|
+
};
|
|
429
|
+
} & {
|
|
430
|
+
"v-model": {
|
|
431
|
+
type: import("vue").PropType<UserIdentity>;
|
|
432
|
+
required: false;
|
|
433
|
+
};
|
|
434
|
+
} & {
|
|
435
|
+
modelValue: {
|
|
436
|
+
type: import("vue").PropType<UserIdentity>;
|
|
437
|
+
required: false;
|
|
438
|
+
};
|
|
439
|
+
}>;
|
|
440
|
+
defaultValue(value?: UserIdentity): import("../DefineVueTypings").DefinePropModelDefaultValue<string, UserIdentity, {
|
|
441
|
+
"onUpdate:modelValue": {
|
|
442
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
443
|
+
};
|
|
444
|
+
} & {
|
|
445
|
+
"v-model": {
|
|
446
|
+
type: import("vue").PropType<UserIdentity>;
|
|
447
|
+
required: false;
|
|
448
|
+
};
|
|
449
|
+
} & {
|
|
450
|
+
modelValue: {
|
|
451
|
+
type: import("vue").PropType<UserIdentity>;
|
|
452
|
+
required: false;
|
|
453
|
+
};
|
|
454
|
+
}, false>;
|
|
455
|
+
doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<string, UserIdentity, {
|
|
456
|
+
"onUpdate:modelValue": {
|
|
457
|
+
type: import("vue").PropType<(value: UserIdentity) => any>;
|
|
458
|
+
};
|
|
459
|
+
} & {
|
|
460
|
+
"v-model": {
|
|
461
|
+
type: import("vue").PropType<UserIdentity>;
|
|
462
|
+
required: false;
|
|
463
|
+
};
|
|
464
|
+
} & {
|
|
465
|
+
modelValue: {
|
|
466
|
+
type: import("vue").PropType<UserIdentity>;
|
|
467
|
+
required: false;
|
|
468
|
+
};
|
|
469
|
+
}>;
|
|
127
470
|
};
|
|
471
|
+
"v-model"?: UserIdentity;
|
|
472
|
+
modelValue?: UserIdentity;
|
|
473
|
+
"onUpdate:modelValue"?: (value: UserIdentity) => any;
|
|
474
|
+
styles?: unknown;
|
|
128
475
|
offsetX?: number;
|
|
129
476
|
offsetY?: number;
|
|
130
477
|
}>, never>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Guid } from "@omnia/fx-models";
|
|
2
|
+
import { VNodeChild } from "vue";
|
|
2
3
|
declare const _default: {
|
|
3
4
|
new (...args: any[]): {
|
|
4
5
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -53,6 +54,11 @@ declare const _default: {
|
|
|
53
54
|
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
54
55
|
[key: string]: any;
|
|
55
56
|
}>) => void)[];
|
|
57
|
+
readonly "v-slots"?: {
|
|
58
|
+
default?: import("../../../DefineVueTypings").Slot<any[]>;
|
|
59
|
+
} & {
|
|
60
|
+
activator?: () => VNodeChild;
|
|
61
|
+
};
|
|
56
62
|
"onDefinition:selected"?: (id: Guid) => any;
|
|
57
63
|
};
|
|
58
64
|
$attrs: {
|
|
@@ -69,6 +75,11 @@ declare const _default: {
|
|
|
69
75
|
$emit: (event: "definition:selected", id: Guid) => void;
|
|
70
76
|
$el: any;
|
|
71
77
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
78
|
+
"v-slots": import("vue").Prop<{
|
|
79
|
+
default?: import("../../../DefineVueTypings").Slot<any[]>;
|
|
80
|
+
} & {
|
|
81
|
+
activator?: () => VNodeChild;
|
|
82
|
+
}>;
|
|
72
83
|
colorSchemaType?: any;
|
|
73
84
|
container?: any;
|
|
74
85
|
colors?: any;
|
|
@@ -105,6 +116,11 @@ declare const _default: {
|
|
|
105
116
|
$nextTick: typeof import("vue").nextTick;
|
|
106
117
|
$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;
|
|
107
118
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
119
|
+
"v-slots": import("vue").Prop<{
|
|
120
|
+
default?: import("../../../DefineVueTypings").Slot<any[]>;
|
|
121
|
+
} & {
|
|
122
|
+
activator?: () => VNodeChild;
|
|
123
|
+
}>;
|
|
108
124
|
colorSchemaType?: any;
|
|
109
125
|
container?: any;
|
|
110
126
|
colors?: any;
|
|
@@ -117,6 +133,11 @@ declare const _default: {
|
|
|
117
133
|
__isTeleport?: never;
|
|
118
134
|
__isSuspense?: never;
|
|
119
135
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
136
|
+
"v-slots": import("vue").Prop<{
|
|
137
|
+
default?: import("../../../DefineVueTypings").Slot<any[]>;
|
|
138
|
+
} & {
|
|
139
|
+
activator?: () => VNodeChild;
|
|
140
|
+
}>;
|
|
120
141
|
colorSchemaType?: any;
|
|
121
142
|
container?: any;
|
|
122
143
|
colors?: any;
|
|
@@ -139,7 +160,13 @@ declare const _default: {
|
|
|
139
160
|
colorSchemaType?: any;
|
|
140
161
|
blueprintType?: any;
|
|
141
162
|
colors?: any;
|
|
142
|
-
} & {
|
|
163
|
+
} & {
|
|
164
|
+
"v-slots"?: {
|
|
165
|
+
default?: import("../../../DefineVueTypings").Slot<any[]>;
|
|
166
|
+
} & {
|
|
167
|
+
activator?: () => VNodeChild;
|
|
168
|
+
};
|
|
169
|
+
}>, "onDefinition:selected"> & {
|
|
143
170
|
"onDefinition:selected"?: (id: Guid) => any;
|
|
144
171
|
};
|
|
145
172
|
};
|
|
@@ -113,7 +113,7 @@ declare const _default: {
|
|
|
113
113
|
[key: string]: any;
|
|
114
114
|
}>) => void)[];
|
|
115
115
|
readonly "v-slots"?: {
|
|
116
|
-
default?: import("
|
|
116
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
|
117
117
|
} & {
|
|
118
118
|
activator?: () => VNodeChild;
|
|
119
119
|
};
|
|
@@ -137,11 +137,11 @@ declare const _default: {
|
|
|
137
137
|
$el: any;
|
|
138
138
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
139
139
|
"v-slots": import("vue").Prop<{
|
|
140
|
-
default?: import("
|
|
140
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
|
141
141
|
} & {
|
|
142
142
|
activator?: () => VNodeChild;
|
|
143
143
|
}, {
|
|
144
|
-
default?: import("
|
|
144
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
|
145
145
|
} & {
|
|
146
146
|
activator?: () => VNodeChild;
|
|
147
147
|
}>;
|
|
@@ -296,11 +296,11 @@ declare const _default: {
|
|
|
296
296
|
$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;
|
|
297
297
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
298
298
|
"v-slots": import("vue").Prop<{
|
|
299
|
-
default?: import("
|
|
299
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
|
300
300
|
} & {
|
|
301
301
|
activator?: () => VNodeChild;
|
|
302
302
|
}, {
|
|
303
|
-
default?: import("
|
|
303
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
|
304
304
|
} & {
|
|
305
305
|
activator?: () => VNodeChild;
|
|
306
306
|
}>;
|
|
@@ -437,11 +437,11 @@ declare const _default: {
|
|
|
437
437
|
__isSuspense?: never;
|
|
438
438
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
439
439
|
"v-slots": import("vue").Prop<{
|
|
440
|
-
default?: import("
|
|
440
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
|
441
441
|
} & {
|
|
442
442
|
activator?: () => VNodeChild;
|
|
443
443
|
}, {
|
|
444
|
-
default?: import("
|
|
444
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
|
445
445
|
} & {
|
|
446
446
|
activator?: () => VNodeChild;
|
|
447
447
|
}>;
|
|
@@ -639,7 +639,7 @@ declare const _default: {
|
|
|
639
639
|
};
|
|
640
640
|
definition?: VelcronAppDefinition<object>;
|
|
641
641
|
"v-slots"?: {
|
|
642
|
-
default?: import("
|
|
642
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
|
643
643
|
} & {
|
|
644
644
|
activator?: () => VNodeChild;
|
|
645
645
|
};
|
|
@@ -90,10 +90,12 @@ import wcf346db89a53b404690b1795429fb0162 from './ux/layoutcanvas/renderer/Layou
|
|
|
90
90
|
import wc8f6c9579f26646dfb316c087e04455cc from './ux/mediapickerproviders/dalleprovider/PollingImageComponent';
|
|
91
91
|
import wc7fbf605e1ae24b21b0a9e35141aca17b from './ux/oxide/appbar/Appbar';
|
|
92
92
|
import wc99abf48aa0214a7995d0579883a1612c from './ux/oxide/avatar/Avatar';
|
|
93
|
+
import wc9ddacaaacc3a4d7394079013da30fb0d from './ux/oxide/badge/Badge';
|
|
93
94
|
import wc678a52a5101d41498d47754aeae5f9f6 from './ux/oxide/btn/Button';
|
|
94
95
|
import wc07d25314740f40058782f3123ea1c388 from './ux/oxide/btngroup/ButtonGroup';
|
|
95
96
|
import wcffc99f8d26ae4caf84ece7c13463b6c5 from './ux/oxide/card/Card';
|
|
96
97
|
import wccd6b8d55c18546d4b1d8c4d9e1d89106 from './ux/oxide/checkbox/Checkbox';
|
|
98
|
+
import wc374573e0a03f4e0f9838ece30507926e from './ux/oxide/chip/Chip';
|
|
97
99
|
import wccdd8102dec85424da156ca516659956e from './ux/oxide/column/Column';
|
|
98
100
|
import wc86e7df28b98d4594be5ab9a3f64dd0cc from './ux/oxide/datatable/DataTable';
|
|
99
101
|
import wc2ae3cf98c95443a199d44705ad87d994 from './ux/oxide/dialog/Dialog';
|
|
@@ -331,10 +333,12 @@ declare global {
|
|
|
331
333
|
"omfx-media-picker-dalle-polling-image": typeof wc8f6c9579f26646dfb316c087e04455cc.propsDefinition & VueComponentBaseProps;
|
|
332
334
|
"o-app-bar": typeof wc7fbf605e1ae24b21b0a9e35141aca17b.propsDefinition & VueComponentBaseProps;
|
|
333
335
|
"o-avatar": typeof wc99abf48aa0214a7995d0579883a1612c.propsDefinition & VueComponentBaseProps;
|
|
336
|
+
"o-badge": typeof wc9ddacaaacc3a4d7394079013da30fb0d.propsDefinition & VueComponentBaseProps;
|
|
334
337
|
"o-btn": typeof wc678a52a5101d41498d47754aeae5f9f6.propsDefinition & VueComponentBaseProps;
|
|
335
338
|
"o-btn-group": typeof wc07d25314740f40058782f3123ea1c388.propsDefinition & VueComponentBaseProps;
|
|
336
339
|
"o-card": typeof wcffc99f8d26ae4caf84ece7c13463b6c5.propsDefinition & VueComponentBaseProps;
|
|
337
340
|
"o-checkbox": typeof wccd6b8d55c18546d4b1d8c4d9e1d89106.propsDefinition & VueComponentBaseProps;
|
|
341
|
+
"o-chip": typeof wc374573e0a03f4e0f9838ece30507926e.propsDefinition & VueComponentBaseProps;
|
|
338
342
|
"o-col": typeof wccdd8102dec85424da156ca516659956e.propsDefinition & VueComponentBaseProps;
|
|
339
343
|
"o-data-table": typeof wc86e7df28b98d4594be5ab9a3f64dd0cc.propsDefinition & VueComponentBaseProps;
|
|
340
344
|
"o-dialog": typeof wc2ae3cf98c95443a199d44705ad87d994.propsDefinition & VueComponentBaseProps;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/fx",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "8.0.
|
|
4
|
+
"version": "8.0.46-vnext",
|
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -20,13 +20,13 @@
|
|
|
20
20
|
],
|
|
21
21
|
"author": "Precio Fishbone",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@omnia/fx-models": "8.0.
|
|
23
|
+
"@omnia/fx-models": "8.0.46-vnext",
|
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
|
25
25
|
"broadcast-channel": "4.8.0",
|
|
26
26
|
"dayjs": "1.10.7",
|
|
27
27
|
"vue-virtual-scroller": "1.0.0-rc.2",
|
|
28
28
|
"splitpanes": "2.4.1",
|
|
29
|
-
"vuetify": "3.3.
|
|
29
|
+
"vuetify": "3.3.6",
|
|
30
30
|
"vue": "3.3.4",
|
|
31
31
|
"tslib": "2.5.0",
|
|
32
32
|
"typescript": "5.0.4",
|