@omnia/fx 8.0.52-dev → 8.0.53-dev

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 (84) hide show
  1. package/internal-do-not-import-from-here/stores/oxide/ComponentHostStore.d.ts +3 -3
  2. package/internal-do-not-import-from-here/ux/datetimepicker/DateTimePicker.d.ts +2 -2
  3. package/internal-do-not-import-from-here/ux/datetimezonepicker/DateTimeZonePicker.d.ts +2 -2
  4. package/internal-do-not-import-from-here/ux/fileuploader/FileUploader.d.ts +7 -7
  5. package/internal-do-not-import-from-here/ux/filterengine/FilterEngineRenderer.d.ts +260 -53
  6. package/internal-do-not-import-from-here/ux/filterengine/FilterEngineSection.d.ts +22 -10
  7. package/internal-do-not-import-from-here/ux/filterengine/FilterEngineSettings.d.ts +58 -22
  8. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/PropertyDropdownRenderer.d.ts +40 -22
  9. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/PropertyListRenderer.d.ts +40 -16
  10. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/boolean/BooleanPropertyRenderer.d.ts +3 -3
  11. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/date/DatePropertyRenderer.d.ts +3 -3
  12. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/date/DateTimePeriodSlider.d.ts +434 -19
  13. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/dialog/DialogContent.d.ts +22 -10
  14. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/number/NumberPropertyRenderer.d.ts +3 -3
  15. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyChipItem.d.ts +42 -34
  16. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyChips.d.ts +22 -10
  17. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyItemRenderer.d.ts +92 -31
  18. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyList.d.ts +48 -13
  19. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyRenderer.d.ts +3 -9
  20. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/tags/TagsPropertyChips.d.ts +22 -10
  21. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/tags/TagsPropertyRenderer.d.ts +3 -3
  22. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/text/TextPropertyRefinementSelection.d.ts +92 -31
  23. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/text/TextPropertyRenderer.d.ts +3 -3
  24. package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/boolean/SelectionsAreaBooleanRenderer.d.ts +3 -3
  25. package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/date/SelectionsAreaDateRenderer.d.ts +3 -3
  26. package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/number/SelectionsAreaNumberRenderer.d.ts +3 -3
  27. package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/person/SelectionsAreaPersonRenderer.d.ts +3 -3
  28. package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/tags/SelectionsAreaTagsRenderer.d.ts +3 -3
  29. package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/text/SelectionsAreaTextRenderer.d.ts +3 -3
  30. package/internal-do-not-import-from-here/ux/filterengine/components/settings/PropertyList.d.ts +58 -22
  31. package/internal-do-not-import-from-here/ux/filterengine/components/settings/boolean/BooleanPropertyDefaultValueInput.d.ts +19 -13
  32. package/internal-do-not-import-from-here/ux/filterengine/components/settings/boolean/BooleanPropertySettings.d.ts +15 -9
  33. package/internal-do-not-import-from-here/ux/filterengine/components/settings/date/DatePropertyDefaultValueInput.d.ts +19 -13
  34. package/internal-do-not-import-from-here/ux/filterengine/components/settings/date/DatePropertySettings.d.ts +15 -9
  35. package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertyDefaultValueInput.d.ts +19 -13
  36. package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertySettings.d.ts +15 -9
  37. package/internal-do-not-import-from-here/ux/filterengine/components/settings/person/PersonPropertyDefaultValueInput.d.ts +51 -128
  38. package/internal-do-not-import-from-here/ux/filterengine/components/settings/person/PersonPropertySettings.d.ts +15 -9
  39. package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertyDefaultValueInput.d.ts +19 -13
  40. package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertySettings.d.ts +15 -9
  41. package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertyDefaultValueInput.d.ts +19 -13
  42. package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertySettings.d.ts +15 -9
  43. package/internal-do-not-import-from-here/ux/filterengine/handler/FilterEngineHandler.d.ts +1 -2
  44. package/internal-do-not-import-from-here/ux/filterengine/shared/PropsType.d.ts +3 -0
  45. package/internal-do-not-import-from-here/ux/filterengine/shared/index.d.ts +1 -0
  46. package/internal-do-not-import-from-here/ux/iconpicker/IconPicker.d.ts +2 -2
  47. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.d.ts +7 -7
  48. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerButton.d.ts +2 -2
  49. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerField.d.ts +2 -2
  50. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerInlineField.d.ts +2 -2
  51. package/internal-do-not-import-from-here/ux/journey/index.d.ts +1 -0
  52. package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.d.ts +14 -13
  53. package/internal-do-not-import-from-here/ux/journey/v2/use/UseBlade.d.ts +688 -0
  54. package/internal-do-not-import-from-here/ux/journey/v2/use/index.d.ts +1 -0
  55. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/MediaPicker.d.ts +7 -7
  56. package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +12 -12
  57. package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.d.ts +2 -2
  58. package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +36 -36
  59. package/internal-do-not-import-from-here/ux/oxide/flex/Col.css.d.ts +11 -0
  60. package/internal-do-not-import-from-here/ux/oxide/flex/Col.d.ts +211 -0
  61. package/internal-do-not-import-from-here/ux/oxide/flex/Flex2.css.d.ts +3 -0
  62. package/internal-do-not-import-from-here/ux/oxide/flex/Flex2.d.ts +155 -0
  63. package/internal-do-not-import-from-here/ux/oxide/flex/Row.css.d.ts +11 -0
  64. package/internal-do-not-import-from-here/ux/oxide/flex/Row.d.ts +211 -0
  65. package/internal-do-not-import-from-here/ux/oxide/hostprovider/HostProvider.d.ts +12 -12
  66. package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +2 -2
  67. package/internal-do-not-import-from-here/ux/oxide/rating/Rating.d.ts +2 -2
  68. package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +8 -8
  69. package/internal-do-not-import-from-here/ux/oxide/slider/Slider.d.ts +4 -4
  70. package/internal-do-not-import-from-here/ux/oxide/switch/Switch.d.ts +4 -4
  71. package/internal-do-not-import-from-here/ux/oxide/textarea/TextArea.d.ts +6 -6
  72. package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +7 -7
  73. package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +6 -6
  74. package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyBindingValueRenderer.d.ts +33 -7
  75. package/internal-do-not-import-from-here/ux/richtexteditor/EditorMenuBar.d.ts +2 -2
  76. package/internal-do-not-import-from-here/ux/settings/SettingsPane.d.ts +2 -2
  77. package/internal-do-not-import-from-here/ux/signin/omnia/providers/MagicLinkProvider.d.ts +2 -2
  78. package/internal-do-not-import-from-here/ux/signin/omnia/providers/OtpProvider.d.ts +2 -2
  79. package/internal-do-not-import-from-here/ux/signin/omnia/providers/PasswordProvider.d.ts +2 -2
  80. package/internal-do-not-import-from-here/ux/social/Comment.d.ts +2 -2
  81. package/internal-do-not-import-from-here/ux/social/templates/CommentLikeTemplate.d.ts +2 -2
  82. package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +3 -1
  83. package/internal-do-not-import-from-here/wctypings.d.ts +21 -0
  84. package/package.json +2 -2
@@ -0,0 +1 @@
1
+ export * from "./UseBlade";
@@ -88,8 +88,8 @@ declare const _default: {
88
88
  readonly galleryItemLimit?: number;
89
89
  readonly enableMediaCaption?: boolean;
90
90
  onClose?: () => any;
91
- onDoc$?: (description?: string) => any;
92
91
  onSave?: (result: MediaPickerMedia | MediaPickerMedia[]) => any;
92
+ onDoc$?: (description?: string) => any;
93
93
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
94
94
  "v-slots": import("vue").Prop<{
95
95
  default?: import("../../DefineVueTypings").Slot<any[]>;
@@ -204,8 +204,8 @@ declare const _default: {
204
204
  };
205
205
  }>> & {
206
206
  onClose?: () => any;
207
- onDoc$?: (description?: string) => any;
208
207
  onSave?: (result: MediaPickerMedia | MediaPickerMedia[]) => any;
208
+ onDoc$?: (description?: string) => any;
209
209
  }, never>;
210
210
  $attrs: {
211
211
  [x: string]: unknown;
@@ -334,8 +334,8 @@ declare const _default: {
334
334
  };
335
335
  }>> & {
336
336
  onClose?: () => any;
337
- onDoc$?: (description?: string) => any;
338
337
  onSave?: (result: MediaPickerMedia | MediaPickerMedia[]) => any;
338
+ onDoc$?: (description?: string) => any;
339
339
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
340
340
  close: () => void;
341
341
  doc$(description?: string): {
@@ -476,8 +476,8 @@ declare const _default: {
476
476
  };
477
477
  }>> & {
478
478
  onClose?: () => any;
479
- onDoc$?: (description?: string) => any;
480
479
  onSave?: (result: MediaPickerMedia | MediaPickerMedia[]) => any;
480
+ onDoc$?: (description?: string) => any;
481
481
  } & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
482
482
  __isFragment?: never;
483
483
  __isTeleport?: never;
@@ -596,8 +596,8 @@ declare const _default: {
596
596
  };
597
597
  }>> & {
598
598
  onClose?: () => any;
599
- onDoc$?: (description?: string) => any;
600
599
  onSave?: (result: MediaPickerMedia | MediaPickerMedia[]) => any;
600
+ onDoc$?: (description?: string) => any;
601
601
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
602
602
  close: () => void;
603
603
  doc$(description?: string): {
@@ -686,10 +686,10 @@ declare const _default: {
686
686
  enableGallery?: boolean;
687
687
  galleryItemLimit?: number;
688
688
  enableMediaCaption?: boolean;
689
- }>, "onClose" | "onDoc$" | "onSave"> & {
689
+ }>, "onClose" | "onSave" | "onDoc$"> & {
690
690
  onClose?: () => any;
691
- onDoc$?: (description?: string) => any;
692
691
  onSave?: (result: MediaPickerMedia | MediaPickerMedia[]) => any;
692
+ onDoc$?: (description?: string) => any;
693
693
  };
694
694
  };
695
695
  export default _default;
@@ -27,12 +27,12 @@ declare const _default: {
27
27
  readonly tooltip?: ButtonTooltipOptions;
28
28
  readonly active?: boolean;
29
29
  readonly disabled?: boolean;
30
- readonly variant?: "default" | "menu" | "opacity" | "toolbar" | "slim" | "prominent" | "dial";
30
+ readonly variant?: "default" | "menu" | "opacity" | "toolbar" | "prominent" | "dial" | "slim";
31
31
  readonly grouped?: boolean;
32
32
  readonly toned?: boolean;
33
33
  readonly loading?: boolean;
34
34
  readonly overrides?: object;
35
- readonly preset?: "cancel" | "close" | "select" | "delete" | "details" | "remove" | "retry" | "settings" | "create" | "ok" | "save" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request";
35
+ readonly preset?: "cancel" | "close" | "select" | "delete" | "details" | "remove" | "retry" | "settings" | "ok" | "save" | "create" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request";
36
36
  readonly transparentHover?: boolean;
37
37
  readonly stacked?: boolean;
38
38
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
@@ -75,13 +75,13 @@ declare const _default: {
75
75
  type: import("vue").PropType<ButtonTooltipOptions>;
76
76
  };
77
77
  preset: {
78
- type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "remove" | "retry" | "settings" | "create" | "ok" | "save" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
78
+ type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "remove" | "retry" | "settings" | "ok" | "save" | "create" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
79
79
  };
80
80
  overrides: {
81
81
  type: import("vue").PropType<object>;
82
82
  };
83
83
  variant: {
84
- type: import("vue").PropType<"default" | "menu" | "opacity" | "toolbar" | "slim" | "prominent" | "dial">;
84
+ type: import("vue").PropType<"default" | "menu" | "opacity" | "toolbar" | "prominent" | "dial" | "slim">;
85
85
  };
86
86
  target: {
87
87
  type: import("vue").PropType<"_blank" | "_self" | "_parent" | "_top" | "framename">;
@@ -158,13 +158,13 @@ declare const _default: {
158
158
  type: import("vue").PropType<ButtonTooltipOptions>;
159
159
  };
160
160
  preset: {
161
- type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "remove" | "retry" | "settings" | "create" | "ok" | "save" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
161
+ type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "remove" | "retry" | "settings" | "ok" | "save" | "create" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
162
162
  };
163
163
  overrides: {
164
164
  type: import("vue").PropType<object>;
165
165
  };
166
166
  variant: {
167
- type: import("vue").PropType<"default" | "menu" | "opacity" | "toolbar" | "slim" | "prominent" | "dial">;
167
+ type: import("vue").PropType<"default" | "menu" | "opacity" | "toolbar" | "prominent" | "dial" | "slim">;
168
168
  };
169
169
  target: {
170
170
  type: import("vue").PropType<"_blank" | "_self" | "_parent" | "_top" | "framename">;
@@ -253,13 +253,13 @@ declare const _default: {
253
253
  type: import("vue").PropType<ButtonTooltipOptions>;
254
254
  };
255
255
  preset: {
256
- type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "remove" | "retry" | "settings" | "create" | "ok" | "save" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
256
+ type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "remove" | "retry" | "settings" | "ok" | "save" | "create" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
257
257
  };
258
258
  overrides: {
259
259
  type: import("vue").PropType<object>;
260
260
  };
261
261
  variant: {
262
- type: import("vue").PropType<"default" | "menu" | "opacity" | "toolbar" | "slim" | "prominent" | "dial">;
262
+ type: import("vue").PropType<"default" | "menu" | "opacity" | "toolbar" | "prominent" | "dial" | "slim">;
263
263
  };
264
264
  target: {
265
265
  type: import("vue").PropType<"_blank" | "_self" | "_parent" | "_top" | "framename">;
@@ -326,13 +326,13 @@ declare const _default: {
326
326
  type: import("vue").PropType<ButtonTooltipOptions>;
327
327
  };
328
328
  preset: {
329
- type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "remove" | "retry" | "settings" | "create" | "ok" | "save" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
329
+ type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "remove" | "retry" | "settings" | "ok" | "save" | "create" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
330
330
  };
331
331
  overrides: {
332
332
  type: import("vue").PropType<object>;
333
333
  };
334
334
  variant: {
335
- type: import("vue").PropType<"default" | "menu" | "opacity" | "toolbar" | "slim" | "prominent" | "dial">;
335
+ type: import("vue").PropType<"default" | "menu" | "opacity" | "toolbar" | "prominent" | "dial" | "slim">;
336
336
  };
337
337
  target: {
338
338
  type: import("vue").PropType<"_blank" | "_self" | "_parent" | "_top" | "framename">;
@@ -380,12 +380,12 @@ declare const _default: {
380
380
  tooltip?: ButtonTooltipOptions;
381
381
  active?: boolean;
382
382
  disabled?: boolean;
383
- variant?: "default" | "menu" | "opacity" | "toolbar" | "slim" | "prominent" | "dial";
383
+ variant?: "default" | "menu" | "opacity" | "toolbar" | "prominent" | "dial" | "slim";
384
384
  grouped?: boolean;
385
385
  toned?: boolean;
386
386
  loading?: boolean;
387
387
  overrides?: object;
388
- preset?: "cancel" | "close" | "select" | "delete" | "details" | "remove" | "retry" | "settings" | "create" | "ok" | "save" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request";
388
+ preset?: "cancel" | "close" | "select" | "delete" | "details" | "remove" | "retry" | "settings" | "ok" | "save" | "create" | "icon-add" | "icon-comment" | "icon-delete" | "icon-edit" | "icon-drag-handle" | "icon-copy" | "icon-code" | "icon-close" | "icon-back" | "icon-more" | "icon-navigate" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request";
389
389
  transparentHover?: boolean;
390
390
  stacked?: boolean;
391
391
  }>, never>;
@@ -24,9 +24,9 @@ declare const _default: {
24
24
  "onUpdate:modelValue"?: ((value: string[] | MaybeComputedRef<boolean>) => any) & ((value: any) => any);
25
25
  readonly "v-model"?: string[] | MaybeComputedRef<boolean>;
26
26
  readonly modelValue?: string[] | MaybeComputedRef<boolean>;
27
+ readonly rules?: ValidationRule[];
27
28
  readonly hint?: string;
28
29
  readonly persistentHint?: boolean;
29
- readonly rules?: ValidationRule[];
30
30
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
31
31
  persistentHint: {
32
32
  type: import("vue").PropType<boolean>;
@@ -272,9 +272,9 @@ declare const _default: {
272
272
  "onUpdate:modelValue"?: (value: string[] | MaybeComputedRef<boolean>) => any;
273
273
  "v-model"?: string[] | MaybeComputedRef<boolean>;
274
274
  modelValue?: string[] | MaybeComputedRef<boolean>;
275
+ rules?: ValidationRule[];
275
276
  hint?: string;
276
277
  persistentHint?: boolean;
277
- rules?: ValidationRule[];
278
278
  }>, "onUpdate:modelValue"> & {
279
279
  "onUpdate:modelValue"?: (value: any) => any;
280
280
  };
@@ -14,33 +14,33 @@ declare const _default: {
14
14
  readonly colorSchemaType?: any;
15
15
  readonly blueprintType?: any;
16
16
  readonly colors?: any;
17
- readonly xs?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
18
- readonly sm?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
19
- readonly md?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
20
- readonly lg?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
21
- readonly xl?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
17
+ readonly xs?: 1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12";
18
+ readonly sm?: 1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12";
19
+ readonly md?: 1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12";
20
+ readonly lg?: 1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12";
21
+ readonly xl?: 1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12";
22
22
  readonly class?: String | String[];
23
23
  readonly alignSelf?: "center" | "auto" | "stretch" | "end" | "start" | "baseline";
24
24
  readonly variant?: "default" | "grid";
25
- readonly cols?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
25
+ readonly cols?: 1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12";
26
26
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
27
27
  xl: {
28
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
28
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
29
29
  };
30
30
  lg: {
31
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
31
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
32
32
  };
33
33
  md: {
34
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
34
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
35
35
  };
36
36
  sm: {
37
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
37
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
38
38
  };
39
39
  xs: {
40
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
40
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
41
41
  };
42
42
  cols: {
43
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
43
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
44
44
  };
45
45
  variant: {
46
46
  type: import("vue").PropType<"default" | "grid">;
@@ -74,22 +74,22 @@ declare const _default: {
74
74
  $el: any;
75
75
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
76
76
  xl: {
77
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
77
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
78
78
  };
79
79
  lg: {
80
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
80
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
81
81
  };
82
82
  md: {
83
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
83
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
84
84
  };
85
85
  sm: {
86
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
86
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
87
87
  };
88
88
  xs: {
89
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
89
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
90
90
  };
91
91
  cols: {
92
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
92
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
93
93
  };
94
94
  variant: {
95
95
  type: import("vue").PropType<"default" | "grid">;
@@ -135,22 +135,22 @@ declare const _default: {
135
135
  $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;
136
136
  } & Readonly<import("vue").ExtractPropTypes<{
137
137
  xl: {
138
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
138
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
139
139
  };
140
140
  lg: {
141
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
141
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
142
142
  };
143
143
  md: {
144
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
144
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
145
145
  };
146
146
  sm: {
147
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
147
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
148
148
  };
149
149
  xs: {
150
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
150
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
151
151
  };
152
152
  cols: {
153
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
153
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
154
154
  };
155
155
  variant: {
156
156
  type: import("vue").PropType<"default" | "grid">;
@@ -174,22 +174,22 @@ declare const _default: {
174
174
  __isSuspense?: never;
175
175
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
176
176
  xl: {
177
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
177
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
178
178
  };
179
179
  lg: {
180
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
180
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
181
181
  };
182
182
  md: {
183
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
183
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
184
184
  };
185
185
  sm: {
186
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
186
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
187
187
  };
188
188
  xs: {
189
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
189
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
190
190
  };
191
191
  cols: {
192
- type: import("vue").PropType<"1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12">;
192
+ type: import("vue").PropType<1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12">;
193
193
  };
194
194
  variant: {
195
195
  type: import("vue").PropType<"default" | "grid">;
@@ -221,15 +221,15 @@ declare const _default: {
221
221
  blueprintType?: any;
222
222
  colors?: any;
223
223
  } & {
224
- xs?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
225
- sm?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
226
- md?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
227
- lg?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
228
- xl?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
224
+ xs?: 1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12";
225
+ sm?: 1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12";
226
+ md?: 1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12";
227
+ lg?: 1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12";
228
+ xl?: 1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12";
229
229
  class?: String | String[];
230
230
  alignSelf?: "center" | "auto" | "stretch" | "end" | "start" | "baseline";
231
231
  variant?: "default" | "grid";
232
- cols?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12";
232
+ cols?: 1 | 2 | 4 | 8 | 3 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "auto" | "10" | "11" | "12";
233
233
  }>, never>;
234
234
  };
235
235
  export default _default;
@@ -0,0 +1,11 @@
1
+ import { OVerticalAlignments, OPaddingCombination } from "@omnia/fx-models";
2
+ export interface stylingSettings {
3
+ align: OVerticalAlignments;
4
+ paddings: OPaddingCombination;
5
+ width: string;
6
+ grow: number;
7
+ minWidth: string;
8
+ }
9
+ export declare const ColStyles: {
10
+ wrapper: (settings: stylingSettings) => string;
11
+ };
@@ -0,0 +1,211 @@
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{
6
+ container?: any;
7
+ blueprint?: any;
8
+ colorSchemaType?: any;
9
+ blueprintType?: any;
10
+ colors?: any;
11
+ }> & Omit<{
12
+ readonly container?: any;
13
+ readonly blueprint?: any;
14
+ readonly colorSchemaType?: any;
15
+ readonly blueprintType?: any;
16
+ readonly colors?: any;
17
+ readonly class?: String | String[];
18
+ readonly width?: string;
19
+ readonly minWidth?: string;
20
+ readonly filled?: boolean;
21
+ readonly grow?: number;
22
+ readonly align?: "center" | "bottom" | "top";
23
+ readonly toned?: boolean;
24
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
25
+ align: {
26
+ type: import("vue").PropType<"center" | "bottom" | "top">;
27
+ };
28
+ minWidth: {
29
+ type: import("vue").PropType<string>;
30
+ };
31
+ width: {
32
+ type: import("vue").PropType<string>;
33
+ };
34
+ toned: {
35
+ type: import("vue").PropType<boolean>;
36
+ } & {
37
+ type: import("vue").PropType<boolean>;
38
+ };
39
+ grow: {
40
+ type: import("vue").PropType<number>;
41
+ };
42
+ filled: {
43
+ type: import("vue").PropType<boolean>;
44
+ };
45
+ class: {
46
+ type: import("vue").PropType<String | String[]>;
47
+ required: boolean;
48
+ };
49
+ colorSchemaType?: any;
50
+ container?: any;
51
+ colors?: any;
52
+ blueprintType?: any;
53
+ blueprint?: any;
54
+ }>>, "container" | "blueprint" | "colorSchemaType" | "blueprintType" | "colors">;
55
+ $attrs: {
56
+ [x: string]: unknown;
57
+ };
58
+ $refs: {
59
+ [x: string]: unknown;
60
+ };
61
+ $slots: Readonly<{
62
+ [name: string]: import("vue").Slot<any>;
63
+ }>;
64
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
65
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
66
+ $emit: (event: string, ...args: any[]) => void;
67
+ $el: any;
68
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
69
+ align: {
70
+ type: import("vue").PropType<"center" | "bottom" | "top">;
71
+ };
72
+ minWidth: {
73
+ type: import("vue").PropType<string>;
74
+ };
75
+ width: {
76
+ type: import("vue").PropType<string>;
77
+ };
78
+ toned: {
79
+ type: import("vue").PropType<boolean>;
80
+ } & {
81
+ type: import("vue").PropType<boolean>;
82
+ };
83
+ grow: {
84
+ type: import("vue").PropType<number>;
85
+ };
86
+ filled: {
87
+ type: import("vue").PropType<boolean>;
88
+ };
89
+ class: {
90
+ type: import("vue").PropType<String | String[]>;
91
+ required: boolean;
92
+ };
93
+ colorSchemaType?: any;
94
+ container?: any;
95
+ colors?: any;
96
+ blueprintType?: any;
97
+ blueprint?: any;
98
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
99
+ container?: any;
100
+ blueprint?: any;
101
+ colorSchemaType?: any;
102
+ blueprintType?: any;
103
+ colors?: any;
104
+ }, {}, string, {}> & {
105
+ beforeCreate?: (() => void) | (() => void)[];
106
+ created?: (() => void) | (() => void)[];
107
+ beforeMount?: (() => void) | (() => void)[];
108
+ mounted?: (() => void) | (() => void)[];
109
+ beforeUpdate?: (() => void) | (() => void)[];
110
+ updated?: (() => void) | (() => void)[];
111
+ activated?: (() => void) | (() => void)[];
112
+ deactivated?: (() => void) | (() => void)[];
113
+ beforeDestroy?: (() => void) | (() => void)[];
114
+ beforeUnmount?: (() => void) | (() => void)[];
115
+ destroyed?: (() => void) | (() => void)[];
116
+ unmounted?: (() => void) | (() => void)[];
117
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
118
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
119
+ 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)[];
120
+ };
121
+ $forceUpdate: () => void;
122
+ $nextTick: typeof import("vue").nextTick;
123
+ $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;
124
+ } & Readonly<import("vue").ExtractPropTypes<{
125
+ align: {
126
+ type: import("vue").PropType<"center" | "bottom" | "top">;
127
+ };
128
+ minWidth: {
129
+ type: import("vue").PropType<string>;
130
+ };
131
+ width: {
132
+ type: import("vue").PropType<string>;
133
+ };
134
+ toned: {
135
+ type: import("vue").PropType<boolean>;
136
+ } & {
137
+ type: import("vue").PropType<boolean>;
138
+ };
139
+ grow: {
140
+ type: import("vue").PropType<number>;
141
+ };
142
+ filled: {
143
+ type: import("vue").PropType<boolean>;
144
+ };
145
+ class: {
146
+ type: import("vue").PropType<String | String[]>;
147
+ required: boolean;
148
+ };
149
+ colorSchemaType?: any;
150
+ container?: any;
151
+ colors?: any;
152
+ blueprintType?: any;
153
+ blueprint?: any;
154
+ }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
155
+ __isFragment?: never;
156
+ __isTeleport?: never;
157
+ __isSuspense?: never;
158
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
159
+ align: {
160
+ type: import("vue").PropType<"center" | "bottom" | "top">;
161
+ };
162
+ minWidth: {
163
+ type: import("vue").PropType<string>;
164
+ };
165
+ width: {
166
+ type: import("vue").PropType<string>;
167
+ };
168
+ toned: {
169
+ type: import("vue").PropType<boolean>;
170
+ } & {
171
+ type: import("vue").PropType<boolean>;
172
+ };
173
+ grow: {
174
+ type: import("vue").PropType<number>;
175
+ };
176
+ filled: {
177
+ type: import("vue").PropType<boolean>;
178
+ };
179
+ class: {
180
+ type: import("vue").PropType<String | String[]>;
181
+ required: boolean;
182
+ };
183
+ colorSchemaType?: any;
184
+ container?: any;
185
+ colors?: any;
186
+ blueprintType?: any;
187
+ blueprint?: any;
188
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
189
+ container?: any;
190
+ blueprint?: any;
191
+ colorSchemaType?: any;
192
+ blueprintType?: any;
193
+ colors?: any;
194
+ }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
195
+ propsDefinition: Omit<Readonly<{
196
+ container?: any;
197
+ blueprint?: any;
198
+ colorSchemaType?: any;
199
+ blueprintType?: any;
200
+ colors?: any;
201
+ } & {
202
+ class?: String | String[];
203
+ width?: string;
204
+ minWidth?: string;
205
+ filled?: boolean;
206
+ grow?: number;
207
+ align?: "center" | "bottom" | "top";
208
+ toned?: boolean;
209
+ }>, never>;
210
+ };
211
+ export default _default;
@@ -0,0 +1,3 @@
1
+ export declare const FlexStyles: {
2
+ wrapper: string;
3
+ };