@omnia/fx 8.0.57-dev → 8.0.58-dev
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/stores/oxide/ComponentHostStore.d.ts +4 -4
- package/internal-do-not-import-from-here/stores/oxide/ScrollContainerStore.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/editorchrome/chrome/EditorChrome.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerButton.d.ts +34 -46
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +194 -223
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerField.d.ts +146 -175
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerInlineField.d.ts +51 -66
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.d.ts +115 -14
- package/internal-do-not-import-from-here/ux/oxide/divider/Divider.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/divider/Divider.d.ts +44 -0
- package/internal-do-not-import-from-here/ux/oxide/form/Form.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/oxide/form/Form.d.ts +119 -0
- package/internal-do-not-import-from-here/ux/oxide/form/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/form/docs/SampleComponent.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/oxide/form/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/hostprovider/HostProvider.d.ts +12 -12
- package/internal-do-not-import-from-here/ux/oxide/notification/Notification.css.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/oxide/notification/Notification.d.ts +196 -0
- package/internal-do-not-import-from-here/ux/oxide/notification/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/notification/docs/SampleComponent.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/oxide/notification/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.d.ts +127 -0
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/docs/SampleComponent.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +21 -0
- package/package.json +2 -2
- /package/internal-do-not-import-from-here/ux/datetimezonepicker/docs/{DateTimeZonePickerExample.d.ts → SampleComponent.d.ts} +0 -0
@@ -7,15 +7,7 @@ declare const _default: {
|
|
7
7
|
new (...args: any[]): {
|
8
8
|
$: import("vue").ComponentInternalInstance;
|
9
9
|
$data: {};
|
10
|
-
$props: Partial<{
|
11
|
-
identityStore: IIdentityPickerStore;
|
12
|
-
emailEnabled: BoolFilter;
|
13
|
-
permissionEnabled: BoolFilter;
|
14
|
-
showSelectedIdentities: boolean;
|
15
|
-
}> & Omit<{
|
16
|
-
readonly emailEnabled: BoolFilter;
|
17
|
-
readonly permissionEnabled: BoolFilter;
|
18
|
-
readonly showSelectedIdentities: boolean;
|
10
|
+
$props: Partial<{}> & Omit<{
|
19
11
|
readonly filter?: (identities: IResolvedIdentity[]) => IResolvedIdentity[];
|
20
12
|
readonly label?: string;
|
21
13
|
readonly type?: PrincipalTypes;
|
@@ -32,6 +24,8 @@ declare const _default: {
|
|
32
24
|
readonly description?: string;
|
33
25
|
readonly ariaDescribedby?: string;
|
34
26
|
readonly providerIds?: GuidValue[];
|
27
|
+
readonly emailEnabled?: BoolFilter;
|
28
|
+
readonly permissionEnabled?: BoolFilter;
|
35
29
|
readonly "provider-ids"?: GuidValue[];
|
36
30
|
readonly keepSelectionMenu?: boolean;
|
37
31
|
readonly showCurrentUserOption?: boolean;
|
@@ -44,23 +38,20 @@ declare const _default: {
|
|
44
38
|
readonly hideGroupTypeSelection?: boolean;
|
45
39
|
readonly hideUserTypeSelection?: boolean;
|
46
40
|
readonly hideDynamicGroupSelection?: boolean;
|
41
|
+
readonly showSelectedIdentities?: boolean;
|
47
42
|
onDoc$?: (description?: string) => any;
|
48
43
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
49
|
-
|
50
|
-
type:
|
51
|
-
|
52
|
-
};
|
53
|
-
identityStore: {
|
54
|
-
type: import("vue").PropType<IIdentityPickerStore>;
|
55
|
-
default: any;
|
44
|
+
permissionEnabled: {
|
45
|
+
type: import("vue").PropType<BoolFilter>;
|
46
|
+
required: false;
|
56
47
|
};
|
57
48
|
emailEnabled: {
|
58
49
|
type: import("vue").PropType<BoolFilter>;
|
59
|
-
|
50
|
+
required: false;
|
60
51
|
};
|
61
|
-
|
62
|
-
type: import("vue").PropType<
|
63
|
-
|
52
|
+
identityStore: {
|
53
|
+
type: import("vue").PropType<IIdentityPickerStore>;
|
54
|
+
required: false;
|
64
55
|
};
|
65
56
|
hideDynamicGroupSelection: {
|
66
57
|
type: import("vue").PropType<boolean>;
|
@@ -125,6 +116,10 @@ declare const _default: {
|
|
125
116
|
type: import("vue").PropType<boolean>;
|
126
117
|
required: false;
|
127
118
|
};
|
119
|
+
showSelectedIdentities: {
|
120
|
+
type: import("vue").PropType<boolean>;
|
121
|
+
required: false;
|
122
|
+
};
|
128
123
|
disabled: {
|
129
124
|
type: import("vue").PropType<boolean>;
|
130
125
|
required: false;
|
@@ -170,7 +165,7 @@ declare const _default: {
|
|
170
165
|
}>> & {
|
171
166
|
"onUpdate:modelValue"?: (value: Identity[]) => any;
|
172
167
|
onDoc$?: (description?: string) => any;
|
173
|
-
},
|
168
|
+
}, never>;
|
174
169
|
$attrs: {
|
175
170
|
[x: string]: unknown;
|
176
171
|
};
|
@@ -185,21 +180,17 @@ declare const _default: {
|
|
185
180
|
$emit: ((event: "doc$", description?: string) => void) & ((event: "update:modelValue", value: Identity[]) => void);
|
186
181
|
$el: any;
|
187
182
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
188
|
-
|
189
|
-
type:
|
190
|
-
|
191
|
-
};
|
192
|
-
identityStore: {
|
193
|
-
type: import("vue").PropType<IIdentityPickerStore>;
|
194
|
-
default: any;
|
183
|
+
permissionEnabled: {
|
184
|
+
type: import("vue").PropType<BoolFilter>;
|
185
|
+
required: false;
|
195
186
|
};
|
196
187
|
emailEnabled: {
|
197
188
|
type: import("vue").PropType<BoolFilter>;
|
198
|
-
|
189
|
+
required: false;
|
199
190
|
};
|
200
|
-
|
201
|
-
type: import("vue").PropType<
|
202
|
-
|
191
|
+
identityStore: {
|
192
|
+
type: import("vue").PropType<IIdentityPickerStore>;
|
193
|
+
required: false;
|
203
194
|
};
|
204
195
|
hideDynamicGroupSelection: {
|
205
196
|
type: import("vue").PropType<boolean>;
|
@@ -264,6 +255,10 @@ declare const _default: {
|
|
264
255
|
type: import("vue").PropType<boolean>;
|
265
256
|
required: false;
|
266
257
|
};
|
258
|
+
showSelectedIdentities: {
|
259
|
+
type: import("vue").PropType<boolean>;
|
260
|
+
required: false;
|
261
|
+
};
|
267
262
|
disabled: {
|
268
263
|
type: import("vue").PropType<boolean>;
|
269
264
|
required: false;
|
@@ -314,12 +309,7 @@ declare const _default: {
|
|
314
309
|
doc$(description?: string): {
|
315
310
|
"update:modelValue": (value: Identity[]) => true;
|
316
311
|
};
|
317
|
-
}, string, {
|
318
|
-
identityStore: IIdentityPickerStore;
|
319
|
-
emailEnabled: BoolFilter;
|
320
|
-
permissionEnabled: BoolFilter;
|
321
|
-
showSelectedIdentities: boolean;
|
322
|
-
}, {}, string, {}> & {
|
312
|
+
}, string, {}, {}, string, {}> & {
|
323
313
|
beforeCreate?: (() => void) | (() => void)[];
|
324
314
|
created?: (() => void) | (() => void)[];
|
325
315
|
beforeMount?: (() => void) | (() => void)[];
|
@@ -340,21 +330,17 @@ declare const _default: {
|
|
340
330
|
$nextTick: typeof import("vue").nextTick;
|
341
331
|
$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;
|
342
332
|
} & Readonly<import("vue").ExtractPropTypes<{
|
343
|
-
|
344
|
-
type:
|
345
|
-
|
346
|
-
};
|
347
|
-
identityStore: {
|
348
|
-
type: import("vue").PropType<IIdentityPickerStore>;
|
349
|
-
default: any;
|
333
|
+
permissionEnabled: {
|
334
|
+
type: import("vue").PropType<BoolFilter>;
|
335
|
+
required: false;
|
350
336
|
};
|
351
337
|
emailEnabled: {
|
352
338
|
type: import("vue").PropType<BoolFilter>;
|
353
|
-
|
339
|
+
required: false;
|
354
340
|
};
|
355
|
-
|
356
|
-
type: import("vue").PropType<
|
357
|
-
|
341
|
+
identityStore: {
|
342
|
+
type: import("vue").PropType<IIdentityPickerStore>;
|
343
|
+
required: false;
|
358
344
|
};
|
359
345
|
hideDynamicGroupSelection: {
|
360
346
|
type: import("vue").PropType<boolean>;
|
@@ -419,6 +405,10 @@ declare const _default: {
|
|
419
405
|
type: import("vue").PropType<boolean>;
|
420
406
|
required: false;
|
421
407
|
};
|
408
|
+
showSelectedIdentities: {
|
409
|
+
type: import("vue").PropType<boolean>;
|
410
|
+
required: false;
|
411
|
+
};
|
422
412
|
disabled: {
|
423
413
|
type: import("vue").PropType<boolean>;
|
424
414
|
required: false;
|
@@ -469,21 +459,17 @@ declare const _default: {
|
|
469
459
|
__isTeleport?: never;
|
470
460
|
__isSuspense?: never;
|
471
461
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
472
|
-
|
473
|
-
type:
|
474
|
-
|
475
|
-
};
|
476
|
-
identityStore: {
|
477
|
-
type: import("vue").PropType<IIdentityPickerStore>;
|
478
|
-
default: any;
|
462
|
+
permissionEnabled: {
|
463
|
+
type: import("vue").PropType<BoolFilter>;
|
464
|
+
required: false;
|
479
465
|
};
|
480
466
|
emailEnabled: {
|
481
467
|
type: import("vue").PropType<BoolFilter>;
|
482
|
-
|
468
|
+
required: false;
|
483
469
|
};
|
484
|
-
|
485
|
-
type: import("vue").PropType<
|
486
|
-
|
470
|
+
identityStore: {
|
471
|
+
type: import("vue").PropType<IIdentityPickerStore>;
|
472
|
+
required: false;
|
487
473
|
};
|
488
474
|
hideDynamicGroupSelection: {
|
489
475
|
type: import("vue").PropType<boolean>;
|
@@ -548,6 +534,10 @@ declare const _default: {
|
|
548
534
|
type: import("vue").PropType<boolean>;
|
549
535
|
required: false;
|
550
536
|
};
|
537
|
+
showSelectedIdentities: {
|
538
|
+
type: import("vue").PropType<boolean>;
|
539
|
+
required: false;
|
540
|
+
};
|
551
541
|
disabled: {
|
552
542
|
type: import("vue").PropType<boolean>;
|
553
543
|
required: false;
|
@@ -598,12 +588,7 @@ declare const _default: {
|
|
598
588
|
doc$(description?: string): {
|
599
589
|
"update:modelValue": (value: Identity[]) => true;
|
600
590
|
};
|
601
|
-
}, string, {
|
602
|
-
identityStore: IIdentityPickerStore;
|
603
|
-
emailEnabled: BoolFilter;
|
604
|
-
permissionEnabled: BoolFilter;
|
605
|
-
showSelectedIdentities: boolean;
|
606
|
-
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
591
|
+
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
607
592
|
propsDefinition: Omit<Readonly<{} & {
|
608
593
|
filter?: (identities: IResolvedIdentity[]) => IResolvedIdentity[];
|
609
594
|
label?: string;
|
@@ -1,17 +1,43 @@
|
|
1
|
+
import { Func } from "@omnia/fx-models";
|
2
|
+
import { VNodeChild } from "vue";
|
1
3
|
declare const _default: {
|
2
4
|
new (...args: any[]): {
|
3
5
|
$: import("vue").ComponentInternalInstance;
|
4
6
|
$data: {};
|
5
|
-
$props: Partial<{
|
7
|
+
$props: Partial<{
|
8
|
+
container?: any;
|
9
|
+
blueprint?: any;
|
10
|
+
colorSchemaType?: any;
|
11
|
+
blueprintType?: any;
|
12
|
+
colors?: any;
|
13
|
+
}> & Omit<{
|
14
|
+
readonly container?: any;
|
15
|
+
readonly blueprint?: any;
|
16
|
+
readonly colorSchemaType?: any;
|
17
|
+
readonly blueprintType?: any;
|
18
|
+
readonly colors?: any;
|
6
19
|
readonly text?: string;
|
7
20
|
readonly label?: boolean;
|
8
21
|
readonly size?: "small" | "default" | "large" | "x-large" | "x-small";
|
9
22
|
readonly color?: string;
|
10
23
|
readonly disabled?: boolean;
|
24
|
+
readonly "v-slots"?: {
|
25
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
26
|
+
} & {
|
27
|
+
prependAvatar?: Func<[VNodeChild]>;
|
28
|
+
appendAvatar?: Func<[VNodeChild]>;
|
29
|
+
};
|
30
|
+
readonly toned?: boolean;
|
11
31
|
readonly gradient?: boolean;
|
12
32
|
readonly closable?: boolean;
|
13
|
-
"onClick:close"?: () => any;
|
33
|
+
"onClick:close"?: (e: MouseEvent) => any;
|
14
34
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
35
|
+
"v-slots": import("vue").Prop<{
|
36
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
37
|
+
} & {
|
38
|
+
prependAvatar?: Func<[VNodeChild]>;
|
39
|
+
appendAvatar?: Func<[VNodeChild]>;
|
40
|
+
}>;
|
15
41
|
disabled: {
|
16
42
|
type: import("vue").PropType<boolean>;
|
17
43
|
required: false;
|
@@ -32,12 +58,20 @@ declare const _default: {
|
|
32
58
|
color: {
|
33
59
|
type: import("vue").PropType<string>;
|
34
60
|
};
|
61
|
+
toned: {
|
62
|
+
type: import("vue").PropType<boolean>;
|
63
|
+
};
|
64
|
+
colorSchemaType?: any;
|
65
|
+
container?: any;
|
66
|
+
colors?: any;
|
67
|
+
blueprintType?: any;
|
68
|
+
blueprint?: any;
|
35
69
|
gradient: {
|
36
70
|
type: import("vue").PropType<boolean>;
|
37
71
|
};
|
38
72
|
}>> & {
|
39
|
-
"onClick:close"?: () => any;
|
40
|
-
},
|
73
|
+
"onClick:close"?: (e: MouseEvent) => any;
|
74
|
+
}, "container" | "blueprint" | "colorSchemaType" | "blueprintType" | "colors">;
|
41
75
|
$attrs: {
|
42
76
|
[x: string]: unknown;
|
43
77
|
};
|
@@ -49,9 +83,15 @@ declare const _default: {
|
|
49
83
|
}>;
|
50
84
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
51
85
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
52
|
-
$emit: (event: "click:close") => void;
|
86
|
+
$emit: (event: "click:close", e: MouseEvent) => void;
|
53
87
|
$el: any;
|
54
88
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
89
|
+
"v-slots": import("vue").Prop<{
|
90
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
91
|
+
} & {
|
92
|
+
prependAvatar?: Func<[VNodeChild]>;
|
93
|
+
appendAvatar?: Func<[VNodeChild]>;
|
94
|
+
}>;
|
55
95
|
disabled: {
|
56
96
|
type: import("vue").PropType<boolean>;
|
57
97
|
required: false;
|
@@ -72,14 +112,28 @@ declare const _default: {
|
|
72
112
|
color: {
|
73
113
|
type: import("vue").PropType<string>;
|
74
114
|
};
|
115
|
+
toned: {
|
116
|
+
type: import("vue").PropType<boolean>;
|
117
|
+
};
|
118
|
+
colorSchemaType?: any;
|
119
|
+
container?: any;
|
120
|
+
colors?: any;
|
121
|
+
blueprintType?: any;
|
122
|
+
blueprint?: any;
|
75
123
|
gradient: {
|
76
124
|
type: import("vue").PropType<boolean>;
|
77
125
|
};
|
78
126
|
}>> & {
|
79
|
-
"onClick:close"?: () => any;
|
127
|
+
"onClick:close"?: (e: MouseEvent) => any;
|
80
128
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
81
|
-
"click:close": () => true;
|
82
|
-
}, string, {
|
129
|
+
"click:close": (e: MouseEvent) => true;
|
130
|
+
}, string, {
|
131
|
+
container?: any;
|
132
|
+
blueprint?: any;
|
133
|
+
colorSchemaType?: any;
|
134
|
+
blueprintType?: any;
|
135
|
+
colors?: any;
|
136
|
+
}, {}, string, {}> & {
|
83
137
|
beforeCreate?: (() => void) | (() => void)[];
|
84
138
|
created?: (() => void) | (() => void)[];
|
85
139
|
beforeMount?: (() => void) | (() => void)[];
|
@@ -100,6 +154,12 @@ declare const _default: {
|
|
100
154
|
$nextTick: typeof import("vue").nextTick;
|
101
155
|
$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;
|
102
156
|
} & Readonly<import("vue").ExtractPropTypes<{
|
157
|
+
"v-slots": import("vue").Prop<{
|
158
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
159
|
+
} & {
|
160
|
+
prependAvatar?: Func<[VNodeChild]>;
|
161
|
+
appendAvatar?: Func<[VNodeChild]>;
|
162
|
+
}>;
|
103
163
|
disabled: {
|
104
164
|
type: import("vue").PropType<boolean>;
|
105
165
|
required: false;
|
@@ -120,16 +180,30 @@ declare const _default: {
|
|
120
180
|
color: {
|
121
181
|
type: import("vue").PropType<string>;
|
122
182
|
};
|
183
|
+
toned: {
|
184
|
+
type: import("vue").PropType<boolean>;
|
185
|
+
};
|
186
|
+
colorSchemaType?: any;
|
187
|
+
container?: any;
|
188
|
+
colors?: any;
|
189
|
+
blueprintType?: any;
|
190
|
+
blueprint?: any;
|
123
191
|
gradient: {
|
124
192
|
type: import("vue").PropType<boolean>;
|
125
193
|
};
|
126
194
|
}>> & {
|
127
|
-
"onClick:close"?: () => any;
|
195
|
+
"onClick:close"?: (e: MouseEvent) => any;
|
128
196
|
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
129
197
|
__isFragment?: never;
|
130
198
|
__isTeleport?: never;
|
131
199
|
__isSuspense?: never;
|
132
200
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
201
|
+
"v-slots": import("vue").Prop<{
|
202
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
203
|
+
} & {
|
204
|
+
prependAvatar?: Func<[VNodeChild]>;
|
205
|
+
appendAvatar?: Func<[VNodeChild]>;
|
206
|
+
}>;
|
133
207
|
disabled: {
|
134
208
|
type: import("vue").PropType<boolean>;
|
135
209
|
required: false;
|
@@ -150,24 +224,51 @@ declare const _default: {
|
|
150
224
|
color: {
|
151
225
|
type: import("vue").PropType<string>;
|
152
226
|
};
|
227
|
+
toned: {
|
228
|
+
type: import("vue").PropType<boolean>;
|
229
|
+
};
|
230
|
+
colorSchemaType?: any;
|
231
|
+
container?: any;
|
232
|
+
colors?: any;
|
233
|
+
blueprintType?: any;
|
234
|
+
blueprint?: any;
|
153
235
|
gradient: {
|
154
236
|
type: import("vue").PropType<boolean>;
|
155
237
|
};
|
156
238
|
}>> & {
|
157
|
-
"onClick:close"?: () => any;
|
239
|
+
"onClick:close"?: (e: MouseEvent) => any;
|
158
240
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
159
|
-
"click:close": () => true;
|
160
|
-
}, string, {
|
161
|
-
|
241
|
+
"click:close": (e: MouseEvent) => true;
|
242
|
+
}, string, {
|
243
|
+
container?: any;
|
244
|
+
blueprint?: any;
|
245
|
+
colorSchemaType?: any;
|
246
|
+
blueprintType?: any;
|
247
|
+
colors?: any;
|
248
|
+
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
249
|
+
propsDefinition: Omit<Readonly<{
|
250
|
+
container?: any;
|
251
|
+
blueprint?: any;
|
252
|
+
colorSchemaType?: any;
|
253
|
+
blueprintType?: any;
|
254
|
+
colors?: any;
|
255
|
+
} & {
|
162
256
|
text?: string;
|
163
257
|
label?: boolean;
|
164
258
|
size?: "small" | "default" | "large" | "x-large" | "x-small";
|
165
259
|
color?: string;
|
166
260
|
disabled?: boolean;
|
261
|
+
"v-slots"?: {
|
262
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
263
|
+
} & {
|
264
|
+
prependAvatar?: Func<[VNodeChild]>;
|
265
|
+
appendAvatar?: Func<[VNodeChild]>;
|
266
|
+
};
|
267
|
+
toned?: boolean;
|
167
268
|
gradient?: boolean;
|
168
269
|
closable?: boolean;
|
169
270
|
}>, "onClick:close"> & {
|
170
|
-
"onClick:close"?: () => any;
|
271
|
+
"onClick:close"?: (e: MouseEvent) => any;
|
171
272
|
};
|
172
273
|
};
|
173
274
|
export default _default;
|
@@ -3,9 +3,21 @@ declare const _default: {
|
|
3
3
|
$: import("vue").ComponentInternalInstance;
|
4
4
|
$data: {};
|
5
5
|
$props: Partial<{}> & Omit<{
|
6
|
+
readonly label?: string;
|
6
7
|
readonly class?: string;
|
7
8
|
readonly variant?: "default" | "prominent";
|
9
|
+
readonly toned?: boolean;
|
8
10
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
11
|
+
toned: {
|
12
|
+
type: import("vue").PropType<boolean>;
|
13
|
+
} & {
|
14
|
+
type: import("vue").PropType<boolean>;
|
15
|
+
};
|
16
|
+
label: {
|
17
|
+
type: import("vue").PropType<string>;
|
18
|
+
} & {
|
19
|
+
type: import("vue").PropType<string>;
|
20
|
+
};
|
9
21
|
variant: {
|
10
22
|
type: import("vue").PropType<"default" | "prominent">;
|
11
23
|
} & {
|
@@ -31,6 +43,16 @@ declare const _default: {
|
|
31
43
|
$emit: (event: string, ...args: any[]) => void;
|
32
44
|
$el: any;
|
33
45
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
46
|
+
toned: {
|
47
|
+
type: import("vue").PropType<boolean>;
|
48
|
+
} & {
|
49
|
+
type: import("vue").PropType<boolean>;
|
50
|
+
};
|
51
|
+
label: {
|
52
|
+
type: import("vue").PropType<string>;
|
53
|
+
} & {
|
54
|
+
type: import("vue").PropType<string>;
|
55
|
+
};
|
34
56
|
variant: {
|
35
57
|
type: import("vue").PropType<"default" | "prominent">;
|
36
58
|
} & {
|
@@ -62,6 +84,16 @@ declare const _default: {
|
|
62
84
|
$nextTick: typeof import("vue").nextTick;
|
63
85
|
$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;
|
64
86
|
} & Readonly<import("vue").ExtractPropTypes<{
|
87
|
+
toned: {
|
88
|
+
type: import("vue").PropType<boolean>;
|
89
|
+
} & {
|
90
|
+
type: import("vue").PropType<boolean>;
|
91
|
+
};
|
92
|
+
label: {
|
93
|
+
type: import("vue").PropType<string>;
|
94
|
+
} & {
|
95
|
+
type: import("vue").PropType<string>;
|
96
|
+
};
|
65
97
|
variant: {
|
66
98
|
type: import("vue").PropType<"default" | "prominent">;
|
67
99
|
} & {
|
@@ -77,6 +109,16 @@ declare const _default: {
|
|
77
109
|
__isTeleport?: never;
|
78
110
|
__isSuspense?: never;
|
79
111
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
112
|
+
toned: {
|
113
|
+
type: import("vue").PropType<boolean>;
|
114
|
+
} & {
|
115
|
+
type: import("vue").PropType<boolean>;
|
116
|
+
};
|
117
|
+
label: {
|
118
|
+
type: import("vue").PropType<string>;
|
119
|
+
} & {
|
120
|
+
type: import("vue").PropType<string>;
|
121
|
+
};
|
80
122
|
variant: {
|
81
123
|
type: import("vue").PropType<"default" | "prominent">;
|
82
124
|
} & {
|
@@ -89,8 +131,10 @@ declare const _default: {
|
|
89
131
|
};
|
90
132
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
91
133
|
propsDefinition: Omit<Readonly<{} & {
|
134
|
+
label?: string;
|
92
135
|
class?: string;
|
93
136
|
variant?: "default" | "prominent";
|
137
|
+
toned?: boolean;
|
94
138
|
}>, never>;
|
95
139
|
};
|
96
140
|
export default _default;
|
@@ -0,0 +1,119 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
new (...args: any[]): {
|
3
|
+
$: import("vue").ComponentInternalInstance;
|
4
|
+
$data: {};
|
5
|
+
$props: Partial<{
|
6
|
+
container?: any;
|
7
|
+
blueprint?: any;
|
8
|
+
colorSchemaType?: any;
|
9
|
+
blueprintType?: any;
|
10
|
+
colors?: any;
|
11
|
+
}> & Omit<{
|
12
|
+
readonly container?: any;
|
13
|
+
readonly blueprint?: any;
|
14
|
+
readonly colorSchemaType?: any;
|
15
|
+
readonly blueprintType?: any;
|
16
|
+
readonly colors?: any;
|
17
|
+
readonly class?: String | String[];
|
18
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
19
|
+
class: {
|
20
|
+
type: import("vue").PropType<String | String[]>;
|
21
|
+
required: boolean;
|
22
|
+
};
|
23
|
+
colorSchemaType?: any;
|
24
|
+
container?: any;
|
25
|
+
colors?: any;
|
26
|
+
blueprintType?: any;
|
27
|
+
blueprint?: any;
|
28
|
+
}>>, "container" | "blueprint" | "colorSchemaType" | "blueprintType" | "colors">;
|
29
|
+
$attrs: {
|
30
|
+
[x: string]: unknown;
|
31
|
+
};
|
32
|
+
$refs: {
|
33
|
+
[x: string]: unknown;
|
34
|
+
};
|
35
|
+
$slots: Readonly<{
|
36
|
+
[name: string]: import("vue").Slot<any>;
|
37
|
+
}>;
|
38
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
39
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
40
|
+
$emit: (event: string, ...args: any[]) => void;
|
41
|
+
$el: any;
|
42
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
43
|
+
class: {
|
44
|
+
type: import("vue").PropType<String | String[]>;
|
45
|
+
required: boolean;
|
46
|
+
};
|
47
|
+
colorSchemaType?: any;
|
48
|
+
container?: any;
|
49
|
+
colors?: any;
|
50
|
+
blueprintType?: any;
|
51
|
+
blueprint?: any;
|
52
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
53
|
+
container?: any;
|
54
|
+
blueprint?: any;
|
55
|
+
colorSchemaType?: any;
|
56
|
+
blueprintType?: any;
|
57
|
+
colors?: any;
|
58
|
+
}, {}, string, {}> & {
|
59
|
+
beforeCreate?: (() => void) | (() => void)[];
|
60
|
+
created?: (() => void) | (() => void)[];
|
61
|
+
beforeMount?: (() => void) | (() => void)[];
|
62
|
+
mounted?: (() => void) | (() => void)[];
|
63
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
64
|
+
updated?: (() => void) | (() => void)[];
|
65
|
+
activated?: (() => void) | (() => void)[];
|
66
|
+
deactivated?: (() => void) | (() => void)[];
|
67
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
68
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
69
|
+
destroyed?: (() => void) | (() => void)[];
|
70
|
+
unmounted?: (() => void) | (() => void)[];
|
71
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
72
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
73
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
74
|
+
};
|
75
|
+
$forceUpdate: () => void;
|
76
|
+
$nextTick: typeof import("vue").nextTick;
|
77
|
+
$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;
|
78
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
79
|
+
class: {
|
80
|
+
type: import("vue").PropType<String | String[]>;
|
81
|
+
required: boolean;
|
82
|
+
};
|
83
|
+
colorSchemaType?: any;
|
84
|
+
container?: any;
|
85
|
+
colors?: any;
|
86
|
+
blueprintType?: any;
|
87
|
+
blueprint?: any;
|
88
|
+
}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
89
|
+
__isFragment?: never;
|
90
|
+
__isTeleport?: never;
|
91
|
+
__isSuspense?: never;
|
92
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
93
|
+
class: {
|
94
|
+
type: import("vue").PropType<String | String[]>;
|
95
|
+
required: boolean;
|
96
|
+
};
|
97
|
+
colorSchemaType?: any;
|
98
|
+
container?: any;
|
99
|
+
colors?: any;
|
100
|
+
blueprintType?: any;
|
101
|
+
blueprint?: any;
|
102
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
103
|
+
container?: any;
|
104
|
+
blueprint?: any;
|
105
|
+
colorSchemaType?: any;
|
106
|
+
blueprintType?: any;
|
107
|
+
colors?: any;
|
108
|
+
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
109
|
+
propsDefinition: Omit<Readonly<{
|
110
|
+
container?: any;
|
111
|
+
blueprint?: any;
|
112
|
+
colorSchemaType?: any;
|
113
|
+
blueprintType?: any;
|
114
|
+
colors?: any;
|
115
|
+
} & {
|
116
|
+
class?: String | String[];
|
117
|
+
}>, never>;
|
118
|
+
};
|
119
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const ExampleComponents: import("@omnia/fx/ux").DocumentationSpec;
|