@omnia/fx 8.0.38-vnext → 8.0.39-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 (29) hide show
  1. package/internal-do-not-import-from-here/stores/oxide/ComponentHostStore.d.ts +22 -14
  2. package/internal-do-not-import-from-here/ux/docs/chrome/SampleViewer.d.ts +2 -2
  3. package/internal-do-not-import-from-here/ux/documenticon/DocumentIcon.d.ts +2 -2
  4. package/internal-do-not-import-from-here/ux/documenticon/IDocumentIcon.d.ts +2 -2
  5. package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.d.ts +2 -2
  6. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.css.d.ts +3 -3
  7. package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +7 -7
  8. package/internal-do-not-import-from-here/ux/oxide/btn/Button.css.d.ts +1 -1
  9. package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +15 -16
  10. package/internal-do-not-import-from-here/ux/oxide/btngroup/ButtonGroup.d.ts +5 -5
  11. package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +35 -35
  12. package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +5 -5
  13. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.d.ts +5 -5
  14. package/internal-do-not-import-from-here/ux/oxide/{componenthostprovider/ComponentHostProvider.d.ts → hostprovider/HostProvider.d.ts} +44 -32
  15. package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +10 -10
  16. package/internal-do-not-import-from-here/ux/oxide/image/Image.d.ts +5 -5
  17. package/internal-do-not-import-from-here/ux/oxide/list/List.d.ts +10 -10
  18. package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +5 -5
  19. package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +5 -5
  20. package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +10 -10
  21. package/internal-do-not-import-from-here/ux/oxide/panel/Panel.d.ts +25 -25
  22. package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +5 -5
  23. package/internal-do-not-import-from-here/ux/oxide/tab/Tab.d.ts +5 -5
  24. package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.css.d.ts +1 -1
  25. package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +5 -5
  26. package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +10 -10
  27. package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +0 -11
  28. package/internal-do-not-import-from-here/wctypings.d.ts +2 -2
  29. package/package.json +2 -2
@@ -1,28 +1,36 @@
1
- declare const HostContainerTypeDefinitions: string[];
2
- export type HostContainerTypes = typeof HostContainerTypeDefinitions[number];
3
- declare const ContainerVariantDefinitions: string[];
4
- export type ContainerVariants = typeof ContainerVariantDefinitions[number];
1
+ declare const HostTypeDefinitions: readonly ["admin", "editor", "docs"];
2
+ export type HostTypes = typeof HostTypeDefinitions[number];
3
+ declare const ComponentHostTypeDefinitions: readonly ["dialog", "drawer", "expansion-panel", "blade", "app"];
4
+ export type ComponentHostTypes = typeof ComponentHostTypeDefinitions[number];
5
+ declare const ComponentVariantDefinitions: readonly ["footer", "content", "navigation", "header", "settings"];
6
+ export type ComponentVariants = typeof ComponentVariantDefinitions[number];
5
7
  export declare const useCompontentHostStore: (newInstanceWithName?: string) => {
6
8
  state: {
7
- hostType: string;
8
- containerVariant: string;
9
+ host: "admin" | "editor" | "docs";
10
+ componentHost: "dialog" | "drawer" | "expansion-panel" | "blade" | "app";
11
+ componentVariant: "footer" | "header" | "content" | "navigation" | "settings";
9
12
  force: boolean;
10
13
  };
11
14
  get: {
12
- readonly hostType: string;
13
- readonly containerVariant: string;
15
+ canApplyOn: (hostType: ComponentHostTypes | HostTypes, variant?: any) => boolean;
16
+ readonly host: "admin" | "editor" | "docs";
17
+ readonly componentHost: "dialog" | "drawer" | "expansion-panel" | "blade" | "app";
18
+ readonly componentVariant: "footer" | "header" | "content" | "navigation" | "settings";
14
19
  readonly force: boolean;
15
20
  };
16
21
  actions: {
17
- setHostType: (type: HostContainerTypes) => void;
18
- setVariant: (variant: ContainerVariants) => void;
22
+ setHost: (type: HostTypes) => void;
23
+ setComponentHost: (type: ComponentHostTypes) => void;
24
+ setComponentVariant: (variant: ComponentVariants) => void;
19
25
  setForce: (value: boolean) => void;
20
26
  };
21
27
  events: {
22
- onMutatingHostType: import("@omnia/fx").EventHook<string>;
23
- onMutatedHostType: import("@omnia/fx").EventHook<string>;
24
- onMutatingContainerVariant: import("@omnia/fx").EventHook<string>;
25
- onMutatedContainerVariant: import("@omnia/fx").EventHook<string>;
28
+ onMutatingHost: import("@omnia/fx").EventHook<"admin" | "editor" | "docs">;
29
+ onMutatedHost: import("@omnia/fx").EventHook<"admin" | "editor" | "docs">;
30
+ onMutatingComponentHost: import("@omnia/fx").EventHook<"dialog" | "drawer" | "expansion-panel" | "blade" | "app">;
31
+ onMutatedComponentHost: import("@omnia/fx").EventHook<"dialog" | "drawer" | "expansion-panel" | "blade" | "app">;
32
+ onMutatingComponentVariant: import("@omnia/fx").EventHook<"footer" | "header" | "content" | "navigation" | "settings">;
33
+ onMutatedComponentVariant: import("@omnia/fx").EventHook<"footer" | "header" | "content" | "navigation" | "settings">;
26
34
  onMutatingForce: import("@omnia/fx").EventHook<boolean>;
27
35
  onMutatedForce: import("@omnia/fx").EventHook<boolean>;
28
36
  };
@@ -49,9 +49,9 @@ declare const _default: {
49
49
  [key: string]: any;
50
50
  }>) => void)[];
51
51
  readonly description?: string;
52
+ readonly component?: any;
52
53
  readonly relativeUrl?: string;
53
54
  readonly "relative-url"?: string;
54
- readonly component?: any;
55
55
  };
56
56
  $attrs: {
57
57
  [x: string]: unknown;
@@ -160,9 +160,9 @@ declare const _default: {
160
160
  propsDefinition: Omit<Readonly<{} & {
161
161
  title?: string;
162
162
  description?: string;
163
+ component?: any;
163
164
  relativeUrl?: string;
164
165
  "relative-url"?: string;
165
- component?: any;
166
166
  }>, never>;
167
167
  };
168
168
  export default _default;
@@ -1,10 +1,10 @@
1
1
  import { VueComponentBase } from "@omnia/fx/ux";
2
2
  import { IWebComponentInstance } from "../..";
3
3
  import { IDocumentIcon } from "./IDocumentIcon";
4
- import { OIconSizes, ImageSources } from "../../models";
4
+ import { ImageSources, IconSizes } from "../../models";
5
5
  export declare class DocumentIcon extends VueComponentBase implements IWebComponentInstance, IDocumentIcon {
6
6
  color?: string;
7
- size?: OIconSizes;
7
+ size?: IconSizes;
8
8
  source?: ImageSources;
9
9
  extension: string;
10
10
  content: string;
@@ -1,7 +1,7 @@
1
- import { OIconSizes, ImageSources } from "@omnia/fx/models";
1
+ import { IconSizes, ImageSources } from "@omnia/fx/models";
2
2
  import { TsxAllowUnknowProperties } from "../TsxAllowUnknowProperties";
3
3
  export interface IDocumentIconProperties {
4
- size?: OIconSizes;
4
+ size?: IconSizes;
5
5
  source?: ImageSources;
6
6
  extension: string;
7
7
  color?: string;
@@ -54,6 +54,7 @@ declare const _default: {
54
54
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
55
55
  [key: string]: any;
56
56
  }>) => void)[];
57
+ readonly settings?: boolean;
57
58
  readonly "v-slots"?: {
58
59
  default?: Func<[VNodeChild]>;
59
60
  } & {
@@ -61,7 +62,6 @@ declare const _default: {
61
62
  actionsFooter?: Func<[VNodeChild]>;
62
63
  };
63
64
  readonly variant?: string;
64
- readonly settings?: boolean;
65
65
  readonly create?: boolean;
66
66
  readonly save?: boolean;
67
67
  readonly subTitle?: string;
@@ -301,6 +301,7 @@ declare const _default: {
301
301
  delete?: boolean;
302
302
  size?: BladeSizes;
303
303
  icon?: IIcon;
304
+ settings?: boolean;
304
305
  "v-slots"?: {
305
306
  default?: Func<[VNodeChild]>;
306
307
  } & {
@@ -308,7 +309,6 @@ declare const _default: {
308
309
  actionsFooter?: Func<[VNodeChild]>;
309
310
  };
310
311
  variant?: string;
311
- settings?: boolean;
312
312
  create?: boolean;
313
313
  save?: boolean;
314
314
  subTitle?: string;
@@ -1,9 +1,9 @@
1
- import { OIconSizes, BlockTitleIconSettings, BlockTitleSettings, TextAlignment } from "../../../../../models";
1
+ import { BlockTitleIconSettings, BlockTitleSettings, TextAlignment, IconSizes } from "../../../../../models";
2
2
  import { ITheming } from "../../../..";
3
3
  export declare const BlockTitleStyles: {
4
4
  safeGetSpacingPixels(value: any, spacing: any): string;
5
- getIconOffset(iconSize: OIconSizes): -10 | -15 | -25 | -30;
6
- getIconOffsetIconOnly(iconSize: OIconSizes): -5 | -15 | -17;
5
+ getIconOffset(iconSize: IconSizes): -10 | -15 | -25 | -30;
6
+ getIconOffsetIconOnly(iconSize: IconSizes): -5 | -15 | -17;
7
7
  iconWrapperButton: (settings: BlockTitleIconSettings) => string;
8
8
  iconInButton: (settings: BlockTitleIconSettings, theming: ITheming) => string;
9
9
  wrapper: (settings: BlockTitleSettings, textAlignment: TextAlignment, theming: ITheming) => string;
@@ -57,13 +57,13 @@ declare const _default: {
57
57
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
58
58
  [key: string]: any;
59
59
  }>) => void)[];
60
+ readonly navigation?: boolean;
60
61
  readonly "v-slots"?: {
61
62
  default?: Func<[VNodeChild]>;
62
63
  } & {
63
64
  actionButtons?: Func<[VNodeChild]>;
64
65
  };
65
- readonly variant?: string;
66
- readonly navigation?: boolean;
66
+ readonly variant?: "default" | "admin";
67
67
  readonly closable?: boolean;
68
68
  readonly subTitle?: string;
69
69
  "onClick:navigation"?: () => any;
@@ -101,7 +101,7 @@ declare const _default: {
101
101
  type: import("vue").PropType<boolean>;
102
102
  };
103
103
  variant: {
104
- type: import("vue").PropType<string>;
104
+ type: import("vue").PropType<"default" | "admin">;
105
105
  };
106
106
  absolute: {
107
107
  type: import("vue").PropType<boolean>;
@@ -169,7 +169,7 @@ declare const _default: {
169
169
  type: import("vue").PropType<boolean>;
170
170
  };
171
171
  variant: {
172
- type: import("vue").PropType<string>;
172
+ type: import("vue").PropType<"default" | "admin">;
173
173
  };
174
174
  absolute: {
175
175
  type: import("vue").PropType<boolean>;
@@ -212,7 +212,7 @@ declare const _default: {
212
212
  type: import("vue").PropType<boolean>;
213
213
  };
214
214
  variant: {
215
- type: import("vue").PropType<string>;
215
+ type: import("vue").PropType<"default" | "admin">;
216
216
  };
217
217
  absolute: {
218
218
  type: import("vue").PropType<boolean>;
@@ -253,13 +253,13 @@ declare const _default: {
253
253
  class?: String | String[];
254
254
  id?: string;
255
255
  absolute?: boolean;
256
+ navigation?: boolean;
256
257
  "v-slots"?: {
257
258
  default?: Func<[VNodeChild]>;
258
259
  } & {
259
260
  actionButtons?: Func<[VNodeChild]>;
260
261
  };
261
- variant?: string;
262
- navigation?: boolean;
262
+ variant?: "default" | "admin";
263
263
  closable?: boolean;
264
264
  subTitle?: string;
265
265
  }>, "onClick:navigation" | "onClick:close"> & {
@@ -1,5 +1,5 @@
1
1
  import { ButtonVariants } from "@omnia/fx-models";
2
2
  export declare const buttonStyles: {
3
3
  transparentWrapper: string;
4
- wrapper: (background: string, text: string, iconColor: string, variant: ButtonVariants) => string;
4
+ wrapper: (background: string, text: string, iconColor: string, variant: ButtonVariants, transparent: boolean) => string;
5
5
  };
@@ -15,7 +15,7 @@ declare const _default: {
15
15
  style?: unknown;
16
16
  class?: String | String[];
17
17
  key?: string | number | symbol;
18
- readonly size?: string;
18
+ readonly size?: "small" | "default" | "x-small";
19
19
  readonly icon?: ButtonIconOptions;
20
20
  readonly tooltip?: ButtonTooltipOptions;
21
21
  readonly active?: boolean;
@@ -61,10 +61,10 @@ declare const _default: {
61
61
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
62
62
  [key: string]: any;
63
63
  }>) => void)[];
64
- readonly variant?: string;
64
+ readonly variant?: "default" | "opacity" | "toolbar" | "prominent" | "dial";
65
65
  readonly loading?: boolean;
66
66
  readonly overrides?: object;
67
- readonly preset?: string;
67
+ readonly preset?: "cancel" | "close" | "delete" | "settings" | "create" | "ok" | "save" | "icon-add" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-navigate" | "icon-settings";
68
68
  readonly grouped?: boolean;
69
69
  readonly toned?: boolean;
70
70
  };
@@ -105,19 +105,19 @@ declare const _default: {
105
105
  type: import("vue").PropType<boolean>;
106
106
  };
107
107
  size: {
108
- type: import("vue").PropType<string>;
108
+ type: import("vue").PropType<"small" | "default" | "x-small">;
109
109
  };
110
110
  tooltip: {
111
111
  type: import("vue").PropType<ButtonTooltipOptions>;
112
112
  };
113
113
  preset: {
114
- type: import("vue").PropType<string>;
114
+ type: import("vue").PropType<"cancel" | "close" | "delete" | "settings" | "create" | "ok" | "save" | "icon-add" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-navigate" | "icon-settings">;
115
115
  };
116
116
  overrides: {
117
117
  type: import("vue").PropType<object>;
118
118
  };
119
119
  variant: {
120
- type: import("vue").PropType<string>;
120
+ type: import("vue").PropType<"default" | "opacity" | "toolbar" | "prominent" | "dial">;
121
121
  };
122
122
  text: {
123
123
  type: import("vue").PropType<string>;
@@ -184,19 +184,19 @@ declare const _default: {
184
184
  type: import("vue").PropType<boolean>;
185
185
  };
186
186
  size: {
187
- type: import("vue").PropType<string>;
187
+ type: import("vue").PropType<"small" | "default" | "x-small">;
188
188
  };
189
189
  tooltip: {
190
190
  type: import("vue").PropType<ButtonTooltipOptions>;
191
191
  };
192
192
  preset: {
193
- type: import("vue").PropType<string>;
193
+ type: import("vue").PropType<"cancel" | "close" | "delete" | "settings" | "create" | "ok" | "save" | "icon-add" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-navigate" | "icon-settings">;
194
194
  };
195
195
  overrides: {
196
196
  type: import("vue").PropType<object>;
197
197
  };
198
198
  variant: {
199
- type: import("vue").PropType<string>;
199
+ type: import("vue").PropType<"default" | "opacity" | "toolbar" | "prominent" | "dial">;
200
200
  };
201
201
  text: {
202
202
  type: import("vue").PropType<string>;
@@ -214,7 +214,6 @@ declare const _default: {
214
214
  blueprintType?: any;
215
215
  blueprint?: any;
216
216
  }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
217
- /** End Component host provider settings */
218
217
  __isFragment?: never;
219
218
  __isTeleport?: never;
220
219
  __isSuspense?: never;
@@ -242,19 +241,19 @@ declare const _default: {
242
241
  type: import("vue").PropType<boolean>;
243
242
  };
244
243
  size: {
245
- type: import("vue").PropType<string>;
244
+ type: import("vue").PropType<"small" | "default" | "x-small">;
246
245
  };
247
246
  tooltip: {
248
247
  type: import("vue").PropType<ButtonTooltipOptions>;
249
248
  };
250
249
  preset: {
251
- type: import("vue").PropType<string>;
250
+ type: import("vue").PropType<"cancel" | "close" | "delete" | "settings" | "create" | "ok" | "save" | "icon-add" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-navigate" | "icon-settings">;
252
251
  };
253
252
  overrides: {
254
253
  type: import("vue").PropType<object>;
255
254
  };
256
255
  variant: {
257
- type: import("vue").PropType<string>;
256
+ type: import("vue").PropType<"default" | "opacity" | "toolbar" | "prominent" | "dial">;
258
257
  };
259
258
  text: {
260
259
  type: import("vue").PropType<string>;
@@ -288,15 +287,15 @@ declare const _default: {
288
287
  block?: boolean;
289
288
  text?: string;
290
289
  class?: String | String[];
291
- size?: string;
290
+ size?: "small" | "default" | "x-small";
292
291
  icon?: ButtonIconOptions;
293
292
  tooltip?: ButtonTooltipOptions;
294
293
  active?: boolean;
295
294
  disabled?: boolean;
296
- variant?: string;
295
+ variant?: "default" | "opacity" | "toolbar" | "prominent" | "dial";
297
296
  loading?: boolean;
298
297
  overrides?: object;
299
- preset?: string;
298
+ preset?: "cancel" | "close" | "delete" | "settings" | "create" | "ok" | "save" | "icon-add" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-navigate" | "icon-settings";
300
299
  grouped?: boolean;
301
300
  toned?: boolean;
302
301
  }>, never>;
@@ -63,7 +63,7 @@ declare const _default: {
63
63
  } & {
64
64
  activator?: () => VNodeChild;
65
65
  };
66
- readonly variant?: string;
66
+ readonly variant?: "default" | "drawer" | "dial";
67
67
  readonly toned?: boolean;
68
68
  };
69
69
  $attrs: {
@@ -108,7 +108,7 @@ declare const _default: {
108
108
  required: false;
109
109
  };
110
110
  variant: {
111
- type: import("vue").PropType<string>;
111
+ type: import("vue").PropType<"default" | "drawer" | "dial">;
112
112
  };
113
113
  class: {
114
114
  type: import("vue").PropType<String | String[]>;
@@ -176,7 +176,7 @@ declare const _default: {
176
176
  required: false;
177
177
  };
178
178
  variant: {
179
- type: import("vue").PropType<string>;
179
+ type: import("vue").PropType<"default" | "drawer" | "dial">;
180
180
  };
181
181
  class: {
182
182
  type: import("vue").PropType<String | String[]>;
@@ -222,7 +222,7 @@ declare const _default: {
222
222
  required: false;
223
223
  };
224
224
  variant: {
225
- type: import("vue").PropType<string>;
225
+ type: import("vue").PropType<"default" | "drawer" | "dial">;
226
226
  };
227
227
  class: {
228
228
  type: import("vue").PropType<String | String[]>;
@@ -260,7 +260,7 @@ declare const _default: {
260
260
  } & {
261
261
  activator?: () => VNodeChild;
262
262
  };
263
- variant?: string;
263
+ variant?: "default" | "drawer" | "dial";
264
264
  toned?: boolean;
265
265
  }>, never>;
266
266
  };
@@ -8,14 +8,14 @@ declare const _default: {
8
8
  colorSchemaType?: any;
9
9
  blueprintType?: any;
10
10
  colors?: any;
11
- readonly xs?: string;
12
- readonly sm?: string;
13
- readonly md?: string;
14
- readonly lg?: string;
11
+ readonly xs?: "1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
12
+ readonly sm?: "1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
13
+ readonly md?: "1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
14
+ readonly lg?: "1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
15
15
  style?: unknown;
16
16
  class?: String | String[];
17
17
  key?: string | number | symbol;
18
- readonly alignSelf?: string;
18
+ readonly alignSelf?: "center" | "auto" | "stretch" | "end" | "start" | "baseline";
19
19
  ref?: import("vue").VNodeRef;
20
20
  ref_for?: boolean;
21
21
  ref_key?: string;
@@ -57,8 +57,8 @@ declare const _default: {
57
57
  }>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
58
58
  [key: string]: any;
59
59
  }>) => void)[];
60
- readonly xl?: string;
61
- readonly cols?: string;
60
+ readonly xl?: "1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
61
+ readonly cols?: "1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
62
62
  };
63
63
  $attrs: {
64
64
  [x: string]: unknown;
@@ -75,25 +75,25 @@ declare const _default: {
75
75
  $el: any;
76
76
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
77
77
  xl: {
78
- type: import("vue").PropType<string>;
78
+ type: import("vue").PropType<"1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
79
79
  };
80
80
  lg: {
81
- type: import("vue").PropType<string>;
81
+ type: import("vue").PropType<"1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
82
82
  };
83
83
  md: {
84
- type: import("vue").PropType<string>;
84
+ type: import("vue").PropType<"1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
85
85
  };
86
86
  sm: {
87
- type: import("vue").PropType<string>;
87
+ type: import("vue").PropType<"1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
88
88
  };
89
89
  xs: {
90
- type: import("vue").PropType<string>;
90
+ type: import("vue").PropType<"1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
91
91
  };
92
92
  cols: {
93
- type: import("vue").PropType<string>;
93
+ type: import("vue").PropType<"1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
94
94
  };
95
95
  alignSelf: {
96
- type: import("vue").PropType<string>;
96
+ type: import("vue").PropType<"center" | "auto" | "stretch" | "end" | "start" | "baseline">;
97
97
  };
98
98
  class: {
99
99
  type: import("vue").PropType<String | String[]>;
@@ -132,25 +132,25 @@ declare const _default: {
132
132
  $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
133
  } & Readonly<import("vue").ExtractPropTypes<{
134
134
  xl: {
135
- type: import("vue").PropType<string>;
135
+ type: import("vue").PropType<"1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
136
136
  };
137
137
  lg: {
138
- type: import("vue").PropType<string>;
138
+ type: import("vue").PropType<"1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
139
139
  };
140
140
  md: {
141
- type: import("vue").PropType<string>;
141
+ type: import("vue").PropType<"1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
142
142
  };
143
143
  sm: {
144
- type: import("vue").PropType<string>;
144
+ type: import("vue").PropType<"1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
145
145
  };
146
146
  xs: {
147
- type: import("vue").PropType<string>;
147
+ type: import("vue").PropType<"1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
148
148
  };
149
149
  cols: {
150
- type: import("vue").PropType<string>;
150
+ type: import("vue").PropType<"1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
151
151
  };
152
152
  alignSelf: {
153
- type: import("vue").PropType<string>;
153
+ type: import("vue").PropType<"center" | "auto" | "stretch" | "end" | "start" | "baseline">;
154
154
  };
155
155
  class: {
156
156
  type: import("vue").PropType<String | String[]>;
@@ -167,25 +167,25 @@ declare const _default: {
167
167
  __isSuspense?: never;
168
168
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
169
169
  xl: {
170
- type: import("vue").PropType<string>;
170
+ type: import("vue").PropType<"1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
171
171
  };
172
172
  lg: {
173
- type: import("vue").PropType<string>;
173
+ type: import("vue").PropType<"1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
174
174
  };
175
175
  md: {
176
- type: import("vue").PropType<string>;
176
+ type: import("vue").PropType<"1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
177
177
  };
178
178
  sm: {
179
- type: import("vue").PropType<string>;
179
+ type: import("vue").PropType<"1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
180
180
  };
181
181
  xs: {
182
- type: import("vue").PropType<string>;
182
+ type: import("vue").PropType<"1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
183
183
  };
184
184
  cols: {
185
- type: import("vue").PropType<string>;
185
+ type: import("vue").PropType<"1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
186
186
  };
187
187
  alignSelf: {
188
- type: import("vue").PropType<string>;
188
+ type: import("vue").PropType<"center" | "auto" | "stretch" | "end" | "start" | "baseline">;
189
189
  };
190
190
  class: {
191
191
  type: import("vue").PropType<String | String[]>;
@@ -210,14 +210,14 @@ declare const _default: {
210
210
  blueprintType?: any;
211
211
  colors?: any;
212
212
  } & {
213
- xs?: string;
214
- sm?: string;
215
- md?: string;
216
- lg?: string;
213
+ xs?: "1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
214
+ sm?: "1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
215
+ md?: "1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
216
+ lg?: "1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
217
217
  class?: String | String[];
218
- alignSelf?: string;
219
- xl?: string;
220
- cols?: string;
218
+ alignSelf?: "center" | "auto" | "stretch" | "end" | "start" | "baseline";
219
+ xl?: "1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
220
+ cols?: "1" | "4" | "2" | "3" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
221
221
  }>, never>;
222
222
  };
223
223
  export default _default;
@@ -73,7 +73,7 @@ declare const _default: {
73
73
  actions?: Func<[VNodeChild]>;
74
74
  navigation?: Func<[VNodeChild]>;
75
75
  };
76
- readonly variant?: string;
76
+ readonly variant?: "default" | "confirm" | "app" | "save-cancel" | "ok-cancel";
77
77
  readonly subTitle?: string;
78
78
  "onClick:close"?: () => any;
79
79
  readonly hiddenCloseButton?: boolean;
@@ -104,7 +104,7 @@ declare const _default: {
104
104
  required: false;
105
105
  };
106
106
  variant: {
107
- type: import("vue").PropType<string>;
107
+ type: import("vue").PropType<"default" | "confirm" | "app" | "save-cancel" | "ok-cancel">;
108
108
  };
109
109
  size: {
110
110
  type: import("vue").PropType<string>;
@@ -196,7 +196,7 @@ declare const _default: {
196
196
  required: false;
197
197
  };
198
198
  variant: {
199
- type: import("vue").PropType<string>;
199
+ type: import("vue").PropType<"default" | "confirm" | "app" | "save-cancel" | "ok-cancel">;
200
200
  };
201
201
  size: {
202
202
  type: import("vue").PropType<string>;
@@ -261,7 +261,7 @@ declare const _default: {
261
261
  required: false;
262
262
  };
263
263
  variant: {
264
- type: import("vue").PropType<string>;
264
+ type: import("vue").PropType<"default" | "confirm" | "app" | "save-cancel" | "ok-cancel">;
265
265
  };
266
266
  size: {
267
267
  type: import("vue").PropType<string>;
@@ -348,7 +348,7 @@ declare const _default: {
348
348
  actions?: Func<[VNodeChild]>;
349
349
  navigation?: Func<[VNodeChild]>;
350
350
  };
351
- variant?: string;
351
+ variant?: "default" | "confirm" | "app" | "save-cancel" | "ok-cancel";
352
352
  subTitle?: string;
353
353
  hiddenCloseButton?: boolean;
354
354
  contentHeight?: string;
@@ -61,7 +61,7 @@ declare const _default: {
61
61
  } & {
62
62
  header?: Func<[VNodeChild]>;
63
63
  };
64
- readonly variant?: string;
64
+ readonly variant?: "default" | "navigation";
65
65
  readonly toned?: boolean;
66
66
  readonly hideExpandIcon?: boolean;
67
67
  };
@@ -93,7 +93,7 @@ declare const _default: {
93
93
  type: import("vue").PropType<boolean>;
94
94
  };
95
95
  variant: {
96
- type: import("vue").PropType<string>;
96
+ type: import("vue").PropType<"default" | "navigation">;
97
97
  };
98
98
  icon: {
99
99
  type: import("vue").PropType<IIcon>;
@@ -151,7 +151,7 @@ declare const _default: {
151
151
  type: import("vue").PropType<boolean>;
152
152
  };
153
153
  variant: {
154
- type: import("vue").PropType<string>;
154
+ type: import("vue").PropType<"default" | "navigation">;
155
155
  };
156
156
  icon: {
157
157
  type: import("vue").PropType<IIcon>;
@@ -187,7 +187,7 @@ declare const _default: {
187
187
  type: import("vue").PropType<boolean>;
188
188
  };
189
189
  variant: {
190
- type: import("vue").PropType<string>;
190
+ type: import("vue").PropType<"default" | "navigation">;
191
191
  };
192
192
  icon: {
193
193
  type: import("vue").PropType<IIcon>;
@@ -226,7 +226,7 @@ declare const _default: {
226
226
  } & {
227
227
  header?: Func<[VNodeChild]>;
228
228
  };
229
- variant?: string;
229
+ variant?: "default" | "navigation";
230
230
  toned?: boolean;
231
231
  hideExpandIcon?: boolean;
232
232
  }>, never>;