@omnia/fx 8.0.18-vnext → 8.0.19-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 (52) hide show
  1. package/internal-do-not-import-from-here/core/Inject.d.ts +2 -2
  2. package/internal-do-not-import-from-here/core/ServiceContainer.d.ts +2 -2
  3. package/internal-do-not-import-from-here/index.d.ts +1 -1
  4. package/internal-do-not-import-from-here/ux/Exposes.d.ts +0 -1
  5. package/internal-do-not-import-from-here/ux/InternalDefineWebComponent.d.ts +2 -2
  6. package/internal-do-not-import-from-here/ux/compositiontests/OptionsBlockCurrent.d.ts +1 -1
  7. package/internal-do-not-import-from-here/ux/image/scalingsettings/ScalingSettings.css.d.ts +1 -0
  8. package/internal-do-not-import-from-here/ux/image/scalingsettings/ScalingSettings.d.ts +201 -0
  9. package/internal-do-not-import-from-here/ux/oxide/btn/Button.css.d.ts +2 -4
  10. package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +2 -2
  11. package/internal-do-not-import-from-here/ux/oxide/btntoggle/ButtonToggle.d.ts +1 -1
  12. package/internal-do-not-import-from-here/ux/oxide/card/Card.d.ts +5 -5
  13. package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.css.d.ts +3 -0
  14. package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.d.ts +189 -0
  15. package/internal-do-not-import-from-here/ux/oxide/column/Column.css.d.ts +3 -0
  16. package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +44 -1
  17. package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.css.d.ts +1 -1
  18. package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +80 -38
  19. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.d.ts +1 -1
  20. package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +94 -6
  21. package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +6 -6
  22. package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.css.d.ts +3 -5
  23. package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +56 -18
  24. package/internal-do-not-import-from-here/ux/oxide/panel/Panel.css.d.ts +1 -1
  25. package/internal-do-not-import-from-here/ux/oxide/panel/Panel.d.ts +37 -0
  26. package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.d.ts +1 -1
  27. package/internal-do-not-import-from-here/ux/oxide/select/Select.css.d.ts +1 -11
  28. package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +46 -2
  29. package/internal-do-not-import-from-here/ux/oxide/slider/Slider.d.ts +1 -1
  30. package/internal-do-not-import-from-here/ux/oxide/snackbar/Snackbar.d.ts +1 -1
  31. package/internal-do-not-import-from-here/ux/oxide/switch/Switch.d.ts +10 -10
  32. package/internal-do-not-import-from-here/ux/oxide/tab/Tab.d.ts +2 -2
  33. package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.css.d.ts +3 -0
  34. package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +75 -1
  35. package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.css.d.ts +1 -0
  36. package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +84 -6
  37. package/internal-do-not-import-from-here/ux/spacingpicker/SpacingPicker2.d.ts +1 -1
  38. package/internal-do-not-import-from-here/ux/statusmessageoverlay/LayoutEngineTest.d.ts +47 -0
  39. package/internal-do-not-import-from-here/ux/statusmessageoverlay/StatusMessageOverlay.d.ts +205 -25
  40. package/internal-do-not-import-from-here/ux/theming-v2/colorschemapicker/ColorSchemaPicker.css.d.ts +0 -1
  41. package/internal-do-not-import-from-here/ux/theming-v2/colorschemapicker/ColorSchemaPicker.d.ts +6 -6
  42. package/internal-do-not-import-from-here/ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker.d.ts +1 -1
  43. package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/ThemeEditor.d.ts +5 -5
  44. package/internal-do-not-import-from-here/ux/use/Types.d.ts +0 -8
  45. package/internal-do-not-import-from-here/ux/use/UseEventListener.d.ts +2 -1
  46. package/internal-do-not-import-from-here/ux/use/UseModel.d.ts +11 -0
  47. package/internal-do-not-import-from-here/ux/use/index.d.ts +1 -0
  48. package/internal-do-not-import-from-here/wcdefinitions.json +1 -1
  49. package/internal-do-not-import-from-here/wctypings.d.ts +6 -0
  50. package/package.json +2 -2
  51. package/internal-do-not-import-from-here/ux/statusmessageoverlay/IStatusMessageOverlay.d.ts +0 -19
  52. package/internal-do-not-import-from-here/ux/statusmessageoverlay/index.d.ts +0 -1
@@ -16,7 +16,7 @@ type Class<T> = {
16
16
  /**
17
17
  * Injects an instance of the specifed type. That instance maybe come from higer level relation provide it.
18
18
  *
19
- * @param classType - Type to inject
19
+ * @param type - Type to inject
20
20
  * @param constructorArgs - Optional arguments for the constructor, by naming convention an interface should be supplied specifying the expected parameters
21
21
  * the name of the interface should follow <classType>Constructor i.e.
22
22
  * Type: HttpClient, if supporting constructor arguments an interface named: "HttpClientConstructor" should be supplied.
@@ -24,5 +24,5 @@ type Class<T> = {
24
24
  * E.g.:
25
25
  * useInject<HttpClientConstructor>(HttpClient,{someConstructorArg1:"",someConstructorArg2})
26
26
  */
27
- export declare function useInject<TClass, TConstructor>(classType: Class<TClass>, constructorArgs?: TConstructor): TClass;
27
+ export declare function useInject<TClass, TConstructor>(type: Class<TClass> | Function, constructorArgs?: TConstructor): TClass;
28
28
  export {};
@@ -9,7 +9,7 @@ export declare class ServiceContainer {
9
9
  private static mockInstances;
10
10
  private static registeredOnDisposing;
11
11
  static addMock<T>(type: T, instance: any): void;
12
- static getMock<T extends Class = any>(type: T): MockInstance;
12
+ static getMock<T extends Class = any>(type: T | Function): MockInstance;
13
13
  /**
14
14
  * @param forceNewInstanceLifetimeScope that used in Provide/Inject pattern in ui layer.
15
15
  */
@@ -21,7 +21,7 @@ export declare class ServiceContainer {
21
21
  export declare class ServiceContainerContext {
22
22
  private container;
23
23
  constructor();
24
- createInstance<T, T2 extends Class = any>(classType: T2, constructorArgs?: T, forceNewInstanceLifetimeScope?: boolean): InstanceType<T2>;
24
+ createInstance<T, T2 extends Class = any>(classType: T2 | Function, constructorArgs?: T, forceNewInstanceLifetimeScope?: boolean): InstanceType<T2>;
25
25
  dispose(): void;
26
26
  }
27
27
  export {};
@@ -49,7 +49,7 @@ export declare function setCurrentManifest(omniaServiceId: any, resourceId: any)
49
49
  Provide<T>(classType: any, constructorArgs?: T): any;
50
50
  useProvide<TProvide, TConstructor>(provide: TProvide, constructorArgs?: TConstructor): TProvide extends new (...args: any) => infer P ? P : TProvide extends Object ? TProvide : never;
51
51
  Inject<T_1>(classType: any, constructorArgs?: T_1): any;
52
- useInject<TClass, TConstructor_1>(classType: new (...args: any[]) => TClass, constructorArgs?: TConstructor_1): TClass;
52
+ useInject<TClass, TConstructor_1>(type: Function | (new (...args: any[]) => TClass), constructorArgs?: TConstructor_1): TClass;
53
53
  isInjectable(type: any): boolean;
54
54
  Injectable<T_2>(options: Models.ActivationOptions): any;
55
55
  Cookies: typeof Exposes.Cookies;
@@ -29,7 +29,6 @@ export * from "./permissioninput";
29
29
  export * from "./securitytrimer";
30
30
  export * from "./models";
31
31
  export * from "./wizard";
32
- export * from "./statusmessageoverlay";
33
32
  export * from "./multilingualinput";
34
33
  export * from "./texttranslator";
35
34
  export * from "./errormessage";
@@ -1,5 +1,5 @@
1
1
  import { ComputedOptions, MethodOptions, ComponentOptionsMixin, EmitsOptions, ComponentInjectOptions, ComponentOptionsWithArrayProps, ComponentPropsOptions, ComponentOptionsWithObjectProps, DefineComponent, ComponentObjectPropsOptions, ComponentOptionsWithoutProps, Prop, VNodeChild, PropType, ObjectEmitsOptions } from "vue";
2
- import { ThemeableComponentProps, WebComponentBundleManifest } from "@omnia/fx-models";
2
+ import { Func, ThemeableComponentProps, WebComponentBundleManifest } from "@omnia/fx-models";
3
3
  export declare function definePropFunctionType<T>(): PropType<T>;
4
4
  export declare function definePropObjectType<T>(): PropType<T>;
5
5
  type IfAny<T, Y, N> = 0 extends 1 & T ? Y : N;
@@ -81,7 +81,7 @@ export declare function defineVue<TPropType>(): {
81
81
  vModel: <N extends string = "">(name?: N) => { [key in VModelKeyNameInJsxElement<N>]: PropType<TPropType>; } & { [key_1 in VModelKeyNameInProps<N>]: PropType<TPropType>; };
82
82
  slots: <Slots extends Record<string, Slot<any[]>>>() => {
83
83
  "v-slots": Prop<{
84
- default?: () => VNodeChild;
84
+ default?: Func<[VNodeChild]>;
85
85
  } & Slots>;
86
86
  };
87
87
  };
@@ -55,8 +55,8 @@ declare const _default: {
55
55
  modelValue: string;
56
56
  }>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
57
57
  propsDefinition: Readonly<{} & {
58
- "v-model"?: string;
59
58
  modelValue?: string;
59
+ "v-model"?: string;
60
60
  }>;
61
61
  };
62
62
  export default _default;
@@ -0,0 +1 @@
1
+ export declare const ImageSettingsStyles: {};
@@ -0,0 +1,201 @@
1
+ import { MediaScalingSettings } from "@omnia/fx-models";
2
+ declare const _default: {
3
+ new (...args: any[]): {
4
+ $: import("vue").ComponentInternalInstance;
5
+ $data: {};
6
+ $props: Partial<{
7
+ container?: any;
8
+ colorSchemaType?: any;
9
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
10
+ group: {
11
+ type: import("vue").PropType<boolean>;
12
+ required: boolean;
13
+ default?: boolean;
14
+ } & {
15
+ type: import("vue").PropType<boolean>;
16
+ required: boolean;
17
+ default?: boolean;
18
+ };
19
+ mandatory: {
20
+ type: import("vue").PropType<boolean>;
21
+ required: boolean;
22
+ default?: boolean;
23
+ } & {
24
+ type: import("vue").PropType<boolean>;
25
+ required: boolean;
26
+ default?: boolean;
27
+ };
28
+ "v-model": import("vue").PropType<MediaScalingSettings>;
29
+ modelValue: import("vue").PropType<MediaScalingSettings>;
30
+ class: {
31
+ type: import("vue").PropType<String | String[]>;
32
+ required: boolean;
33
+ };
34
+ colorSchemaType?: any;
35
+ container?: any;
36
+ }>> & {
37
+ "onUpdate:modelValue"?: (value: any) => any;
38
+ "onUpdate:add"?: (value: any) => any;
39
+ "onUpdate:delete"?: (value: any) => any;
40
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "container" | "colorSchemaType">;
41
+ $attrs: {
42
+ [x: string]: unknown;
43
+ };
44
+ $refs: {
45
+ [x: string]: unknown;
46
+ };
47
+ $slots: Readonly<{
48
+ [name: string]: import("vue").Slot;
49
+ }>;
50
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
51
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
52
+ $emit: ((event: "update:modelValue", value: any) => void) & ((event: "update:add", value: any) => void) & ((event: "update:delete", value: any) => void);
53
+ $el: any;
54
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
55
+ group: {
56
+ type: import("vue").PropType<boolean>;
57
+ required: boolean;
58
+ default?: boolean;
59
+ } & {
60
+ type: import("vue").PropType<boolean>;
61
+ required: boolean;
62
+ default?: boolean;
63
+ };
64
+ mandatory: {
65
+ type: import("vue").PropType<boolean>;
66
+ required: boolean;
67
+ default?: boolean;
68
+ } & {
69
+ type: import("vue").PropType<boolean>;
70
+ required: boolean;
71
+ default?: boolean;
72
+ };
73
+ "v-model": import("vue").PropType<MediaScalingSettings>;
74
+ modelValue: import("vue").PropType<MediaScalingSettings>;
75
+ class: {
76
+ type: import("vue").PropType<String | String[]>;
77
+ required: boolean;
78
+ };
79
+ colorSchemaType?: any;
80
+ container?: any;
81
+ }>> & {
82
+ "onUpdate:modelValue"?: (value: any) => any;
83
+ "onUpdate:add"?: (value: any) => any;
84
+ "onUpdate:delete"?: (value: any) => any;
85
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
86
+ "update:modelValue": (value: any) => boolean;
87
+ "update:add": (value: any) => boolean;
88
+ "update:delete": (value: any) => boolean;
89
+ }, string, {
90
+ container?: any;
91
+ colorSchemaType?: any;
92
+ }, {}, string> & {
93
+ beforeCreate?: (() => void) | (() => void)[];
94
+ created?: (() => void) | (() => void)[];
95
+ beforeMount?: (() => void) | (() => void)[];
96
+ mounted?: (() => void) | (() => void)[];
97
+ beforeUpdate?: (() => void) | (() => void)[];
98
+ updated?: (() => void) | (() => void)[];
99
+ activated?: (() => void) | (() => void)[];
100
+ deactivated?: (() => void) | (() => void)[];
101
+ beforeDestroy?: (() => void) | (() => void)[];
102
+ beforeUnmount?: (() => void) | (() => void)[];
103
+ destroyed?: (() => void) | (() => void)[];
104
+ unmounted?: (() => void) | (() => void)[];
105
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
106
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
107
+ 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)[];
108
+ };
109
+ $forceUpdate: () => void;
110
+ $nextTick: typeof import("vue").nextTick;
111
+ $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;
112
+ } & Readonly<import("vue").ExtractPropTypes<{
113
+ group: {
114
+ type: import("vue").PropType<boolean>;
115
+ required: boolean;
116
+ default?: boolean;
117
+ } & {
118
+ type: import("vue").PropType<boolean>;
119
+ required: boolean;
120
+ default?: boolean;
121
+ };
122
+ mandatory: {
123
+ type: import("vue").PropType<boolean>;
124
+ required: boolean;
125
+ default?: boolean;
126
+ } & {
127
+ type: import("vue").PropType<boolean>;
128
+ required: boolean;
129
+ default?: boolean;
130
+ };
131
+ "v-model": import("vue").PropType<MediaScalingSettings>;
132
+ modelValue: import("vue").PropType<MediaScalingSettings>;
133
+ class: {
134
+ type: import("vue").PropType<String | String[]>;
135
+ required: boolean;
136
+ };
137
+ colorSchemaType?: any;
138
+ container?: any;
139
+ }>> & {
140
+ "onUpdate:modelValue"?: (value: any) => any;
141
+ "onUpdate:add"?: (value: any) => any;
142
+ "onUpdate:delete"?: (value: any) => any;
143
+ } & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
144
+ __isFragment?: never;
145
+ __isTeleport?: never;
146
+ __isSuspense?: never;
147
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
148
+ group: {
149
+ type: import("vue").PropType<boolean>;
150
+ required: boolean;
151
+ default?: boolean;
152
+ } & {
153
+ type: import("vue").PropType<boolean>;
154
+ required: boolean;
155
+ default?: boolean;
156
+ };
157
+ mandatory: {
158
+ type: import("vue").PropType<boolean>;
159
+ required: boolean;
160
+ default?: boolean;
161
+ } & {
162
+ type: import("vue").PropType<boolean>;
163
+ required: boolean;
164
+ default?: boolean;
165
+ };
166
+ "v-model": import("vue").PropType<MediaScalingSettings>;
167
+ modelValue: import("vue").PropType<MediaScalingSettings>;
168
+ class: {
169
+ type: import("vue").PropType<String | String[]>;
170
+ required: boolean;
171
+ };
172
+ colorSchemaType?: any;
173
+ container?: any;
174
+ }>> & {
175
+ "onUpdate:modelValue"?: (value: any) => any;
176
+ "onUpdate:add"?: (value: any) => any;
177
+ "onUpdate:delete"?: (value: any) => any;
178
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
179
+ "update:modelValue": (value: any) => boolean;
180
+ "update:add": (value: any) => boolean;
181
+ "update:delete": (value: any) => boolean;
182
+ }, string, {
183
+ container?: any;
184
+ colorSchemaType?: any;
185
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
186
+ propsDefinition: Readonly<{
187
+ container?: any;
188
+ colorSchemaType?: any;
189
+ } & {
190
+ class?: String | String[];
191
+ mandatory?: boolean;
192
+ modelValue?: MediaScalingSettings;
193
+ "v-model"?: MediaScalingSettings;
194
+ group?: boolean;
195
+ }> & {
196
+ "onUpdate:modelValue"?: (value: any) => any;
197
+ "onUpdate:add"?: (value: any) => any;
198
+ "onUpdate:delete"?: (value: any) => any;
199
+ };
200
+ };
201
+ export default _default;
@@ -1,7 +1,5 @@
1
- /**
2
- * Styles for the CommandPalette component
3
- */
1
+ export type ButtonVariant = "prominent" | "toolbar";
4
2
  export declare const buttonStyles: {
5
3
  transparentWrapper: string;
6
- wrapper: (background: string, text: string, iconColor: string) => string;
4
+ wrapper: (background: string, text: string, iconColor: string, variant: ButtonVariant) => string;
7
5
  };
@@ -1,7 +1,7 @@
1
1
  import { ButtonIconOptions, ButtonTooltipOptions } from "@omnia/fx-models";
2
- export type ButtonVariant = "prominent" | "toolbar";
2
+ import { ButtonVariant } from "./Button.css";
3
3
  export type SizeType = "x-small" | "small" | "default";
4
- export type ButtonPreset = "ok" | "cancel" | "save" | "close";
4
+ export type ButtonPreset = "ok" | "cancel" | "save" | "close" | "icon-add" | "icon-delete";
5
5
  declare const _default: {
6
6
  new (...args: any[]): {
7
7
  $: import("vue").ComponentInternalInstance;
@@ -164,8 +164,8 @@ declare const _default: {
164
164
  } & {
165
165
  class?: String | String[];
166
166
  mandatory?: boolean;
167
- "v-model"?: any;
168
167
  modelValue?: any;
168
+ "v-model"?: any;
169
169
  group?: boolean;
170
170
  }>;
171
171
  };
@@ -8,7 +8,7 @@ declare const _default: {
8
8
  colorSchemaType?: any;
9
9
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
10
10
  "v-slots": import("vue").Prop<{
11
- default?: () => VNodeChild;
11
+ default?: import("@omnia/fx-models").Func<[VNodeChild]>;
12
12
  } & {
13
13
  actions?: () => VNodeChild;
14
14
  }>;
@@ -43,7 +43,7 @@ declare const _default: {
43
43
  $el: any;
44
44
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
45
45
  "v-slots": import("vue").Prop<{
46
- default?: () => VNodeChild;
46
+ default?: import("@omnia/fx-models").Func<[VNodeChild]>;
47
47
  } & {
48
48
  actions?: () => VNodeChild;
49
49
  }>;
@@ -87,7 +87,7 @@ declare const _default: {
87
87
  $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;
88
88
  } & Readonly<import("vue").ExtractPropTypes<{
89
89
  "v-slots": import("vue").Prop<{
90
- default?: () => VNodeChild;
90
+ default?: import("@omnia/fx-models").Func<[VNodeChild]>;
91
91
  } & {
92
92
  actions?: () => VNodeChild;
93
93
  }>;
@@ -112,7 +112,7 @@ declare const _default: {
112
112
  __isSuspense?: never;
113
113
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
114
114
  "v-slots": import("vue").Prop<{
115
- default?: () => VNodeChild;
115
+ default?: import("@omnia/fx-models").Func<[VNodeChild]>;
116
116
  } & {
117
117
  actions?: () => VNodeChild;
118
118
  }>;
@@ -141,7 +141,7 @@ declare const _default: {
141
141
  } & {
142
142
  class?: String | String[];
143
143
  "v-slots"?: {
144
- default?: () => VNodeChild;
144
+ default?: import("@omnia/fx-models").Func<[VNodeChild]>;
145
145
  } & {
146
146
  actions?: () => VNodeChild;
147
147
  };
@@ -0,0 +1,3 @@
1
+ export declare const CheckBoxStyles: {
2
+ wrapper: (textColor: string, selectedColor: string) => string;
3
+ };
@@ -0,0 +1,189 @@
1
+ import { MaybeComputedRef } from "@omnia/fx/ux";
2
+ export interface RadioGroupModel {
3
+ }
4
+ declare const _default: {
5
+ new (...args: any[]): {
6
+ $: import("vue").ComponentInternalInstance;
7
+ $data: {};
8
+ $props: Partial<{
9
+ container?: any;
10
+ colorSchemaType?: any;
11
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
12
+ value: {
13
+ type: import("vue").PropType<any>;
14
+ required: boolean;
15
+ default?: any;
16
+ } & {
17
+ type: import("vue").PropType<any>;
18
+ required: boolean;
19
+ default?: any;
20
+ };
21
+ label: {
22
+ type: import("vue").PropType<string>;
23
+ required: boolean;
24
+ default?: string;
25
+ } & {
26
+ type: import("vue").PropType<string>;
27
+ required: boolean;
28
+ default?: string;
29
+ };
30
+ "v-model": import("vue").PropType<MaybeComputedRef<boolean>>;
31
+ modelValue: import("vue").PropType<MaybeComputedRef<boolean>>;
32
+ class: {
33
+ type: import("vue").PropType<String | String[]>;
34
+ required: boolean;
35
+ };
36
+ colorSchemaType?: any;
37
+ container?: any;
38
+ }>> & {
39
+ "onUpdate:modelValue"?: (value: any) => any;
40
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "container" | "colorSchemaType">;
41
+ $attrs: {
42
+ [x: string]: unknown;
43
+ };
44
+ $refs: {
45
+ [x: string]: unknown;
46
+ };
47
+ $slots: Readonly<{
48
+ [name: string]: import("vue").Slot;
49
+ }>;
50
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
51
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
52
+ $emit: (event: "update:modelValue", value: any) => void;
53
+ $el: any;
54
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
55
+ value: {
56
+ type: import("vue").PropType<any>;
57
+ required: boolean;
58
+ default?: any;
59
+ } & {
60
+ type: import("vue").PropType<any>;
61
+ required: boolean;
62
+ default?: any;
63
+ };
64
+ label: {
65
+ type: import("vue").PropType<string>;
66
+ required: boolean;
67
+ default?: string;
68
+ } & {
69
+ type: import("vue").PropType<string>;
70
+ required: boolean;
71
+ default?: string;
72
+ };
73
+ "v-model": import("vue").PropType<MaybeComputedRef<boolean>>;
74
+ modelValue: import("vue").PropType<MaybeComputedRef<boolean>>;
75
+ class: {
76
+ type: import("vue").PropType<String | String[]>;
77
+ required: boolean;
78
+ };
79
+ colorSchemaType?: any;
80
+ container?: any;
81
+ }>> & {
82
+ "onUpdate:modelValue"?: (value: any) => any;
83
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
84
+ "update:modelValue": (value: any) => boolean;
85
+ }, string, {
86
+ container?: any;
87
+ colorSchemaType?: any;
88
+ }, {}, string> & {
89
+ beforeCreate?: (() => void) | (() => void)[];
90
+ created?: (() => void) | (() => void)[];
91
+ beforeMount?: (() => void) | (() => void)[];
92
+ mounted?: (() => void) | (() => void)[];
93
+ beforeUpdate?: (() => void) | (() => void)[];
94
+ updated?: (() => void) | (() => void)[];
95
+ activated?: (() => void) | (() => void)[];
96
+ deactivated?: (() => void) | (() => void)[];
97
+ beforeDestroy?: (() => void) | (() => void)[];
98
+ beforeUnmount?: (() => void) | (() => void)[];
99
+ destroyed?: (() => void) | (() => void)[];
100
+ unmounted?: (() => void) | (() => void)[];
101
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
102
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
103
+ 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)[];
104
+ };
105
+ $forceUpdate: () => void;
106
+ $nextTick: typeof import("vue").nextTick;
107
+ $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;
108
+ } & Readonly<import("vue").ExtractPropTypes<{
109
+ value: {
110
+ type: import("vue").PropType<any>;
111
+ required: boolean;
112
+ default?: any;
113
+ } & {
114
+ type: import("vue").PropType<any>;
115
+ required: boolean;
116
+ default?: any;
117
+ };
118
+ label: {
119
+ type: import("vue").PropType<string>;
120
+ required: boolean;
121
+ default?: string;
122
+ } & {
123
+ type: import("vue").PropType<string>;
124
+ required: boolean;
125
+ default?: string;
126
+ };
127
+ "v-model": import("vue").PropType<MaybeComputedRef<boolean>>;
128
+ modelValue: import("vue").PropType<MaybeComputedRef<boolean>>;
129
+ class: {
130
+ type: import("vue").PropType<String | String[]>;
131
+ required: boolean;
132
+ };
133
+ colorSchemaType?: any;
134
+ container?: any;
135
+ }>> & {
136
+ "onUpdate:modelValue"?: (value: any) => any;
137
+ } & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
138
+ __isFragment?: never;
139
+ __isTeleport?: never;
140
+ __isSuspense?: never;
141
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
142
+ value: {
143
+ type: import("vue").PropType<any>;
144
+ required: boolean;
145
+ default?: any;
146
+ } & {
147
+ type: import("vue").PropType<any>;
148
+ required: boolean;
149
+ default?: any;
150
+ };
151
+ label: {
152
+ type: import("vue").PropType<string>;
153
+ required: boolean;
154
+ default?: string;
155
+ } & {
156
+ type: import("vue").PropType<string>;
157
+ required: boolean;
158
+ default?: string;
159
+ };
160
+ "v-model": import("vue").PropType<MaybeComputedRef<boolean>>;
161
+ modelValue: import("vue").PropType<MaybeComputedRef<boolean>>;
162
+ class: {
163
+ type: import("vue").PropType<String | String[]>;
164
+ required: boolean;
165
+ };
166
+ colorSchemaType?: any;
167
+ container?: any;
168
+ }>> & {
169
+ "onUpdate:modelValue"?: (value: any) => any;
170
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
171
+ "update:modelValue": (value: any) => boolean;
172
+ }, string, {
173
+ container?: any;
174
+ colorSchemaType?: any;
175
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
176
+ propsDefinition: Readonly<{
177
+ container?: any;
178
+ colorSchemaType?: any;
179
+ } & {
180
+ value?: any;
181
+ label?: string;
182
+ class?: String | String[];
183
+ modelValue?: MaybeComputedRef<boolean>;
184
+ "v-model"?: MaybeComputedRef<boolean>;
185
+ }> & {
186
+ "onUpdate:modelValue"?: (value: any) => any;
187
+ };
188
+ };
189
+ export default _default;
@@ -0,0 +1,3 @@
1
+ export declare const ColumnStyles: {
2
+ wrapper: string;
3
+ };
@@ -1,4 +1,5 @@
1
- export type ColsValue = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
1
+ export type ColsValue = "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
2
+ export type AlignmentType = "end" | "center" | "start" | "baseline" | "stretch" | "auto";
2
3
  declare const _default: {
3
4
  new (...args: any[]): {
4
5
  $: import("vue").ComponentInternalInstance;
@@ -61,6 +62,16 @@ declare const _default: {
61
62
  required: boolean;
62
63
  default?: ColsValue;
63
64
  };
65
+ "align-self": {
66
+ type: import("vue").PropType<AlignmentType>;
67
+ required: boolean;
68
+ default?: AlignmentType;
69
+ };
70
+ alignSelf: {
71
+ type: import("vue").PropType<AlignmentType>;
72
+ required: boolean;
73
+ default?: AlignmentType;
74
+ };
64
75
  class: {
65
76
  type: import("vue").PropType<String | String[]>;
66
77
  required: boolean;
@@ -136,6 +147,16 @@ declare const _default: {
136
147
  required: boolean;
137
148
  default?: ColsValue;
138
149
  };
150
+ "align-self": {
151
+ type: import("vue").PropType<AlignmentType>;
152
+ required: boolean;
153
+ default?: AlignmentType;
154
+ };
155
+ alignSelf: {
156
+ type: import("vue").PropType<AlignmentType>;
157
+ required: boolean;
158
+ default?: AlignmentType;
159
+ };
139
160
  class: {
140
161
  type: import("vue").PropType<String | String[]>;
141
162
  required: boolean;
@@ -220,6 +241,16 @@ declare const _default: {
220
241
  required: boolean;
221
242
  default?: ColsValue;
222
243
  };
244
+ "align-self": {
245
+ type: import("vue").PropType<AlignmentType>;
246
+ required: boolean;
247
+ default?: AlignmentType;
248
+ };
249
+ alignSelf: {
250
+ type: import("vue").PropType<AlignmentType>;
251
+ required: boolean;
252
+ default?: AlignmentType;
253
+ };
223
254
  class: {
224
255
  type: import("vue").PropType<String | String[]>;
225
256
  required: boolean;
@@ -285,6 +316,16 @@ declare const _default: {
285
316
  required: boolean;
286
317
  default?: ColsValue;
287
318
  };
319
+ "align-self": {
320
+ type: import("vue").PropType<AlignmentType>;
321
+ required: boolean;
322
+ default?: AlignmentType;
323
+ };
324
+ alignSelf: {
325
+ type: import("vue").PropType<AlignmentType>;
326
+ required: boolean;
327
+ default?: AlignmentType;
328
+ };
288
329
  class: {
289
330
  type: import("vue").PropType<String | String[]>;
290
331
  required: boolean;
@@ -304,7 +345,9 @@ declare const _default: {
304
345
  md?: ColsValue;
305
346
  lg?: ColsValue;
306
347
  class?: String | String[];
348
+ alignSelf?: AlignmentType;
307
349
  xl?: ColsValue;
350
+ "align-self"?: AlignmentType;
308
351
  cols?: ColsValue;
309
352
  }>;
310
353
  };
@@ -3,7 +3,7 @@ export declare const DialogStyles: {
3
3
  titleWrapper: string;
4
4
  fixedContent: (backgroundColor: string) => string;
5
5
  activator: string;
6
- contentScrollWrapper: (customScroll: boolean, hasButtons: any, fullSize: any) => string;
6
+ contentScrollWrapper: (customScroll: boolean, hasButtons: boolean, fullSize: boolean, staticContent: boolean) => string;
7
7
  notScrollOutside: string;
8
8
  iconWrapper: (dark: boolean) => string;
9
9
  footerWrapper: (backgroundColor: string) => string;