@omnia/fx 8.0.178-dev → 8.0.179-dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. package/internal-do-not-import-from-here/ux/ComponentTypings.d.ts +2 -0
  2. package/internal-do-not-import-from-here/ux/aurora/components/backgroundstyle/BackgroundStyleEditor.d.ts +1 -1
  3. package/internal-do-not-import-from-here/ux/aurora/components/borderpicker/BorderPicker.d.ts +1 -1
  4. package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/FillPicker.d.ts +1 -1
  5. package/internal-do-not-import-from-here/ux/aurora/components/iconstylepicker/IconStyleEditor.d.ts +1 -1
  6. package/internal-do-not-import-from-here/ux/aurora/components/iconstylepicker/IconStylePicker.d.ts +1 -1
  7. package/internal-do-not-import-from-here/ux/aurora/components/textstylepicker/TextStylePicker.d.ts +1 -1
  8. package/internal-do-not-import-from-here/ux/aurora/components/typography/TypographyPicker.d.ts +12 -6
  9. package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +124 -120
  10. package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +124 -120
  11. package/internal-do-not-import-from-here/ux/filterengine/FilterEngineRenderer.d.ts +84 -265
  12. package/internal-do-not-import-from-here/ux/filterengine/FilterEngineSection.d.ts +52 -35
  13. package/internal-do-not-import-from-here/ux/filterengine/SelectionsArea.d.ts +50 -15
  14. package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.d.ts +1 -1
  15. package/internal-do-not-import-from-here/ux/journey/docs/SampleTestBenchComponent.d.ts +51 -0
  16. package/internal-do-not-import-from-here/ux/jsonexportimport/ExportImport.d.ts +1 -1
  17. package/internal-do-not-import-from-here/ux/markdown/plugins/themestyling/ColorButton.d.ts +61 -0
  18. package/internal-do-not-import-from-here/ux/markdown/plugins/{ThemeStylingPlugin.d.ts → themestyling/ThemeStylingPlugin.d.ts} +2 -1
  19. package/internal-do-not-import-from-here/ux/markdown/plugins/themestyling/TypographyButton.d.ts +61 -0
  20. package/internal-do-not-import-from-here/ux/monaco/MonacoEditor.d.ts +6 -6
  21. package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +9 -9
  22. package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.d.ts +26 -0
  23. package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +2 -2
  24. package/internal-do-not-import-from-here/ux/oxide/column/ColumnGrid.d.ts +64 -64
  25. package/internal-do-not-import-from-here/ux/oxide/flex/Row.d.ts +2 -2
  26. package/internal-do-not-import-from-here/ux/oxide/speeddial/SpeedDial.d.ts +1 -1
  27. package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +1 -1
  28. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +20 -9
  29. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +10 -0
  30. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronStyles.d.ts +5 -2
  31. package/internal-do-not-import-from-here/ux/velcron/editor/components/ContextMenu.d.ts +1 -1
  32. package/internal-do-not-import-from-here/ux/velcron/editor/models/VelcronEditorDescriptors.d.ts +1 -0
  33. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/SelectEditor.d.ts +406 -0
  34. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/SpacingEditor.d.ts +91 -91
  35. package/package.json +3 -3
@@ -0,0 +1,61 @@
1
+ import { PluginContext } from "@toast-ui/editor";
2
+ import { MarkdownPluginContext } from "../MarkdownPluginContext";
3
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
4
+ context?: PluginContext;
5
+ } & {
6
+ options?: MarkdownPluginContext;
7
+ }> & Omit<{}, "options" | "context"> & {
8
+ "v-slots"?: {
9
+ default?: import("vue").Slot;
10
+ } & {};
11
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "options" | "context">) => {
12
+ $: import("vue").ComponentInternalInstance;
13
+ $data: {};
14
+ $props: {};
15
+ $attrs: {
16
+ [x: string]: unknown;
17
+ };
18
+ $refs: {
19
+ [x: string]: unknown;
20
+ };
21
+ $slots: Readonly<{
22
+ [name: string]: import("vue").Slot<any>;
23
+ }>;
24
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
25
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
26
+ $emit: (event: string, ...args: any[]) => void;
27
+ $el: any;
28
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
29
+ beforeCreate?: (() => void) | (() => void)[];
30
+ created?: (() => void) | (() => void)[];
31
+ beforeMount?: (() => void) | (() => void)[];
32
+ mounted?: (() => void) | (() => void)[];
33
+ beforeUpdate?: (() => void) | (() => void)[];
34
+ updated?: (() => void) | (() => void)[];
35
+ activated?: (() => void) | (() => void)[];
36
+ deactivated?: (() => void) | (() => void)[];
37
+ beforeDestroy?: (() => void) | (() => void)[];
38
+ beforeUnmount?: (() => void) | (() => void)[];
39
+ destroyed?: (() => void) | (() => void)[];
40
+ unmounted?: (() => void) | (() => void)[];
41
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
42
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
43
+ 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)[];
44
+ };
45
+ $forceUpdate: () => void;
46
+ $nextTick: typeof import("vue").nextTick;
47
+ $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;
48
+ } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
49
+ propsDefinition: import("@omnia/fx/ux").ExtractProps<{
50
+ context?: PluginContext;
51
+ } & {
52
+ options?: MarkdownPluginContext;
53
+ }> & {
54
+ "v-slots"?: {
55
+ default?: import("vue").Slot;
56
+ } & {};
57
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "options" | "context">;
58
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
59
+ [key: string]: any;
60
+ }>;
61
+ export default _default;
@@ -1,2 +1,3 @@
1
1
  import { PluginContext, PluginInfo } from "@toast-ui/editor";
2
- export declare function themeStylingPlugin(context: PluginContext, options?: GainOptions): PluginInfo;
2
+ import { MarkdownPluginContext } from "../MarkdownPluginContext";
3
+ export declare function themeStylingPlugin(context: PluginContext, options: MarkdownPluginContext): PluginInfo;
@@ -0,0 +1,61 @@
1
+ import { PluginContext } from "@toast-ui/editor";
2
+ import { MarkdownPluginContext } from "../MarkdownPluginContext";
3
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
4
+ context?: PluginContext;
5
+ } & {
6
+ options?: MarkdownPluginContext;
7
+ }> & Omit<{}, "options" | "context"> & {
8
+ "v-slots"?: {
9
+ default?: import("vue").Slot;
10
+ } & {};
11
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "options" | "context">) => {
12
+ $: import("vue").ComponentInternalInstance;
13
+ $data: {};
14
+ $props: {};
15
+ $attrs: {
16
+ [x: string]: unknown;
17
+ };
18
+ $refs: {
19
+ [x: string]: unknown;
20
+ };
21
+ $slots: Readonly<{
22
+ [name: string]: import("vue").Slot<any>;
23
+ }>;
24
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
25
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
26
+ $emit: (event: string, ...args: any[]) => void;
27
+ $el: any;
28
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
29
+ beforeCreate?: (() => void) | (() => void)[];
30
+ created?: (() => void) | (() => void)[];
31
+ beforeMount?: (() => void) | (() => void)[];
32
+ mounted?: (() => void) | (() => void)[];
33
+ beforeUpdate?: (() => void) | (() => void)[];
34
+ updated?: (() => void) | (() => void)[];
35
+ activated?: (() => void) | (() => void)[];
36
+ deactivated?: (() => void) | (() => void)[];
37
+ beforeDestroy?: (() => void) | (() => void)[];
38
+ beforeUnmount?: (() => void) | (() => void)[];
39
+ destroyed?: (() => void) | (() => void)[];
40
+ unmounted?: (() => void) | (() => void)[];
41
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
42
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
43
+ 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)[];
44
+ };
45
+ $forceUpdate: () => void;
46
+ $nextTick: typeof import("vue").nextTick;
47
+ $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;
48
+ } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
49
+ propsDefinition: import("@omnia/fx/ux").ExtractProps<{
50
+ context?: PluginContext;
51
+ } & {
52
+ options?: MarkdownPluginContext;
53
+ }> & {
54
+ "v-slots"?: {
55
+ default?: import("vue").Slot;
56
+ } & {};
57
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "options" | "context">;
58
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
59
+ [key: string]: any;
60
+ }>;
61
+ export default _default;
@@ -86,12 +86,12 @@ declare const _default: {
86
86
  };
87
87
  }>> & {
88
88
  onError?: (err: string) => any;
89
+ onScroll?: (event: any) => any;
89
90
  onBlur?: () => any;
90
91
  onChange?: (value: string, event: any) => any;
91
92
  onFocus?: () => any;
92
93
  onKeydown?: (event: any) => any;
93
94
  onKeyup?: (event: any) => any;
94
- onScroll?: (event: any) => any;
95
95
  "onUpdate:modelValue"?: (value: string) => any;
96
96
  onLayout?: (event: any) => any;
97
97
  onConfiguration?: (event: any) => any;
@@ -220,12 +220,12 @@ declare const _default: {
220
220
  };
221
221
  }>> & {
222
222
  onError?: (err: string) => any;
223
+ onScroll?: (event: any) => any;
223
224
  onBlur?: () => any;
224
225
  onChange?: (value: string, event: any) => any;
225
226
  onFocus?: () => any;
226
227
  onKeydown?: (event: any) => any;
227
228
  onKeyup?: (event: any) => any;
228
- onScroll?: (event: any) => any;
229
229
  "onUpdate:modelValue"?: (value: string) => any;
230
230
  onLayout?: (event: any) => any;
231
231
  onConfiguration?: (event: any) => any;
@@ -336,12 +336,12 @@ declare const _default: {
336
336
  };
337
337
  }>> & {
338
338
  onError?: (err: string) => any;
339
+ onScroll?: (event: any) => any;
339
340
  onBlur?: () => any;
340
341
  onChange?: (value: string, event: any) => any;
341
342
  onFocus?: () => any;
342
343
  onKeydown?: (event: any) => any;
343
344
  onKeyup?: (event: any) => any;
344
- onScroll?: (event: any) => any;
345
345
  "onUpdate:modelValue"?: (value: string) => any;
346
346
  onLayout?: (event: any) => any;
347
347
  onConfiguration?: (event: any) => any;
@@ -449,12 +449,12 @@ declare const _default: {
449
449
  };
450
450
  }>> & {
451
451
  onError?: (err: string) => any;
452
+ onScroll?: (event: any) => any;
452
453
  onBlur?: () => any;
453
454
  onChange?: (value: string, event: any) => any;
454
455
  onFocus?: () => any;
455
456
  onKeydown?: (event: any) => any;
456
457
  onKeyup?: (event: any) => any;
457
- onScroll?: (event: any) => any;
458
458
  "onUpdate:modelValue"?: (value: string) => any;
459
459
  onLayout?: (event: any) => any;
460
460
  onConfiguration?: (event: any) => any;
@@ -566,14 +566,14 @@ declare const _default: {
566
566
  "onUpdate:modelValue"?: (value: string) => any;
567
567
  modelValue?: string;
568
568
  language?: string;
569
- }>, "onError" | "onBlur" | "onChange" | "onFocus" | "onKeydown" | "onKeyup" | "onScroll" | "onUpdate:modelValue" | "onLayout" | "onConfiguration" | "onPosition" | "onSelection" | "onEditorDidMount" | "onContextMenu" | "onBlurText" | "onModelDecorations" | "onModelLanguage" | "onModelOptions" | "onAfterDispose" | "onFocusText" | "onMouseDown" | "onMouseLeave" | "onMouseMove" | "onMouseUp"> & {
569
+ }>, "onError" | "onScroll" | "onBlur" | "onChange" | "onFocus" | "onKeydown" | "onKeyup" | "onUpdate:modelValue" | "onLayout" | "onConfiguration" | "onPosition" | "onSelection" | "onEditorDidMount" | "onContextMenu" | "onBlurText" | "onModelDecorations" | "onModelLanguage" | "onModelOptions" | "onAfterDispose" | "onFocusText" | "onMouseDown" | "onMouseLeave" | "onMouseMove" | "onMouseUp"> & {
570
570
  onError?: (err: string) => any;
571
+ onScroll?: (event: any) => any;
571
572
  onBlur?: () => any;
572
573
  onChange?: (value: string, event: any) => any;
573
574
  onFocus?: () => any;
574
575
  onKeydown?: (event: any) => any;
575
576
  onKeyup?: (event: any) => any;
576
- onScroll?: (event: any) => any;
577
577
  "onUpdate:modelValue"?: (value: string) => any;
578
578
  onLayout?: (event: any) => any;
579
579
  onConfiguration?: (event: any) => any;
@@ -82,9 +82,9 @@ declare const _default: {
82
82
  type: import("vue").PropType<ButtonTooltipOptions>;
83
83
  };
84
84
  preset: {
85
- type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "remove" | "retry" | "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-preview" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
85
+ type: import("vue").PropType<"select" | "cancel" | "close" | "delete" | "details" | "settings" | "remove" | "retry" | "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-preview" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
86
86
  } & {
87
- type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "remove" | "retry" | "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-preview" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
87
+ type: import("vue").PropType<"select" | "cancel" | "close" | "delete" | "details" | "settings" | "remove" | "retry" | "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-preview" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
88
88
  };
89
89
  overrides: {
90
90
  type: import("vue").PropType<object>;
@@ -213,9 +213,9 @@ declare const _default: {
213
213
  type: import("vue").PropType<ButtonTooltipOptions>;
214
214
  };
215
215
  preset: {
216
- type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "remove" | "retry" | "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-preview" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
216
+ type: import("vue").PropType<"select" | "cancel" | "close" | "delete" | "details" | "settings" | "remove" | "retry" | "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-preview" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
217
217
  } & {
218
- type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "remove" | "retry" | "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-preview" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
218
+ type: import("vue").PropType<"select" | "cancel" | "close" | "delete" | "details" | "settings" | "remove" | "retry" | "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-preview" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
219
219
  };
220
220
  overrides: {
221
221
  type: import("vue").PropType<object>;
@@ -353,9 +353,9 @@ declare const _default: {
353
353
  type: import("vue").PropType<ButtonTooltipOptions>;
354
354
  };
355
355
  preset: {
356
- type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "remove" | "retry" | "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-preview" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
356
+ type: import("vue").PropType<"select" | "cancel" | "close" | "delete" | "details" | "settings" | "remove" | "retry" | "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-preview" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
357
357
  } & {
358
- type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "remove" | "retry" | "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-preview" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
358
+ type: import("vue").PropType<"select" | "cancel" | "close" | "delete" | "details" | "settings" | "remove" | "retry" | "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-preview" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
359
359
  };
360
360
  overrides: {
361
361
  type: import("vue").PropType<object>;
@@ -490,9 +490,9 @@ declare const _default: {
490
490
  type: import("vue").PropType<ButtonTooltipOptions>;
491
491
  };
492
492
  preset: {
493
- type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "remove" | "retry" | "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-preview" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
493
+ type: import("vue").PropType<"select" | "cancel" | "close" | "delete" | "details" | "settings" | "remove" | "retry" | "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-preview" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
494
494
  } & {
495
- type: import("vue").PropType<"cancel" | "close" | "select" | "delete" | "details" | "settings" | "remove" | "retry" | "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-preview" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
495
+ type: import("vue").PropType<"select" | "cancel" | "close" | "delete" | "details" | "settings" | "remove" | "retry" | "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-preview" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request">;
496
496
  };
497
497
  overrides: {
498
498
  type: import("vue").PropType<object>;
@@ -564,7 +564,7 @@ declare const _default: {
564
564
  grouped?: boolean;
565
565
  loading?: boolean;
566
566
  overrides?: object;
567
- preset?: "cancel" | "close" | "select" | "delete" | "details" | "settings" | "remove" | "retry" | "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-preview" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request";
567
+ preset?: "select" | "cancel" | "close" | "delete" | "details" | "settings" | "remove" | "retry" | "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-preview" | "icon-settings" | "load-more" | "approve" | "copy-to-clipboard" | "next" | "previous" | "view-more" | "send-request";
568
568
  transparentHover?: boolean;
569
569
  "transparent-hover"?: boolean;
570
570
  stacked?: boolean;
@@ -1,8 +1,14 @@
1
1
  import { MaybeComputedRef, ValidationRule } from "@omnia/fx/ux";
2
+ import { VNodeChild } from "vue";
2
3
  export interface RadioGroupModel {
3
4
  }
4
5
  declare const _default: {
5
6
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
7
+ "v-slots": import("vue").Prop<{
8
+ default?: import("../../DefineVueTypings").Slot<any[]>;
9
+ } & {
10
+ label?: () => VNodeChild;
11
+ }>;
6
12
  persistentHint: {
7
13
  type: import("vue").PropType<boolean>;
8
14
  required: false;
@@ -72,6 +78,11 @@ declare const _default: {
72
78
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
73
79
  "update:modelValue": (value: any) => boolean;
74
80
  }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
81
+ "v-slots": import("vue").Prop<{
82
+ default?: import("../../DefineVueTypings").Slot<any[]>;
83
+ } & {
84
+ label?: () => VNodeChild;
85
+ }>;
75
86
  persistentHint: {
76
87
  type: import("vue").PropType<boolean>;
77
88
  required: false;
@@ -148,6 +159,11 @@ declare const _default: {
148
159
  M: {};
149
160
  Defaults: {};
150
161
  }, Readonly<import("vue").ExtractPropTypes<{
162
+ "v-slots": import("vue").Prop<{
163
+ default?: import("../../DefineVueTypings").Slot<any[]>;
164
+ } & {
165
+ label?: () => VNodeChild;
166
+ }>;
151
167
  persistentHint: {
152
168
  type: import("vue").PropType<boolean>;
153
169
  required: false;
@@ -221,6 +237,11 @@ declare const _default: {
221
237
  __isTeleport?: never;
222
238
  __isSuspense?: never;
223
239
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
240
+ "v-slots": import("vue").Prop<{
241
+ default?: import("../../DefineVueTypings").Slot<any[]>;
242
+ } & {
243
+ label?: () => VNodeChild;
244
+ }>;
224
245
  persistentHint: {
225
246
  type: import("vue").PropType<boolean>;
226
247
  required: false;
@@ -303,6 +324,11 @@ declare const _default: {
303
324
  "v-model"?: string[] | MaybeComputedRef<boolean>;
304
325
  "onUpdate:modelValue"?: (value: string[] | MaybeComputedRef<boolean>) => any;
305
326
  modelValue?: string[] | MaybeComputedRef<boolean>;
327
+ "v-slots"?: {
328
+ default?: import("../../DefineVueTypings").Slot<any[]>;
329
+ } & {
330
+ label?: () => VNodeChild;
331
+ };
306
332
  rules?: ValidationRule[];
307
333
  hint?: string;
308
334
  persistentHint?: boolean;
@@ -262,10 +262,10 @@ declare const _default: {
262
262
  margin?: Spacing | SpacingValue;
263
263
  padding?: Spacing | SpacingValue;
264
264
  filled?: boolean;
265
- alignY?: "top" | "center" | "bottom";
266
- grow?: number;
267
265
  colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
268
266
  toned?: boolean;
267
+ alignY?: "top" | "center" | "bottom";
268
+ grow?: number;
269
269
  colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
270
270
  "min-width"?: string;
271
271
  "align-y"?: "top" | "center" | "bottom";