@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,4 +1,3 @@
1
- import { ColorTypes } from "@omnia/fx/models";
2
1
  declare const _default: {
3
2
  new (...args: any[]): {
4
3
  $: import("vue").ComponentInternalInstance;
@@ -25,8 +24,8 @@ declare const _default: {
25
24
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
26
25
  required: boolean;
27
26
  };
28
- colorType: {
29
- type: import("vue").PropType<ColorTypes>;
27
+ container: {
28
+ type: import("vue").PropType<boolean>;
30
29
  required: boolean;
31
30
  };
32
31
  }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "absolute">;
@@ -63,8 +62,8 @@ declare const _default: {
63
62
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
64
63
  required: boolean;
65
64
  };
66
- colorType: {
67
- type: import("vue").PropType<ColorTypes>;
65
+ container: {
66
+ type: import("vue").PropType<boolean>;
68
67
  required: boolean;
69
68
  };
70
69
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
@@ -109,8 +108,8 @@ declare const _default: {
109
108
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
110
109
  required: boolean;
111
110
  };
112
- colorType: {
113
- type: import("vue").PropType<ColorTypes>;
111
+ container: {
112
+ type: import("vue").PropType<boolean>;
114
113
  required: boolean;
115
114
  };
116
115
  }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
@@ -137,8 +136,8 @@ declare const _default: {
137
136
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
138
137
  required: boolean;
139
138
  };
140
- colorType: {
141
- type: import("vue").PropType<ColorTypes>;
139
+ container: {
140
+ type: import("vue").PropType<boolean>;
142
141
  required: boolean;
143
142
  };
144
143
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
@@ -149,8 +148,8 @@ declare const _default: {
149
148
  class?: String | String[];
150
149
  id?: string;
151
150
  absolute?: boolean;
151
+ container?: boolean;
152
152
  colorSchemaType?: import("@omnia/fx-models").ColorSchemaTypes;
153
- colorType?: ColorTypes;
154
153
  }>;
155
154
  };
156
155
  export default _default;
@@ -1,4 +1,4 @@
1
- import { ButtonIconOptions, ButtonTooltipOptions, ColorTypes } from "@omnia/fx-models";
1
+ import { ButtonIconOptions, ButtonTooltipOptions } from "@omnia/fx-models";
2
2
  import { IButton } from "@omnia/fx/ux";
3
3
  export type ButtonVariant = "Prominent" | "?";
4
4
  export type SizeType = "x-small" | "small" | "default";
@@ -7,13 +7,6 @@ declare const _default: {
7
7
  $: import("vue").ComponentInternalInstance;
8
8
  $data: {};
9
9
  $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
10
- id: {
11
- type: StringConstructor;
12
- };
13
- onClick: {
14
- type: import("vue").PropType<(e?: any) => void>;
15
- required: false;
16
- };
17
10
  icon: {
18
11
  type: import("vue").PropType<ButtonIconOptions>;
19
12
  required: false;
@@ -47,8 +40,8 @@ declare const _default: {
47
40
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
48
41
  required: boolean;
49
42
  };
50
- colorType: {
51
- type: import("vue").PropType<ColorTypes>;
43
+ container: {
44
+ type: import("vue").PropType<boolean>;
52
45
  required: boolean;
53
46
  };
54
47
  }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
@@ -66,13 +59,6 @@ declare const _default: {
66
59
  $emit: (event: string, ...args: any[]) => void;
67
60
  $el: any;
68
61
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
69
- id: {
70
- type: StringConstructor;
71
- };
72
- onClick: {
73
- type: import("vue").PropType<(e?: any) => void>;
74
- required: false;
75
- };
76
62
  icon: {
77
63
  type: import("vue").PropType<ButtonIconOptions>;
78
64
  required: false;
@@ -106,8 +92,8 @@ declare const _default: {
106
92
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
107
93
  required: boolean;
108
94
  };
109
- colorType: {
110
- type: import("vue").PropType<ColorTypes>;
95
+ container: {
96
+ type: import("vue").PropType<boolean>;
111
97
  required: boolean;
112
98
  };
113
99
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
@@ -131,13 +117,6 @@ declare const _default: {
131
117
  $nextTick: typeof import("vue").nextTick;
132
118
  $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;
133
119
  } & Readonly<import("vue").ExtractPropTypes<{
134
- id: {
135
- type: StringConstructor;
136
- };
137
- onClick: {
138
- type: import("vue").PropType<(e?: any) => void>;
139
- required: false;
140
- };
141
120
  icon: {
142
121
  type: import("vue").PropType<ButtonIconOptions>;
143
122
  required: false;
@@ -171,8 +150,8 @@ declare const _default: {
171
150
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
172
151
  required: boolean;
173
152
  };
174
- colorType: {
175
- type: import("vue").PropType<ColorTypes>;
153
+ container: {
154
+ type: import("vue").PropType<boolean>;
176
155
  required: boolean;
177
156
  };
178
157
  }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
@@ -180,13 +159,6 @@ declare const _default: {
180
159
  __isTeleport?: never;
181
160
  __isSuspense?: never;
182
161
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
183
- id: {
184
- type: StringConstructor;
185
- };
186
- onClick: {
187
- type: import("vue").PropType<(e?: any) => void>;
188
- required: false;
189
- };
190
162
  icon: {
191
163
  type: import("vue").PropType<ButtonIconOptions>;
192
164
  required: false;
@@ -220,22 +192,20 @@ declare const _default: {
220
192
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
221
193
  required: boolean;
222
194
  };
223
- colorType: {
224
- type: import("vue").PropType<ColorTypes>;
195
+ container: {
196
+ type: import("vue").PropType<boolean>;
225
197
  required: boolean;
226
198
  };
227
199
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
228
200
  propsDefinition: Readonly<{} & {
229
201
  class?: String | String[];
230
202
  text?: string;
231
- id?: string;
232
203
  size?: SizeType;
233
204
  icon?: ButtonIconOptions;
234
205
  tooltip?: ButtonTooltipOptions;
235
- onClick?: (e?: any) => void;
206
+ container?: boolean;
236
207
  variant?: ButtonVariant;
237
208
  colorSchemaType?: import("@omnia/fx-models").ColorSchemaTypes;
238
- colorType?: ColorTypes;
239
209
  overrides?: object;
240
210
  preset?: unknown;
241
211
  }>;
@@ -10,9 +10,6 @@ declare const _default: {
10
10
  type: any;
11
11
  required: true;
12
12
  };
13
- id: {
14
- type: StringConstructor;
15
- };
16
13
  mandatory: {
17
14
  type: BooleanConstructor;
18
15
  required: false;
@@ -22,15 +19,15 @@ declare const _default: {
22
19
  required: false;
23
20
  };
24
21
  class: {
25
- type: import("vue").PropType<String | String[]>;
22
+ type: import("vue").PropType<String | String[]>; /**Trigger the possiblility to style all sub components */
26
23
  required: boolean;
27
24
  };
28
25
  colorSchemaType: {
29
26
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
30
27
  required: boolean;
31
28
  };
32
- colorType: {
33
- type: import("vue").PropType<import("@omnia/fx-models").ColorTypes>;
29
+ container: {
30
+ type: import("vue").PropType<boolean>;
34
31
  required: boolean;
35
32
  };
36
33
  }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "mandatory" | "group">;
@@ -52,9 +49,6 @@ declare const _default: {
52
49
  type: any;
53
50
  required: true;
54
51
  };
55
- id: {
56
- type: StringConstructor;
57
- };
58
52
  mandatory: {
59
53
  type: BooleanConstructor;
60
54
  required: false;
@@ -64,15 +58,15 @@ declare const _default: {
64
58
  required: false;
65
59
  };
66
60
  class: {
67
- type: import("vue").PropType<String | String[]>;
61
+ type: import("vue").PropType<String | String[]>; /**Trigger the possiblility to style all sub components */
68
62
  required: boolean;
69
63
  };
70
64
  colorSchemaType: {
71
65
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
72
66
  required: boolean;
73
67
  };
74
- colorType: {
75
- type: import("vue").PropType<import("@omnia/fx-models").ColorTypes>;
68
+ container: {
69
+ type: import("vue").PropType<boolean>;
76
70
  required: boolean;
77
71
  };
78
72
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
@@ -103,9 +97,6 @@ declare const _default: {
103
97
  type: any;
104
98
  required: true;
105
99
  };
106
- id: {
107
- type: StringConstructor;
108
- };
109
100
  mandatory: {
110
101
  type: BooleanConstructor;
111
102
  required: false;
@@ -115,15 +106,15 @@ declare const _default: {
115
106
  required: false;
116
107
  };
117
108
  class: {
118
- type: import("vue").PropType<String | String[]>;
109
+ type: import("vue").PropType<String | String[]>; /**Trigger the possiblility to style all sub components */
119
110
  required: boolean;
120
111
  };
121
112
  colorSchemaType: {
122
113
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
123
114
  required: boolean;
124
115
  };
125
- colorType: {
126
- type: import("vue").PropType<import("@omnia/fx-models").ColorTypes>;
116
+ container: {
117
+ type: import("vue").PropType<boolean>;
127
118
  required: boolean;
128
119
  };
129
120
  }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
@@ -135,9 +126,6 @@ declare const _default: {
135
126
  type: any;
136
127
  required: true;
137
128
  };
138
- id: {
139
- type: StringConstructor;
140
- };
141
129
  mandatory: {
142
130
  type: BooleanConstructor;
143
131
  required: false;
@@ -147,15 +135,15 @@ declare const _default: {
147
135
  required: false;
148
136
  };
149
137
  class: {
150
- type: import("vue").PropType<String | String[]>;
138
+ type: import("vue").PropType<String | String[]>; /**Trigger the possiblility to style all sub components */
151
139
  required: boolean;
152
140
  };
153
141
  colorSchemaType: {
154
142
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
155
143
  required: boolean;
156
144
  };
157
- colorType: {
158
- type: import("vue").PropType<import("@omnia/fx-models").ColorTypes>;
145
+ container: {
146
+ type: import("vue").PropType<boolean>;
159
147
  required: boolean;
160
148
  };
161
149
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
@@ -166,11 +154,10 @@ declare const _default: {
166
154
  "v-model": any;
167
155
  } & {
168
156
  class?: String | String[];
169
- id?: string;
170
157
  mandatory?: boolean;
158
+ container?: boolean;
171
159
  group?: boolean;
172
160
  colorSchemaType?: import("@omnia/fx-models").ColorSchemaTypes;
173
- colorType?: import("@omnia/fx-models").ColorTypes;
174
161
  }>;
175
162
  };
176
163
  export default _default;
@@ -3,9 +3,6 @@ declare const _default: {
3
3
  $: import("vue").ComponentInternalInstance;
4
4
  $data: {};
5
5
  $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
6
- id: {
7
- type: StringConstructor;
8
- };
9
6
  class: {
10
7
  type: import("vue").PropType<String | String[]>;
11
8
  required: boolean;
@@ -14,8 +11,8 @@ declare const _default: {
14
11
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
15
12
  required: boolean;
16
13
  };
17
- colorType: {
18
- type: import("vue").PropType<import("@omnia/fx-models").ColorTypes>;
14
+ container: {
15
+ type: import("vue").PropType<boolean>;
19
16
  required: boolean;
20
17
  };
21
18
  }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
@@ -33,9 +30,6 @@ declare const _default: {
33
30
  $emit: (event: string, ...args: any[]) => void;
34
31
  $el: any;
35
32
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
36
- id: {
37
- type: StringConstructor;
38
- };
39
33
  class: {
40
34
  type: import("vue").PropType<String | String[]>;
41
35
  required: boolean;
@@ -44,8 +38,8 @@ declare const _default: {
44
38
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
45
39
  required: boolean;
46
40
  };
47
- colorType: {
48
- type: import("vue").PropType<import("@omnia/fx-models").ColorTypes>;
41
+ container: {
42
+ type: import("vue").PropType<boolean>;
49
43
  required: boolean;
50
44
  };
51
45
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
@@ -69,9 +63,6 @@ declare const _default: {
69
63
  $nextTick: typeof import("vue").nextTick;
70
64
  $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
65
  } & Readonly<import("vue").ExtractPropTypes<{
72
- id: {
73
- type: StringConstructor;
74
- };
75
66
  class: {
76
67
  type: import("vue").PropType<String | String[]>;
77
68
  required: boolean;
@@ -80,8 +71,8 @@ declare const _default: {
80
71
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
81
72
  required: boolean;
82
73
  };
83
- colorType: {
84
- type: import("vue").PropType<import("@omnia/fx-models").ColorTypes>;
74
+ container: {
75
+ type: import("vue").PropType<boolean>;
85
76
  required: boolean;
86
77
  };
87
78
  }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
@@ -89,9 +80,6 @@ declare const _default: {
89
80
  __isTeleport?: never;
90
81
  __isSuspense?: never;
91
82
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
92
- id: {
93
- type: StringConstructor;
94
- };
95
83
  class: {
96
84
  type: import("vue").PropType<String | String[]>;
97
85
  required: boolean;
@@ -100,16 +88,15 @@ declare const _default: {
100
88
  type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
101
89
  required: boolean;
102
90
  };
103
- colorType: {
104
- type: import("vue").PropType<import("@omnia/fx-models").ColorTypes>;
91
+ container: {
92
+ type: import("vue").PropType<boolean>;
105
93
  required: boolean;
106
94
  };
107
95
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
108
96
  propsDefinition: Readonly<{} & {
109
97
  class?: String | String[];
110
- id?: string;
98
+ container?: boolean;
111
99
  colorSchemaType?: import("@omnia/fx-models").ColorSchemaTypes;
112
- colorType?: import("@omnia/fx-models").ColorTypes;
113
100
  }>;
114
101
  };
115
102
  export default _default;
@@ -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;