@omnia/fx 8.0.11-vnext → 8.0.12-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.
Files changed (72) hide show
  1. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
  2. package/internal-do-not-import-from-here/runtime/core/ManifestByElementLoader.d.ts +1 -1
  3. package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.d.ts +2 -6
  4. package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.js +4 -4
  5. package/internal-do-not-import-from-here/shared/models/theming/UseThemeMethods.d.ts +1 -1
  6. package/internal-do-not-import-from-here/shared/models/theming/UseThemeMethods.js +8 -31
  7. package/internal-do-not-import-from-here/ux/ComponentTypings.d.ts +11 -1
  8. package/internal-do-not-import-from-here/ux/InternalDefineWebComponent.d.ts +10 -5
  9. package/internal-do-not-import-from-here/ux/UxCore.d.ts +0 -16
  10. package/internal-do-not-import-from-here/ux/VueComponentBase.d.ts +1 -1
  11. package/internal-do-not-import-from-here/ux/app/management/tabs/instance/InstanceTab.d.ts +2 -2
  12. package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/LayoutTab.d.ts +2 -2
  13. package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/NamingPolicyTab.d.ts +2 -2
  14. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplateTab.d.ts +2 -2
  15. package/internal-do-not-import-from-here/ux/confirmdialog/IVueConfirmDialog.d.ts +1 -1
  16. package/internal-do-not-import-from-here/ux/confirmdialog/VueConfirmDialog.d.ts +1 -19
  17. package/internal-do-not-import-from-here/ux/filterengine/SelectionsArea.d.ts +2 -2
  18. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/BlockSettingsPanel.d.ts +4 -1
  19. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/SettingsPanel.css.d.ts +3 -0
  20. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/SettingsPanel.d.ts +46 -0
  21. package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +9 -10
  22. package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +10 -40
  23. package/internal-do-not-import-from-here/ux/oxide/btntoggle/ButtonToggle.d.ts +13 -26
  24. package/internal-do-not-import-from-here/ux/oxide/card/Card.d.ts +9 -22
  25. package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +85 -137
  26. package/internal-do-not-import-from-here/ux/oxide/divider/Divider.d.ts +46 -0
  27. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.css.d.ts +1 -0
  28. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.d.ts +27 -23
  29. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.d.ts +21 -31
  30. package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +27 -23
  31. package/internal-do-not-import-from-here/ux/oxide/layout/Layout.d.ts +49 -51
  32. package/internal-do-not-import-from-here/ux/oxide/list/List.d.ts +9 -22
  33. package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +10 -40
  34. package/internal-do-not-import-from-here/ux/oxide/menu/Menu.css.d.ts +3 -0
  35. package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +123 -0
  36. package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +9 -23
  37. package/internal-do-not-import-from-here/ux/oxide/panel/Panel.css.d.ts +4 -0
  38. package/internal-do-not-import-from-here/ux/oxide/panel/Panel.d.ts +172 -0
  39. package/internal-do-not-import-from-here/ux/oxide/radio/Radio.css.d.ts +3 -0
  40. package/internal-do-not-import-from-here/ux/oxide/radio/Radio.d.ts +147 -0
  41. package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.css.d.ts +3 -0
  42. package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.d.ts +133 -0
  43. package/internal-do-not-import-from-here/ux/oxide/slider/Slider.css.d.ts +3 -0
  44. package/internal-do-not-import-from-here/ux/oxide/slider/Slider.d.ts +186 -0
  45. package/internal-do-not-import-from-here/ux/oxide/switch/Switch.css.d.ts +3 -0
  46. package/internal-do-not-import-from-here/ux/oxide/switch/Switch.d.ts +147 -0
  47. package/internal-do-not-import-from-here/ux/oxide/tab/Tab.css.d.ts +4 -0
  48. package/internal-do-not-import-from-here/ux/oxide/tab/Tab.d.ts +59 -18
  49. package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.css.d.ts +3 -1
  50. package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +25 -18
  51. package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +43 -9
  52. package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +37 -21
  53. package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +51 -82
  54. package/internal-do-not-import-from-here/ux/presetupwizard/PreSetupWizard.d.ts +2 -2
  55. package/internal-do-not-import-from-here/ux/spacingpicker/SpacingPicker2.d.ts +219 -0
  56. package/internal-do-not-import-from-here/ux/statusmessageoverlay/StatusMessageOverlay.d.ts +1 -0
  57. package/internal-do-not-import-from-here/ux/theming-v2/ThemeStoreV2.d.ts +1 -1
  58. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseComponentStyling.d.ts +2 -2
  59. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseThemeStyling.d.ts +1 -15
  60. package/internal-do-not-import-from-here/ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker.d.ts +5 -5
  61. package/internal-do-not-import-from-here/ux/use/UseComponentSetup.d.ts +9 -6
  62. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronRenderers.d.ts +1 -1
  63. package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronTheming.d.ts +1 -1
  64. package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.d.ts +1 -1
  65. package/internal-do-not-import-from-here/ux/vuetify/VuetifyCore.d.ts +16 -0
  66. package/internal-do-not-import-from-here/wctypings.d.ts +14 -0
  67. package/package.json +2 -2
  68. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutSettingsPanel.d.ts +0 -27
  69. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/SectionSettingsPanel.d.ts +0 -28
  70. package/internal-do-not-import-from-here/ux/vuetify/dividers/VDivider.bundle.d.ts +0 -1
  71. /package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/{tabs → settingstabs}/TabBlockSettings.d.ts +0 -0
  72. /package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/{tabs → settingstabs}/TabLayoutSettings.d.ts +0 -0
@@ -0,0 +1,133 @@
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
6
+ "v-model": {
7
+ type: import("vue").PropType<any>;
8
+ required: false;
9
+ };
10
+ class: {
11
+ type: import("vue").PropType<String | String[]>;
12
+ required: boolean;
13
+ };
14
+ colorSchemaType: {
15
+ type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
16
+ required: boolean;
17
+ };
18
+ container: {
19
+ type: import("vue").PropType<boolean>;
20
+ required: boolean;
21
+ };
22
+ }>> & {
23
+ "onUpdate:modelValue"?: (value: any) => any;
24
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
25
+ $attrs: {
26
+ [x: string]: unknown;
27
+ };
28
+ $refs: {
29
+ [x: string]: unknown;
30
+ };
31
+ $slots: Readonly<{
32
+ [name: string]: import("vue").Slot;
33
+ }>;
34
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
35
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
36
+ $emit: (event: "update:modelValue", value: any) => void;
37
+ $el: any;
38
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
39
+ "v-model": {
40
+ type: import("vue").PropType<any>;
41
+ required: false;
42
+ };
43
+ class: {
44
+ type: import("vue").PropType<String | String[]>;
45
+ required: boolean;
46
+ };
47
+ colorSchemaType: {
48
+ type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
49
+ required: boolean;
50
+ };
51
+ container: {
52
+ type: import("vue").PropType<boolean>;
53
+ required: boolean;
54
+ };
55
+ }>> & {
56
+ "onUpdate:modelValue"?: (value: any) => any;
57
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
58
+ "update:modelValue": (value: any) => boolean;
59
+ }, string, {}, {}, string> & {
60
+ beforeCreate?: (() => void) | (() => void)[];
61
+ created?: (() => void) | (() => void)[];
62
+ beforeMount?: (() => void) | (() => void)[];
63
+ mounted?: (() => void) | (() => void)[];
64
+ beforeUpdate?: (() => void) | (() => void)[];
65
+ updated?: (() => void) | (() => void)[];
66
+ activated?: (() => void) | (() => void)[];
67
+ deactivated?: (() => void) | (() => void)[];
68
+ beforeDestroy?: (() => void) | (() => void)[];
69
+ beforeUnmount?: (() => void) | (() => void)[];
70
+ destroyed?: (() => void) | (() => void)[];
71
+ unmounted?: (() => void) | (() => void)[];
72
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
73
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
74
+ 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)[];
75
+ };
76
+ $forceUpdate: () => void;
77
+ $nextTick: typeof import("vue").nextTick;
78
+ $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;
79
+ } & Readonly<import("vue").ExtractPropTypes<{
80
+ "v-model": {
81
+ type: import("vue").PropType<any>;
82
+ required: false;
83
+ };
84
+ class: {
85
+ type: import("vue").PropType<String | String[]>;
86
+ required: boolean;
87
+ };
88
+ colorSchemaType: {
89
+ type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
90
+ required: boolean;
91
+ };
92
+ container: {
93
+ type: import("vue").PropType<boolean>;
94
+ required: boolean;
95
+ };
96
+ }>> & {
97
+ "onUpdate:modelValue"?: (value: any) => any;
98
+ } & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
99
+ __isFragment?: never;
100
+ __isTeleport?: never;
101
+ __isSuspense?: never;
102
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
103
+ "v-model": {
104
+ type: import("vue").PropType<any>;
105
+ required: false;
106
+ };
107
+ class: {
108
+ type: import("vue").PropType<String | String[]>;
109
+ required: boolean;
110
+ };
111
+ colorSchemaType: {
112
+ type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
113
+ required: boolean;
114
+ };
115
+ container: {
116
+ type: import("vue").PropType<boolean>;
117
+ required: boolean;
118
+ };
119
+ }>> & {
120
+ "onUpdate:modelValue"?: (value: any) => any;
121
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
122
+ "update:modelValue": (value: any) => boolean;
123
+ }, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
124
+ propsDefinition: Readonly<{} & {
125
+ class?: String | String[];
126
+ container?: boolean;
127
+ "v-model"?: any;
128
+ colorSchemaType?: import("@omnia/fx-models").ColorSchemaTypes;
129
+ }> & {
130
+ "onUpdate:modelValue"?: (value: any) => any;
131
+ };
132
+ };
133
+ export default _default;
@@ -0,0 +1,3 @@
1
+ export declare const SliderStyles: {
2
+ wrapper: (textColor: string) => string;
3
+ };
@@ -0,0 +1,186 @@
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
6
+ step: {
7
+ type: StringConstructor;
8
+ };
9
+ min: {
10
+ type: StringConstructor;
11
+ };
12
+ max: {
13
+ type: StringConstructor;
14
+ };
15
+ label: {
16
+ type: StringConstructor;
17
+ };
18
+ "v-model": {
19
+ type: import("vue").PropType<any>;
20
+ required: true;
21
+ };
22
+ class: {
23
+ type: import("vue").PropType<String | String[]>;
24
+ required: boolean;
25
+ };
26
+ colorSchemaType: {
27
+ type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
28
+ required: boolean;
29
+ };
30
+ container: {
31
+ type: import("vue").PropType<boolean>;
32
+ required: boolean;
33
+ };
34
+ }>> & {
35
+ "onUpdate:modelValue"?: (value: any) => any;
36
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
37
+ $attrs: {
38
+ [x: string]: unknown;
39
+ };
40
+ $refs: {
41
+ [x: string]: unknown;
42
+ };
43
+ $slots: Readonly<{
44
+ [name: string]: import("vue").Slot;
45
+ }>;
46
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
47
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
48
+ $emit: (event: "update:modelValue", value: any) => void;
49
+ $el: any;
50
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
51
+ step: {
52
+ type: StringConstructor;
53
+ };
54
+ min: {
55
+ type: StringConstructor;
56
+ };
57
+ max: {
58
+ type: StringConstructor;
59
+ };
60
+ label: {
61
+ type: StringConstructor;
62
+ };
63
+ "v-model": {
64
+ type: import("vue").PropType<any>;
65
+ required: true;
66
+ };
67
+ class: {
68
+ type: import("vue").PropType<String | String[]>;
69
+ required: boolean;
70
+ };
71
+ colorSchemaType: {
72
+ type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
73
+ required: boolean;
74
+ };
75
+ container: {
76
+ type: import("vue").PropType<boolean>;
77
+ required: boolean;
78
+ };
79
+ }>> & {
80
+ "onUpdate:modelValue"?: (value: any) => any;
81
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
82
+ "update:modelValue": (value: any) => boolean;
83
+ }, string, {}, {}, string> & {
84
+ beforeCreate?: (() => void) | (() => void)[];
85
+ created?: (() => void) | (() => void)[];
86
+ beforeMount?: (() => void) | (() => void)[];
87
+ mounted?: (() => void) | (() => void)[];
88
+ beforeUpdate?: (() => void) | (() => void)[];
89
+ updated?: (() => void) | (() => void)[];
90
+ activated?: (() => void) | (() => void)[];
91
+ deactivated?: (() => void) | (() => void)[];
92
+ beforeDestroy?: (() => void) | (() => void)[];
93
+ beforeUnmount?: (() => void) | (() => void)[];
94
+ destroyed?: (() => void) | (() => void)[];
95
+ unmounted?: (() => void) | (() => void)[];
96
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
97
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
98
+ 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)[];
99
+ };
100
+ $forceUpdate: () => void;
101
+ $nextTick: typeof import("vue").nextTick;
102
+ $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;
103
+ } & Readonly<import("vue").ExtractPropTypes<{
104
+ step: {
105
+ type: StringConstructor;
106
+ };
107
+ min: {
108
+ type: StringConstructor;
109
+ };
110
+ max: {
111
+ type: StringConstructor;
112
+ };
113
+ label: {
114
+ type: StringConstructor;
115
+ };
116
+ "v-model": {
117
+ type: import("vue").PropType<any>;
118
+ required: true;
119
+ };
120
+ class: {
121
+ type: import("vue").PropType<String | String[]>;
122
+ required: boolean;
123
+ };
124
+ colorSchemaType: {
125
+ type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
126
+ required: boolean;
127
+ };
128
+ container: {
129
+ type: import("vue").PropType<boolean>;
130
+ required: boolean;
131
+ };
132
+ }>> & {
133
+ "onUpdate:modelValue"?: (value: any) => any;
134
+ } & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
135
+ __isFragment?: never;
136
+ __isTeleport?: never;
137
+ __isSuspense?: never;
138
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
139
+ step: {
140
+ type: StringConstructor;
141
+ };
142
+ min: {
143
+ type: StringConstructor;
144
+ };
145
+ max: {
146
+ type: StringConstructor;
147
+ };
148
+ label: {
149
+ type: StringConstructor;
150
+ };
151
+ "v-model": {
152
+ type: import("vue").PropType<any>;
153
+ required: true;
154
+ };
155
+ class: {
156
+ type: import("vue").PropType<String | String[]>;
157
+ required: boolean;
158
+ };
159
+ colorSchemaType: {
160
+ type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
161
+ required: boolean;
162
+ };
163
+ container: {
164
+ type: import("vue").PropType<boolean>;
165
+ required: boolean;
166
+ };
167
+ }>> & {
168
+ "onUpdate:modelValue"?: (value: any) => any;
169
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
170
+ "update:modelValue": (value: any) => boolean;
171
+ }, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
172
+ propsDefinition: Readonly<{
173
+ "v-model": any;
174
+ } & {
175
+ label?: string;
176
+ class?: String | String[];
177
+ container?: boolean;
178
+ min?: string;
179
+ max?: string;
180
+ colorSchemaType?: import("@omnia/fx-models").ColorSchemaTypes;
181
+ step?: string;
182
+ }> & {
183
+ "onUpdate:modelValue"?: (value: any) => any;
184
+ };
185
+ };
186
+ export default _default;
@@ -0,0 +1,3 @@
1
+ export declare const SwitchStyles: {
2
+ wrapper: (textColor: string) => string;
3
+ };
@@ -0,0 +1,147 @@
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
6
+ "v-model": {
7
+ type: import("vue").PropType<any>;
8
+ required: true;
9
+ };
10
+ label: {
11
+ type: StringConstructor;
12
+ };
13
+ class: {
14
+ type: import("vue").PropType<String | String[]>;
15
+ required: boolean;
16
+ };
17
+ colorSchemaType: {
18
+ type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
19
+ required: boolean;
20
+ };
21
+ container: {
22
+ type: import("vue").PropType<boolean>;
23
+ required: boolean;
24
+ };
25
+ }>> & {
26
+ "onUpdate:modelValue"?: (value: any) => any;
27
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
28
+ $attrs: {
29
+ [x: string]: unknown;
30
+ };
31
+ $refs: {
32
+ [x: string]: unknown;
33
+ };
34
+ $slots: Readonly<{
35
+ [name: string]: import("vue").Slot;
36
+ }>;
37
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
38
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
39
+ $emit: (event: "update:modelValue", value: any) => void;
40
+ $el: any;
41
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
42
+ "v-model": {
43
+ type: import("vue").PropType<any>;
44
+ required: true;
45
+ };
46
+ label: {
47
+ type: StringConstructor;
48
+ };
49
+ class: {
50
+ type: import("vue").PropType<String | String[]>;
51
+ required: boolean;
52
+ };
53
+ colorSchemaType: {
54
+ type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
55
+ required: boolean;
56
+ };
57
+ container: {
58
+ type: import("vue").PropType<boolean>;
59
+ required: boolean;
60
+ };
61
+ }>> & {
62
+ "onUpdate:modelValue"?: (value: any) => any;
63
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
64
+ "update:modelValue": (value: any) => boolean;
65
+ }, string, {}, {}, string> & {
66
+ beforeCreate?: (() => void) | (() => void)[];
67
+ created?: (() => void) | (() => void)[];
68
+ beforeMount?: (() => void) | (() => void)[];
69
+ mounted?: (() => void) | (() => void)[];
70
+ beforeUpdate?: (() => void) | (() => void)[];
71
+ updated?: (() => void) | (() => void)[];
72
+ activated?: (() => void) | (() => void)[];
73
+ deactivated?: (() => void) | (() => void)[];
74
+ beforeDestroy?: (() => void) | (() => void)[];
75
+ beforeUnmount?: (() => void) | (() => void)[];
76
+ destroyed?: (() => void) | (() => void)[];
77
+ unmounted?: (() => void) | (() => void)[];
78
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
79
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
80
+ 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)[];
81
+ };
82
+ $forceUpdate: () => void;
83
+ $nextTick: typeof import("vue").nextTick;
84
+ $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;
85
+ } & Readonly<import("vue").ExtractPropTypes<{
86
+ "v-model": {
87
+ type: import("vue").PropType<any>;
88
+ required: true;
89
+ };
90
+ label: {
91
+ type: StringConstructor;
92
+ };
93
+ class: {
94
+ type: import("vue").PropType<String | String[]>;
95
+ required: boolean;
96
+ };
97
+ colorSchemaType: {
98
+ type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
99
+ required: boolean;
100
+ };
101
+ container: {
102
+ type: import("vue").PropType<boolean>;
103
+ required: boolean;
104
+ };
105
+ }>> & {
106
+ "onUpdate:modelValue"?: (value: any) => any;
107
+ } & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
108
+ __isFragment?: never;
109
+ __isTeleport?: never;
110
+ __isSuspense?: never;
111
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
112
+ "v-model": {
113
+ type: import("vue").PropType<any>;
114
+ required: true;
115
+ };
116
+ label: {
117
+ type: StringConstructor;
118
+ };
119
+ class: {
120
+ type: import("vue").PropType<String | String[]>;
121
+ required: boolean;
122
+ };
123
+ colorSchemaType: {
124
+ type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
125
+ required: boolean;
126
+ };
127
+ container: {
128
+ type: import("vue").PropType<boolean>;
129
+ required: boolean;
130
+ };
131
+ }>> & {
132
+ "onUpdate:modelValue"?: (value: any) => any;
133
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
134
+ "update:modelValue": (value: any) => boolean;
135
+ }, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
136
+ propsDefinition: Readonly<{
137
+ "v-model": any;
138
+ } & {
139
+ label?: string;
140
+ class?: String | String[];
141
+ container?: boolean;
142
+ colorSchemaType?: import("@omnia/fx-models").ColorSchemaTypes;
143
+ }> & {
144
+ "onUpdate:modelValue"?: (value: any) => any;
145
+ };
146
+ };
147
+ export default _default;
@@ -0,0 +1,4 @@
1
+ export declare const TabStyles: {
2
+ tabWrapper: () => string;
3
+ inactiveTab: (color: string) => string;
4
+ };
@@ -1,10 +1,21 @@
1
+ import { IIcon } from "@omnia/fx/models";
1
2
  declare const _default: {
2
3
  new (...args: any[]): {
3
4
  $: import("vue").ComponentInternalInstance;
4
5
  $data: {};
5
- $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
6
- id: {
6
+ $props: Partial<{
7
+ disabled: boolean;
8
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
9
+ disabled: {
10
+ type: BooleanConstructor;
11
+ };
12
+ title: {
7
13
  type: StringConstructor;
14
+ required: false;
15
+ };
16
+ icon: {
17
+ type: import("vue").PropType<IIcon>;
18
+ required: false;
8
19
  };
9
20
  class: {
10
21
  type: import("vue").PropType<String | String[]>;
@@ -14,11 +25,11 @@ declare const _default: {
14
25
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
15
26
  required: boolean;
16
27
  };
17
- colorType: {
18
- type: import("vue").PropType<import("@omnia/fx-models").ColorTypes>;
28
+ container: {
29
+ type: import("vue").PropType<boolean>;
19
30
  required: boolean;
20
31
  };
21
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
32
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled">;
22
33
  $attrs: {
23
34
  [x: string]: unknown;
24
35
  };
@@ -33,8 +44,16 @@ declare const _default: {
33
44
  $emit: (event: string, ...args: any[]) => void;
34
45
  $el: any;
35
46
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
36
- id: {
47
+ disabled: {
48
+ type: BooleanConstructor;
49
+ };
50
+ title: {
37
51
  type: StringConstructor;
52
+ required: false;
53
+ };
54
+ icon: {
55
+ type: import("vue").PropType<IIcon>;
56
+ required: false;
38
57
  };
39
58
  class: {
40
59
  type: import("vue").PropType<String | String[]>;
@@ -44,11 +63,13 @@ declare const _default: {
44
63
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
45
64
  required: boolean;
46
65
  };
47
- colorType: {
48
- type: import("vue").PropType<import("@omnia/fx-models").ColorTypes>;
66
+ container: {
67
+ type: import("vue").PropType<boolean>;
49
68
  required: boolean;
50
69
  };
51
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
70
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
71
+ disabled: boolean;
72
+ }, {}, string> & {
52
73
  beforeCreate?: (() => void) | (() => void)[];
53
74
  created?: (() => void) | (() => void)[];
54
75
  beforeMount?: (() => void) | (() => void)[];
@@ -69,8 +90,16 @@ declare const _default: {
69
90
  $nextTick: typeof import("vue").nextTick;
70
91
  $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;
71
92
  } & Readonly<import("vue").ExtractPropTypes<{
72
- id: {
93
+ disabled: {
94
+ type: BooleanConstructor;
95
+ };
96
+ title: {
73
97
  type: StringConstructor;
98
+ required: false;
99
+ };
100
+ icon: {
101
+ type: import("vue").PropType<IIcon>;
102
+ required: false;
74
103
  };
75
104
  class: {
76
105
  type: import("vue").PropType<String | String[]>;
@@ -80,8 +109,8 @@ declare const _default: {
80
109
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
81
110
  required: boolean;
82
111
  };
83
- colorType: {
84
- type: import("vue").PropType<import("@omnia/fx-models").ColorTypes>;
112
+ container: {
113
+ type: import("vue").PropType<boolean>;
85
114
  required: boolean;
86
115
  };
87
116
  }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
@@ -89,8 +118,16 @@ declare const _default: {
89
118
  __isTeleport?: never;
90
119
  __isSuspense?: never;
91
120
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
92
- id: {
121
+ disabled: {
122
+ type: BooleanConstructor;
123
+ };
124
+ title: {
93
125
  type: StringConstructor;
126
+ required: false;
127
+ };
128
+ icon: {
129
+ type: import("vue").PropType<IIcon>;
130
+ required: false;
94
131
  };
95
132
  class: {
96
133
  type: import("vue").PropType<String | String[]>;
@@ -100,16 +137,20 @@ declare const _default: {
100
137
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
101
138
  required: boolean;
102
139
  };
103
- colorType: {
104
- type: import("vue").PropType<import("@omnia/fx-models").ColorTypes>;
140
+ container: {
141
+ type: import("vue").PropType<boolean>;
105
142
  required: boolean;
106
143
  };
107
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
144
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
145
+ disabled: boolean;
146
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
108
147
  propsDefinition: Readonly<{} & {
148
+ title?: string;
109
149
  class?: String | String[];
110
- id?: string;
150
+ icon?: IIcon;
151
+ disabled?: boolean;
152
+ container?: boolean;
111
153
  colorSchemaType?: import("@omnia/fx-models").ColorSchemaTypes;
112
- colorType?: import("@omnia/fx-models").ColorTypes;
113
154
  }>;
114
155
  };
115
156
  export default _default;
@@ -1 +1,3 @@
1
- export declare const TextFieldStyles: {};
1
+ export declare const TabsStyles: {
2
+ itemContainer: string;
3
+ };