@omnia/fx 8.0.114-dev → 8.0.115-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/shared/models/theming/ComponentDefinitions.d.ts +15 -6
- package/internal-do-not-import-from-here/shared/models/theming/TypographyDefinition.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/ComponentTypings.d.ts +6 -4
- package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/ButtonStylePicker.d.ts +66 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/docs/SampleComponent.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/iconstylepicker/IconStylePicker.d.ts +70 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/iconstylepicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/iconstylepicker/docs/SampleComponent.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/iconstylepicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/textstylepicker/TextStylePicker.d.ts +66 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/textstylepicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/textstylepicker/docs/SampleComponent.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/textstylepicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/typographypicker/TypographyPicker.d.ts +64 -409
- package/internal-do-not-import-from-here/ux/borderpicker/BorderPicker.d.ts +63 -150
- package/internal-do-not-import-from-here/ux/enterpriseglossary/EnterpriseGlossaryPicker.d.ts +63 -14
- package/internal-do-not-import-from-here/ux/enterpriseglossary/IEnterpriseGlossaryPicker.d.ts +0 -14
- package/internal-do-not-import-from-here/ux/fillpicker/FillPicker.d.ts +64 -119
- package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/journey/JourneyMenu.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/journey/use/UseBlade.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/jsonexportimport/ExportImport.d.ts +65 -0
- package/internal-do-not-import-from-here/ux/jsonexportimport/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/jsonexportimport/docs/SampleComponent.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/jsonexportimport/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +35 -9
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +31 -10
- package/internal-do-not-import-from-here/ux/oxide/notification/Notification.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/radio/Radio.d.ts +18 -0
- package/internal-do-not-import-from-here/ux/oxide/rating/Rating.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +22 -1
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.css.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/ExampleComponentsMenu.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/SampleButtons.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/SampleComponentMenu.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/SampleVariants.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/persona/Persona.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseStyling.d.ts +1049 -15
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Blueprints.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Typography.d.ts +3 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +69 -0
- package/package.json +2 -2
|
@@ -110,10 +110,10 @@ declare const JourneyBladeComponent: {
|
|
|
110
110
|
type: import("vue").PropType<boolean>;
|
|
111
111
|
};
|
|
112
112
|
size: {
|
|
113
|
-
type: import("vue").PropType<"small" | "
|
|
113
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
114
114
|
required: false;
|
|
115
115
|
} & {
|
|
116
|
-
type: import("vue").PropType<"small" | "
|
|
116
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
117
117
|
required: false;
|
|
118
118
|
};
|
|
119
119
|
id: {
|
|
@@ -252,10 +252,10 @@ declare const JourneyBladeComponent: {
|
|
|
252
252
|
type: import("vue").PropType<boolean>;
|
|
253
253
|
};
|
|
254
254
|
size: {
|
|
255
|
-
type: import("vue").PropType<"small" | "
|
|
255
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
256
256
|
required: false;
|
|
257
257
|
} & {
|
|
258
|
-
type: import("vue").PropType<"small" | "
|
|
258
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
259
259
|
required: false;
|
|
260
260
|
};
|
|
261
261
|
id: {
|
|
@@ -392,10 +392,10 @@ declare const JourneyBladeComponent: {
|
|
|
392
392
|
type: import("vue").PropType<boolean>;
|
|
393
393
|
};
|
|
394
394
|
size: {
|
|
395
|
-
type: import("vue").PropType<"small" | "
|
|
395
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
396
396
|
required: false;
|
|
397
397
|
} & {
|
|
398
|
-
type: import("vue").PropType<"small" | "
|
|
398
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
399
399
|
required: false;
|
|
400
400
|
};
|
|
401
401
|
id: {
|
|
@@ -529,10 +529,10 @@ declare const JourneyBladeComponent: {
|
|
|
529
529
|
type: import("vue").PropType<boolean>;
|
|
530
530
|
};
|
|
531
531
|
size: {
|
|
532
|
-
type: import("vue").PropType<"small" | "
|
|
532
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
533
533
|
required: false;
|
|
534
534
|
} & {
|
|
535
|
-
type: import("vue").PropType<"small" | "
|
|
535
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
536
536
|
required: false;
|
|
537
537
|
};
|
|
538
538
|
id: {
|
|
@@ -574,7 +574,7 @@ declare const JourneyBladeComponent: {
|
|
|
574
574
|
icon?: IIcon;
|
|
575
575
|
delete?: boolean;
|
|
576
576
|
id?: GuidValue;
|
|
577
|
-
size?: "small" | "
|
|
577
|
+
size?: "small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace";
|
|
578
578
|
disabled?: boolean;
|
|
579
579
|
settings?: boolean;
|
|
580
580
|
"v-slots"?: {
|
|
@@ -25,10 +25,10 @@ declare const _default: {
|
|
|
25
25
|
type: import("vue").PropType<IIcon>;
|
|
26
26
|
};
|
|
27
27
|
size: {
|
|
28
|
-
type: import("vue").PropType<"small" | "
|
|
28
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
29
29
|
required: false;
|
|
30
30
|
} & {
|
|
31
|
-
type: import("vue").PropType<"small" | "
|
|
31
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
32
32
|
required: false;
|
|
33
33
|
};
|
|
34
34
|
id: {
|
|
@@ -71,10 +71,10 @@ declare const _default: {
|
|
|
71
71
|
type: import("vue").PropType<IIcon>;
|
|
72
72
|
};
|
|
73
73
|
size: {
|
|
74
|
-
type: import("vue").PropType<"small" | "
|
|
74
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
75
75
|
required: false;
|
|
76
76
|
} & {
|
|
77
|
-
type: import("vue").PropType<"small" | "
|
|
77
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
78
78
|
required: false;
|
|
79
79
|
};
|
|
80
80
|
id: {
|
|
@@ -121,10 +121,10 @@ declare const _default: {
|
|
|
121
121
|
type: import("vue").PropType<IIcon>;
|
|
122
122
|
};
|
|
123
123
|
size: {
|
|
124
|
-
type: import("vue").PropType<"small" | "
|
|
124
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
125
125
|
required: false;
|
|
126
126
|
} & {
|
|
127
|
-
type: import("vue").PropType<"small" | "
|
|
127
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
128
128
|
required: false;
|
|
129
129
|
};
|
|
130
130
|
id: {
|
|
@@ -168,10 +168,10 @@ declare const _default: {
|
|
|
168
168
|
type: import("vue").PropType<IIcon>;
|
|
169
169
|
};
|
|
170
170
|
size: {
|
|
171
|
-
type: import("vue").PropType<"small" | "
|
|
171
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
172
172
|
required: false;
|
|
173
173
|
} & {
|
|
174
|
-
type: import("vue").PropType<"small" | "
|
|
174
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
175
175
|
required: false;
|
|
176
176
|
};
|
|
177
177
|
id: {
|
|
@@ -195,7 +195,7 @@ declare const _default: {
|
|
|
195
195
|
title?: string;
|
|
196
196
|
icon?: IIcon;
|
|
197
197
|
id?: GuidValue;
|
|
198
|
-
size?: "small" | "
|
|
198
|
+
size?: "small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace";
|
|
199
199
|
items?: JourneyMenuItem[];
|
|
200
200
|
"v-slots"?: {
|
|
201
201
|
default?: import("../DefineVueTypings").Slot<any[]>;
|
|
@@ -105,10 +105,10 @@ export declare function useBlade(bladeId: GuidValue): {
|
|
|
105
105
|
type: import("vue").PropType<boolean>;
|
|
106
106
|
};
|
|
107
107
|
size: {
|
|
108
|
-
type: import("vue").PropType<"small" | "
|
|
108
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
109
109
|
required: false;
|
|
110
110
|
} & {
|
|
111
|
-
type: import("vue").PropType<"small" | "
|
|
111
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
112
112
|
required: false;
|
|
113
113
|
};
|
|
114
114
|
id: {
|
|
@@ -247,10 +247,10 @@ export declare function useBlade(bladeId: GuidValue): {
|
|
|
247
247
|
type: import("vue").PropType<boolean>;
|
|
248
248
|
};
|
|
249
249
|
size: {
|
|
250
|
-
type: import("vue").PropType<"small" | "
|
|
250
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
251
251
|
required: false;
|
|
252
252
|
} & {
|
|
253
|
-
type: import("vue").PropType<"small" | "
|
|
253
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
254
254
|
required: false;
|
|
255
255
|
};
|
|
256
256
|
id: {
|
|
@@ -387,10 +387,10 @@ export declare function useBlade(bladeId: GuidValue): {
|
|
|
387
387
|
type: import("vue").PropType<boolean>;
|
|
388
388
|
};
|
|
389
389
|
size: {
|
|
390
|
-
type: import("vue").PropType<"small" | "
|
|
390
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
391
391
|
required: false;
|
|
392
392
|
} & {
|
|
393
|
-
type: import("vue").PropType<"small" | "
|
|
393
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
394
394
|
required: false;
|
|
395
395
|
};
|
|
396
396
|
id: {
|
|
@@ -524,10 +524,10 @@ export declare function useBlade(bladeId: GuidValue): {
|
|
|
524
524
|
type: import("vue").PropType<boolean>;
|
|
525
525
|
};
|
|
526
526
|
size: {
|
|
527
|
-
type: import("vue").PropType<"small" | "
|
|
527
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
528
528
|
required: false;
|
|
529
529
|
} & {
|
|
530
|
-
type: import("vue").PropType<"small" | "
|
|
530
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace">;
|
|
531
531
|
required: false;
|
|
532
532
|
};
|
|
533
533
|
id: {
|
|
@@ -569,7 +569,7 @@ export declare function useBlade(bladeId: GuidValue): {
|
|
|
569
569
|
icon?: import("@omnia/fx-models").IIcon;
|
|
570
570
|
delete?: boolean;
|
|
571
571
|
id?: GuidValue;
|
|
572
|
-
size?: "small" | "
|
|
572
|
+
size?: "small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "fullScreen" | "fillSpace";
|
|
573
573
|
disabled?: boolean;
|
|
574
574
|
settings?: boolean;
|
|
575
575
|
"v-slots"?: {
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { DefineSlot } from "@omnia/fx/ux";
|
|
2
|
+
import { VNodeChild } from "vue";
|
|
3
|
+
declare const _default: (props: {
|
|
4
|
+
"v-model"?: Object;
|
|
5
|
+
} & {
|
|
6
|
+
"onUpdate:modelValue"?: (value: Object) => void;
|
|
7
|
+
} & {
|
|
8
|
+
modelValue?: Object;
|
|
9
|
+
} & Omit<{}, "v-model" | "onUpdate:modelValue" | "modelValue"> & {
|
|
10
|
+
"v-slots"?: {
|
|
11
|
+
default?: import("vue").Slot;
|
|
12
|
+
} & DefineSlot<"activator", () => VNodeChild>;
|
|
13
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">) => {
|
|
14
|
+
$: import("vue").ComponentInternalInstance;
|
|
15
|
+
$data: {};
|
|
16
|
+
$props: {};
|
|
17
|
+
$attrs: {
|
|
18
|
+
[x: string]: unknown;
|
|
19
|
+
};
|
|
20
|
+
$refs: {
|
|
21
|
+
[x: string]: unknown;
|
|
22
|
+
};
|
|
23
|
+
$slots: Readonly<{
|
|
24
|
+
[name: string]: import("vue").Slot<any>;
|
|
25
|
+
}>;
|
|
26
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
|
27
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
|
28
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
29
|
+
$el: any;
|
|
30
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
|
31
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
32
|
+
created?: (() => void) | (() => void)[];
|
|
33
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
34
|
+
mounted?: (() => void) | (() => void)[];
|
|
35
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
36
|
+
updated?: (() => void) | (() => void)[];
|
|
37
|
+
activated?: (() => void) | (() => void)[];
|
|
38
|
+
deactivated?: (() => void) | (() => void)[];
|
|
39
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
40
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
41
|
+
destroyed?: (() => void) | (() => void)[];
|
|
42
|
+
unmounted?: (() => void) | (() => void)[];
|
|
43
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
44
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
45
|
+
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)[];
|
|
46
|
+
};
|
|
47
|
+
$forceUpdate: () => void;
|
|
48
|
+
$nextTick: typeof import("vue").nextTick;
|
|
49
|
+
$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;
|
|
50
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
51
|
+
propsDefinition: {
|
|
52
|
+
"v-model"?: Object;
|
|
53
|
+
} & {
|
|
54
|
+
"onUpdate:modelValue"?: (value: Object) => void;
|
|
55
|
+
} & {
|
|
56
|
+
modelValue?: Object;
|
|
57
|
+
} & {
|
|
58
|
+
"v-slots"?: {
|
|
59
|
+
default?: import("vue").Slot;
|
|
60
|
+
} & DefineSlot<"activator", () => VNodeChild>;
|
|
61
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">;
|
|
62
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
63
|
+
[key: string]: any;
|
|
64
|
+
}>;
|
|
65
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ExampleComponents: import("@omnia/fx/ux").DocumentationSpec;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
3
|
+
P: {};
|
|
4
|
+
B: {};
|
|
5
|
+
D: {};
|
|
6
|
+
C: {};
|
|
7
|
+
M: {};
|
|
8
|
+
Defaults: {};
|
|
9
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
|
|
10
|
+
__isFragment?: never;
|
|
11
|
+
__isTeleport?: never;
|
|
12
|
+
__isSuspense?: never;
|
|
13
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
14
|
+
propsDefinition: Omit<Readonly<{} & {}>, never>;
|
|
15
|
+
};
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const spec: import("@omnia/fx/ux").DocumentationSpec;
|
|
@@ -12,9 +12,9 @@ declare const _default: {
|
|
|
12
12
|
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer">;
|
|
13
13
|
};
|
|
14
14
|
size: {
|
|
15
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
15
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
16
16
|
} & {
|
|
17
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
17
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
18
18
|
};
|
|
19
19
|
toned: {
|
|
20
20
|
type: import("vue").PropType<boolean>;
|
|
@@ -46,9 +46,9 @@ declare const _default: {
|
|
|
46
46
|
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer">;
|
|
47
47
|
};
|
|
48
48
|
size: {
|
|
49
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
49
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
50
50
|
} & {
|
|
51
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
51
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
52
52
|
};
|
|
53
53
|
toned: {
|
|
54
54
|
type: import("vue").PropType<boolean>;
|
|
@@ -91,9 +91,9 @@ declare const _default: {
|
|
|
91
91
|
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer">;
|
|
92
92
|
};
|
|
93
93
|
size: {
|
|
94
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
94
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
95
95
|
} & {
|
|
96
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
96
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
97
97
|
};
|
|
98
98
|
toned: {
|
|
99
99
|
type: import("vue").PropType<boolean>;
|
|
@@ -133,9 +133,9 @@ declare const _default: {
|
|
|
133
133
|
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer">;
|
|
134
134
|
};
|
|
135
135
|
size: {
|
|
136
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
136
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
137
137
|
} & {
|
|
138
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
138
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
139
139
|
};
|
|
140
140
|
toned: {
|
|
141
141
|
type: import("vue").PropType<boolean>;
|
|
@@ -166,7 +166,7 @@ declare const _default: {
|
|
|
166
166
|
} & {
|
|
167
167
|
color?: string;
|
|
168
168
|
class?: String | String[];
|
|
169
|
-
size?: "small" | "default" | "
|
|
169
|
+
size?: "small" | "default" | "large" | "x-large" | "x-small";
|
|
170
170
|
gradient?: boolean;
|
|
171
171
|
toned?: boolean;
|
|
172
172
|
colorType?: "base" | "onBase" | "container" | "onContainer";
|
|
@@ -64,9 +64,9 @@ declare const _default: {
|
|
|
64
64
|
type: import("vue").PropType<boolean>;
|
|
65
65
|
};
|
|
66
66
|
size: {
|
|
67
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
67
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
68
68
|
} & {
|
|
69
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
69
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
70
70
|
};
|
|
71
71
|
tooltip: {
|
|
72
72
|
type: import("vue").PropType<ButtonTooltipOptions>;
|
|
@@ -178,9 +178,9 @@ declare const _default: {
|
|
|
178
178
|
type: import("vue").PropType<boolean>;
|
|
179
179
|
};
|
|
180
180
|
size: {
|
|
181
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
181
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
182
182
|
} & {
|
|
183
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
183
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
184
184
|
};
|
|
185
185
|
tooltip: {
|
|
186
186
|
type: import("vue").PropType<ButtonTooltipOptions>;
|
|
@@ -303,9 +303,9 @@ declare const _default: {
|
|
|
303
303
|
type: import("vue").PropType<boolean>;
|
|
304
304
|
};
|
|
305
305
|
size: {
|
|
306
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
306
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
307
307
|
} & {
|
|
308
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
308
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
309
309
|
};
|
|
310
310
|
tooltip: {
|
|
311
311
|
type: import("vue").PropType<ButtonTooltipOptions>;
|
|
@@ -425,9 +425,9 @@ declare const _default: {
|
|
|
425
425
|
type: import("vue").PropType<boolean>;
|
|
426
426
|
};
|
|
427
427
|
size: {
|
|
428
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
428
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
429
429
|
} & {
|
|
430
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
430
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
431
431
|
};
|
|
432
432
|
tooltip: {
|
|
433
433
|
type: import("vue").PropType<ButtonTooltipOptions>;
|
|
@@ -492,7 +492,7 @@ declare const _default: {
|
|
|
492
492
|
class?: String | String[];
|
|
493
493
|
target?: "_blank" | "_self" | "_parent" | "_top" | "framename";
|
|
494
494
|
href?: string;
|
|
495
|
-
size?: "small" | "default" | "
|
|
495
|
+
size?: "small" | "default" | "large" | "x-large" | "x-small";
|
|
496
496
|
animation?: "flip" | "spin" | "beat" | "bounce";
|
|
497
497
|
tooltip?: ButtonTooltipOptions;
|
|
498
498
|
active?: boolean;
|
|
@@ -33,9 +33,9 @@ declare const _default: {
|
|
|
33
33
|
type: import("vue").PropType<string>;
|
|
34
34
|
};
|
|
35
35
|
size: {
|
|
36
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
36
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
37
37
|
} & {
|
|
38
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
38
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
39
39
|
};
|
|
40
40
|
color: {
|
|
41
41
|
type: import("vue").PropType<string>;
|
|
@@ -91,9 +91,9 @@ declare const _default: {
|
|
|
91
91
|
type: import("vue").PropType<string>;
|
|
92
92
|
};
|
|
93
93
|
size: {
|
|
94
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
94
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
95
95
|
} & {
|
|
96
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
96
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
97
97
|
};
|
|
98
98
|
color: {
|
|
99
99
|
type: import("vue").PropType<string>;
|
|
@@ -158,9 +158,9 @@ declare const _default: {
|
|
|
158
158
|
type: import("vue").PropType<string>;
|
|
159
159
|
};
|
|
160
160
|
size: {
|
|
161
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
161
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
162
162
|
} & {
|
|
163
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
163
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
164
164
|
};
|
|
165
165
|
color: {
|
|
166
166
|
type: import("vue").PropType<string>;
|
|
@@ -222,9 +222,9 @@ declare const _default: {
|
|
|
222
222
|
type: import("vue").PropType<string>;
|
|
223
223
|
};
|
|
224
224
|
size: {
|
|
225
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
225
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
226
226
|
} & {
|
|
227
|
-
type: import("vue").PropType<"small" | "default" | "
|
|
227
|
+
type: import("vue").PropType<"small" | "default" | "large" | "x-large" | "x-small">;
|
|
228
228
|
};
|
|
229
229
|
color: {
|
|
230
230
|
type: import("vue").PropType<string>;
|
|
@@ -261,7 +261,7 @@ declare const _default: {
|
|
|
261
261
|
text?: string;
|
|
262
262
|
color?: string;
|
|
263
263
|
label?: boolean;
|
|
264
|
-
size?: "small" | "default" | "
|
|
264
|
+
size?: "small" | "default" | "large" | "x-large" | "x-small";
|
|
265
265
|
disabled?: boolean;
|
|
266
266
|
gradient?: boolean;
|
|
267
267
|
"v-slots"?: {
|
|
@@ -33,10 +33,10 @@ declare const _default: {
|
|
|
33
33
|
type: import("vue").PropType<"default" | "confirm" | "app" | "save-cancel" | "ok-cancel" | "retry">;
|
|
34
34
|
};
|
|
35
35
|
size: {
|
|
36
|
-
type: import("vue").PropType<"small" | "large" | "
|
|
36
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-small" | "full">;
|
|
37
37
|
required: false;
|
|
38
38
|
} & {
|
|
39
|
-
type: import("vue").PropType<"small" | "large" | "
|
|
39
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-small" | "full">;
|
|
40
40
|
required: false;
|
|
41
41
|
};
|
|
42
42
|
"hidden-close-button": {
|
|
@@ -71,6 +71,12 @@ declare const _default: {
|
|
|
71
71
|
navigation?: SlotNavigationType;
|
|
72
72
|
header?: Func<[VNodeChild]>;
|
|
73
73
|
}>;
|
|
74
|
+
"not-persistant": {
|
|
75
|
+
type: import("vue").PropType<boolean>;
|
|
76
|
+
};
|
|
77
|
+
notPersistant: {
|
|
78
|
+
type: import("vue").PropType<boolean>;
|
|
79
|
+
};
|
|
74
80
|
"v-model": {
|
|
75
81
|
type: import("vue").PropType<boolean>;
|
|
76
82
|
required: false;
|
|
@@ -126,10 +132,10 @@ declare const _default: {
|
|
|
126
132
|
type: import("vue").PropType<"default" | "confirm" | "app" | "save-cancel" | "ok-cancel" | "retry">;
|
|
127
133
|
};
|
|
128
134
|
size: {
|
|
129
|
-
type: import("vue").PropType<"small" | "large" | "
|
|
135
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-small" | "full">;
|
|
130
136
|
required: false;
|
|
131
137
|
} & {
|
|
132
|
-
type: import("vue").PropType<"small" | "large" | "
|
|
138
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-small" | "full">;
|
|
133
139
|
required: false;
|
|
134
140
|
};
|
|
135
141
|
"hidden-close-button": {
|
|
@@ -164,6 +170,12 @@ declare const _default: {
|
|
|
164
170
|
navigation?: SlotNavigationType;
|
|
165
171
|
header?: Func<[VNodeChild]>;
|
|
166
172
|
}>;
|
|
173
|
+
"not-persistant": {
|
|
174
|
+
type: import("vue").PropType<boolean>;
|
|
175
|
+
};
|
|
176
|
+
notPersistant: {
|
|
177
|
+
type: import("vue").PropType<boolean>;
|
|
178
|
+
};
|
|
167
179
|
"v-model": {
|
|
168
180
|
type: import("vue").PropType<boolean>;
|
|
169
181
|
required: false;
|
|
@@ -225,10 +237,10 @@ declare const _default: {
|
|
|
225
237
|
type: import("vue").PropType<"default" | "confirm" | "app" | "save-cancel" | "ok-cancel" | "retry">;
|
|
226
238
|
};
|
|
227
239
|
size: {
|
|
228
|
-
type: import("vue").PropType<"small" | "large" | "
|
|
240
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-small" | "full">;
|
|
229
241
|
required: false;
|
|
230
242
|
} & {
|
|
231
|
-
type: import("vue").PropType<"small" | "large" | "
|
|
243
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-small" | "full">;
|
|
232
244
|
required: false;
|
|
233
245
|
};
|
|
234
246
|
"hidden-close-button": {
|
|
@@ -263,6 +275,12 @@ declare const _default: {
|
|
|
263
275
|
navigation?: SlotNavigationType;
|
|
264
276
|
header?: Func<[VNodeChild]>;
|
|
265
277
|
}>;
|
|
278
|
+
"not-persistant": {
|
|
279
|
+
type: import("vue").PropType<boolean>;
|
|
280
|
+
};
|
|
281
|
+
notPersistant: {
|
|
282
|
+
type: import("vue").PropType<boolean>;
|
|
283
|
+
};
|
|
266
284
|
"v-model": {
|
|
267
285
|
type: import("vue").PropType<boolean>;
|
|
268
286
|
required: false;
|
|
@@ -321,10 +339,10 @@ declare const _default: {
|
|
|
321
339
|
type: import("vue").PropType<"default" | "confirm" | "app" | "save-cancel" | "ok-cancel" | "retry">;
|
|
322
340
|
};
|
|
323
341
|
size: {
|
|
324
|
-
type: import("vue").PropType<"small" | "large" | "
|
|
342
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-small" | "full">;
|
|
325
343
|
required: false;
|
|
326
344
|
} & {
|
|
327
|
-
type: import("vue").PropType<"small" | "large" | "
|
|
345
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-small" | "full">;
|
|
328
346
|
required: false;
|
|
329
347
|
};
|
|
330
348
|
"hidden-close-button": {
|
|
@@ -359,6 +377,12 @@ declare const _default: {
|
|
|
359
377
|
navigation?: SlotNavigationType;
|
|
360
378
|
header?: Func<[VNodeChild]>;
|
|
361
379
|
}>;
|
|
380
|
+
"not-persistant": {
|
|
381
|
+
type: import("vue").PropType<boolean>;
|
|
382
|
+
};
|
|
383
|
+
notPersistant: {
|
|
384
|
+
type: import("vue").PropType<boolean>;
|
|
385
|
+
};
|
|
362
386
|
"v-model": {
|
|
363
387
|
type: import("vue").PropType<boolean>;
|
|
364
388
|
required: false;
|
|
@@ -400,7 +424,7 @@ declare const _default: {
|
|
|
400
424
|
title?: string;
|
|
401
425
|
icon?: IIcon;
|
|
402
426
|
class?: String | String[];
|
|
403
|
-
size?: "small" | "large" | "
|
|
427
|
+
size?: "small" | "medium" | "large" | "x-small" | "full";
|
|
404
428
|
"v-model"?: boolean;
|
|
405
429
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
406
430
|
modelValue?: boolean;
|
|
@@ -415,6 +439,8 @@ declare const _default: {
|
|
|
415
439
|
header?: Func<[VNodeChild]>;
|
|
416
440
|
};
|
|
417
441
|
variant?: "default" | "confirm" | "app" | "save-cancel" | "ok-cancel" | "retry";
|
|
442
|
+
notPersistant?: boolean;
|
|
443
|
+
"not-persistant"?: boolean;
|
|
418
444
|
subTitle?: string;
|
|
419
445
|
"sub-title"?: string;
|
|
420
446
|
hiddenCloseButton?: boolean;
|