@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
@@ -1,10 +1,14 @@
1
+ export interface TabsModel {
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;
9
+ "v-model": {
10
+ type: import("vue").PropType<number>;
11
+ required: false;
8
12
  };
9
13
  class: {
10
14
  type: import("vue").PropType<String | String[]>;
@@ -14,8 +18,8 @@ declare const _default: {
14
18
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
15
19
  required: boolean;
16
20
  };
17
- colorType: {
18
- type: import("vue").PropType<import("@omnia/fx-models").ColorTypes>;
21
+ container: {
22
+ type: import("vue").PropType<boolean>;
19
23
  required: boolean;
20
24
  };
21
25
  }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
@@ -33,8 +37,9 @@ declare const _default: {
33
37
  $emit: (event: string, ...args: any[]) => void;
34
38
  $el: any;
35
39
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
36
- id: {
37
- type: StringConstructor;
40
+ "v-model": {
41
+ type: import("vue").PropType<number>;
42
+ required: false;
38
43
  };
39
44
  class: {
40
45
  type: import("vue").PropType<String | String[]>;
@@ -44,8 +49,8 @@ declare const _default: {
44
49
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
45
50
  required: boolean;
46
51
  };
47
- colorType: {
48
- type: import("vue").PropType<import("@omnia/fx-models").ColorTypes>;
52
+ container: {
53
+ type: import("vue").PropType<boolean>;
49
54
  required: boolean;
50
55
  };
51
56
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
@@ -69,8 +74,9 @@ declare const _default: {
69
74
  $nextTick: typeof import("vue").nextTick;
70
75
  $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
76
  } & Readonly<import("vue").ExtractPropTypes<{
72
- id: {
73
- type: StringConstructor;
77
+ "v-model": {
78
+ type: import("vue").PropType<number>;
79
+ required: false;
74
80
  };
75
81
  class: {
76
82
  type: import("vue").PropType<String | String[]>;
@@ -80,8 +86,8 @@ declare const _default: {
80
86
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
81
87
  required: boolean;
82
88
  };
83
- colorType: {
84
- type: import("vue").PropType<import("@omnia/fx-models").ColorTypes>;
89
+ container: {
90
+ type: import("vue").PropType<boolean>;
85
91
  required: boolean;
86
92
  };
87
93
  }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
@@ -89,8 +95,9 @@ declare const _default: {
89
95
  __isTeleport?: never;
90
96
  __isSuspense?: never;
91
97
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
92
- id: {
93
- type: StringConstructor;
98
+ "v-model": {
99
+ type: import("vue").PropType<number>;
100
+ required: false;
94
101
  };
95
102
  class: {
96
103
  type: import("vue").PropType<String | String[]>;
@@ -100,16 +107,16 @@ declare const _default: {
100
107
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
101
108
  required: boolean;
102
109
  };
103
- colorType: {
104
- type: import("vue").PropType<import("@omnia/fx-models").ColorTypes>;
110
+ container: {
111
+ type: import("vue").PropType<boolean>;
105
112
  required: boolean;
106
113
  };
107
114
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
108
115
  propsDefinition: Readonly<{} & {
109
116
  class?: String | String[];
110
- id?: string;
117
+ container?: boolean;
118
+ "v-model"?: number;
111
119
  colorSchemaType?: import("@omnia/fx-models").ColorSchemaTypes;
112
- colorType?: import("@omnia/fx-models").ColorTypes;
113
120
  }>;
114
121
  };
115
122
  export default _default;
@@ -8,6 +8,14 @@ declare const _default: {
8
8
  type: import("vue").PropType<TypographyType>;
9
9
  required: true;
10
10
  };
11
+ color: {
12
+ type: import("vue").PropType<ColorTypes>;
13
+ required: false;
14
+ };
15
+ toned: {
16
+ type: import("vue").PropType<Boolean>;
17
+ required: false;
18
+ };
11
19
  class: {
12
20
  type: import("vue").PropType<String | String[]>;
13
21
  required: boolean;
@@ -16,8 +24,8 @@ declare const _default: {
16
24
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
17
25
  required: boolean;
18
26
  };
19
- colorType: {
20
- type: import("vue").PropType<ColorTypes>;
27
+ container: {
28
+ type: import("vue").PropType<boolean>;
21
29
  required: boolean;
22
30
  };
23
31
  }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
@@ -39,6 +47,14 @@ declare const _default: {
39
47
  type: import("vue").PropType<TypographyType>;
40
48
  required: true;
41
49
  };
50
+ color: {
51
+ type: import("vue").PropType<ColorTypes>;
52
+ required: false;
53
+ };
54
+ toned: {
55
+ type: import("vue").PropType<Boolean>;
56
+ required: false;
57
+ };
42
58
  class: {
43
59
  type: import("vue").PropType<String | String[]>;
44
60
  required: boolean;
@@ -47,8 +63,8 @@ declare const _default: {
47
63
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
48
64
  required: boolean;
49
65
  };
50
- colorType: {
51
- type: import("vue").PropType<ColorTypes>;
66
+ container: {
67
+ type: import("vue").PropType<boolean>;
52
68
  required: boolean;
53
69
  };
54
70
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
@@ -76,6 +92,14 @@ declare const _default: {
76
92
  type: import("vue").PropType<TypographyType>;
77
93
  required: true;
78
94
  };
95
+ color: {
96
+ type: import("vue").PropType<ColorTypes>;
97
+ required: false;
98
+ };
99
+ toned: {
100
+ type: import("vue").PropType<Boolean>;
101
+ required: false;
102
+ };
79
103
  class: {
80
104
  type: import("vue").PropType<String | String[]>;
81
105
  required: boolean;
@@ -84,8 +108,8 @@ declare const _default: {
84
108
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
85
109
  required: boolean;
86
110
  };
87
- colorType: {
88
- type: import("vue").PropType<ColorTypes>;
111
+ container: {
112
+ type: import("vue").PropType<boolean>;
89
113
  required: boolean;
90
114
  };
91
115
  }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
@@ -97,6 +121,14 @@ declare const _default: {
97
121
  type: import("vue").PropType<TypographyType>;
98
122
  required: true;
99
123
  };
124
+ color: {
125
+ type: import("vue").PropType<ColorTypes>;
126
+ required: false;
127
+ };
128
+ toned: {
129
+ type: import("vue").PropType<Boolean>;
130
+ required: false;
131
+ };
100
132
  class: {
101
133
  type: import("vue").PropType<String | String[]>;
102
134
  required: boolean;
@@ -105,8 +137,8 @@ declare const _default: {
105
137
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
106
138
  required: boolean;
107
139
  };
108
- colorType: {
109
- type: import("vue").PropType<ColorTypes>;
140
+ container: {
141
+ type: import("vue").PropType<boolean>;
110
142
  required: boolean;
111
143
  };
112
144
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
@@ -114,8 +146,10 @@ declare const _default: {
114
146
  typography: TypographyType;
115
147
  } & {
116
148
  class?: String | String[];
149
+ color?: ColorTypes;
150
+ container?: boolean;
117
151
  colorSchemaType?: import("@omnia/fx-models").ColorSchemaTypes;
118
- colorType?: ColorTypes;
152
+ toned?: Boolean;
119
153
  }>;
120
154
  };
121
155
  export default _default;
@@ -1,4 +1,6 @@
1
- import { ColorTypes } from "@omnia/fx/models";
1
+ export interface TextFieldModel {
2
+ text: String;
3
+ }
2
4
  declare const _default: {
3
5
  new (...args: any[]): {
4
6
  $: import("vue").ComponentInternalInstance;
@@ -13,7 +15,7 @@ declare const _default: {
13
15
  variant: {
14
16
  type: import("vue").PropType<"search">;
15
17
  };
16
- model: {
18
+ "v-model": {
17
19
  type: StringConstructor;
18
20
  };
19
21
  class: {
@@ -24,11 +26,13 @@ declare const _default: {
24
26
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
25
27
  required: boolean;
26
28
  };
27
- colorType: {
28
- type: import("vue").PropType<ColorTypes>;
29
+ container: {
30
+ type: import("vue").PropType<boolean>;
29
31
  required: boolean;
30
32
  };
31
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
33
+ }>> & {
34
+ "onUpdate:modelValue"?: (value: string) => any;
35
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
32
36
  $attrs: {
33
37
  [x: string]: unknown;
34
38
  };
@@ -40,7 +44,7 @@ declare const _default: {
40
44
  }>;
41
45
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
42
46
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
43
- $emit: (event: string, ...args: any[]) => void;
47
+ $emit: (event: "update:modelValue", value: string) => void;
44
48
  $el: any;
45
49
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
46
50
  id: {
@@ -52,7 +56,7 @@ declare const _default: {
52
56
  variant: {
53
57
  type: import("vue").PropType<"search">;
54
58
  };
55
- model: {
59
+ "v-model": {
56
60
  type: StringConstructor;
57
61
  };
58
62
  class: {
@@ -63,11 +67,15 @@ declare const _default: {
63
67
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
64
68
  required: boolean;
65
69
  };
66
- colorType: {
67
- type: import("vue").PropType<ColorTypes>;
70
+ container: {
71
+ type: import("vue").PropType<boolean>;
68
72
  required: boolean;
69
73
  };
70
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
74
+ }>> & {
75
+ "onUpdate:modelValue"?: (value: string) => any;
76
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
77
+ "update:modelValue": (value: string) => true;
78
+ }, string, {}, {}, string> & {
71
79
  beforeCreate?: (() => void) | (() => void)[];
72
80
  created?: (() => void) | (() => void)[];
73
81
  beforeMount?: (() => void) | (() => void)[];
@@ -97,7 +105,7 @@ declare const _default: {
97
105
  variant: {
98
106
  type: import("vue").PropType<"search">;
99
107
  };
100
- model: {
108
+ "v-model": {
101
109
  type: StringConstructor;
102
110
  };
103
111
  class: {
@@ -108,11 +116,13 @@ declare const _default: {
108
116
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
109
117
  required: boolean;
110
118
  };
111
- colorType: {
112
- type: import("vue").PropType<ColorTypes>;
119
+ container: {
120
+ type: import("vue").PropType<boolean>;
113
121
  required: boolean;
114
122
  };
115
- }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
123
+ }>> & {
124
+ "onUpdate:modelValue"?: (value: string) => any;
125
+ } & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
116
126
  __isFragment?: never;
117
127
  __isTeleport?: never;
118
128
  __isSuspense?: never;
@@ -126,7 +136,7 @@ declare const _default: {
126
136
  variant: {
127
137
  type: import("vue").PropType<"search">;
128
138
  };
129
- model: {
139
+ "v-model": {
130
140
  type: StringConstructor;
131
141
  };
132
142
  class: {
@@ -137,19 +147,25 @@ declare const _default: {
137
147
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
138
148
  required: boolean;
139
149
  };
140
- colorType: {
141
- type: import("vue").PropType<ColorTypes>;
150
+ container: {
151
+ type: import("vue").PropType<boolean>;
142
152
  required: boolean;
143
153
  };
144
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
154
+ }>> & {
155
+ "onUpdate:modelValue"?: (value: string) => any;
156
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
157
+ "update:modelValue": (value: string) => true;
158
+ }, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
145
159
  propsDefinition: Readonly<{} & {
146
160
  label?: string;
147
161
  class?: String | String[];
148
162
  id?: string;
163
+ container?: boolean;
149
164
  variant?: "search";
165
+ "v-model"?: string;
150
166
  colorSchemaType?: import("@omnia/fx-models").ColorSchemaTypes;
151
- colorType?: ColorTypes;
152
- model?: string;
153
- }>;
167
+ }> & {
168
+ "onUpdate:modelValue"?: (value: string) => any;
169
+ };
154
170
  };
155
171
  export default _default;
@@ -1,29 +1,20 @@
1
- import { ColorTypes } from "@omnia/fx/models";
1
+ import { VNodeChild } from "vue";
2
2
  declare const _default: {
3
3
  new (...args: any[]): {
4
4
  $: import("vue").ComponentInternalInstance;
5
5
  $data: {};
6
- $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
7
- id: {
8
- type: StringConstructor;
6
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
7
+ id: string;
8
+ title: string;
9
+ class: String | String[];
10
+ colorSchemaType: import("@omnia/fx-models").ColorSchemaTypes;
11
+ container: boolean;
12
+ "v-slots"?: {
13
+ default?: () => VNodeChild;
14
+ } & {
15
+ icon?: () => VNodeChild;
9
16
  };
10
- title: {
11
- type: StringConstructor;
12
- required: false;
13
- };
14
- class: {
15
- type: import("vue").PropType<String | String[]>;
16
- required: boolean;
17
- };
18
- colorSchemaType: {
19
- type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
20
- required: boolean;
21
- };
22
- colorType: {
23
- type: import("vue").PropType<ColorTypes>;
24
- required: boolean;
25
- };
26
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
17
+ }>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
27
18
  $attrs: {
28
19
  [x: string]: unknown;
29
20
  };
@@ -37,27 +28,18 @@ declare const _default: {
37
28
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
38
29
  $emit: (event: string, ...args: any[]) => void;
39
30
  $el: any;
40
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
41
- id: {
42
- type: StringConstructor;
43
- };
44
- title: {
45
- type: StringConstructor;
46
- required: false;
31
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
32
+ id: string;
33
+ title: string;
34
+ class: String | String[];
35
+ colorSchemaType: import("@omnia/fx-models").ColorSchemaTypes;
36
+ container: boolean;
37
+ "v-slots"?: {
38
+ default?: () => VNodeChild;
39
+ } & {
40
+ icon?: () => VNodeChild;
47
41
  };
48
- class: {
49
- type: import("vue").PropType<String | String[]>;
50
- required: boolean;
51
- };
52
- colorSchemaType: {
53
- type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
54
- required: boolean;
55
- };
56
- colorType: {
57
- type: import("vue").PropType<ColorTypes>;
58
- required: boolean;
59
- };
60
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
42
+ }>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
61
43
  beforeCreate?: (() => void) | (() => void)[];
62
44
  created?: (() => void) | (() => void)[];
63
45
  beforeMount?: (() => void) | (() => void)[];
@@ -77,57 +59,44 @@ declare const _default: {
77
59
  $forceUpdate: () => void;
78
60
  $nextTick: typeof import("vue").nextTick;
79
61
  $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;
80
- } & Readonly<import("vue").ExtractPropTypes<{
81
- id: {
82
- type: StringConstructor;
83
- };
84
- title: {
85
- type: StringConstructor;
86
- required: false;
62
+ } & Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
63
+ id: string;
64
+ title: string;
65
+ class: String | String[];
66
+ colorSchemaType: import("@omnia/fx-models").ColorSchemaTypes;
67
+ container: boolean;
68
+ "v-slots"?: {
69
+ default?: () => VNodeChild;
70
+ } & {
71
+ icon?: () => VNodeChild;
87
72
  };
88
- class: {
89
- type: import("vue").PropType<String | String[]>;
90
- required: boolean;
91
- };
92
- colorSchemaType: {
93
- type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
94
- required: boolean;
95
- };
96
- colorType: {
97
- type: import("vue").PropType<ColorTypes>;
98
- required: boolean;
99
- };
100
- }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
73
+ }>>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
101
74
  __isFragment?: never;
102
75
  __isTeleport?: never;
103
76
  __isSuspense?: never;
104
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
105
- id: {
106
- type: StringConstructor;
107
- };
108
- title: {
109
- type: StringConstructor;
110
- required: false;
77
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
78
+ id: string;
79
+ title: string;
80
+ class: String | String[];
81
+ colorSchemaType: import("@omnia/fx-models").ColorSchemaTypes;
82
+ container: boolean;
83
+ "v-slots"?: {
84
+ default?: () => VNodeChild;
85
+ } & {
86
+ icon?: () => VNodeChild;
111
87
  };
112
- class: {
113
- type: import("vue").PropType<String | String[]>;
114
- required: boolean;
115
- };
116
- colorSchemaType: {
117
- type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
118
- required: boolean;
119
- };
120
- colorType: {
121
- type: import("vue").PropType<ColorTypes>;
122
- required: boolean;
123
- };
124
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
88
+ }>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
125
89
  propsDefinition: Readonly<{} & {
126
90
  title?: string;
127
91
  class?: String | String[];
128
92
  id?: string;
93
+ container?: boolean;
94
+ "v-slots"?: {
95
+ default?: () => VNodeChild;
96
+ } & {
97
+ icon?: () => VNodeChild;
98
+ };
129
99
  colorSchemaType?: import("@omnia/fx-models").ColorSchemaTypes;
130
- colorType?: ColorTypes;
131
100
  }>;
132
101
  };
133
102
  export default _default;
@@ -59,8 +59,8 @@ declare const _default: {
59
59
  }>>>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
60
60
  [x: number]: string;
61
61
  } | {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
62
- propsDefinition: Readonly<readonly string[] | ({} & {
62
+ propsDefinition: readonly string[] | Readonly<{} & {
63
63
  [x: string]: unknown;
64
- })>;
64
+ }>;
65
65
  };
66
66
  export default _default;