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