@ambita/design-system 5.7.1-2941.0 → 5.7.1-2951.0

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 (107) hide show
  1. package/dist/types/App.vue.d.ts +80 -0
  2. package/dist/types/components/Accordion/NeoAccordion.vue.d.ts +21 -0
  3. package/dist/types/components/Accordion/NeoAccordionContent.vue.d.ts +17 -0
  4. package/dist/types/components/Accordion/NeoAccordionItem.vue.d.ts +20 -0
  5. package/dist/types/components/Accordion/NeoAccordionTrigger.vue.d.ts +17 -0
  6. package/dist/types/components/AuxAriaAnnouncer/AuxAriaAnnouncer.vue.d.ts +18 -0
  7. package/dist/types/components/AuxTabs/AuxTabs.vue.d.ts +66 -0
  8. package/dist/types/components/AuxTabs/constants.d.ts +17 -0
  9. package/dist/types/components/Banner/Banner.types.d.ts +1 -0
  10. package/dist/types/components/Banner/Banner.vue.d.ts +47 -0
  11. package/dist/types/components/Button/Button.vue.d.ts +62 -0
  12. package/dist/types/components/Button/NeoButton.vue.d.ts +30 -0
  13. package/dist/types/components/Button/NeoLinkButton.vue.d.ts +20 -0
  14. package/dist/types/components/Button/constants.d.ts +2 -0
  15. package/dist/types/components/Card/Card.vue.d.ts +2 -0
  16. package/dist/types/components/Checkbox/Checkbox.vue.d.ts +238 -0
  17. package/dist/types/components/Checkbox/CheckboxCard.vue.d.ts +57 -0
  18. package/dist/types/components/Checkbox/CheckboxRegular.vue.d.ts +57 -0
  19. package/dist/types/components/Checkbox/constants.d.ts +1 -0
  20. package/dist/types/components/CheckboxDropdown/CheckboxDropdown.vue.d.ts +312 -0
  21. package/dist/types/components/CheckboxGroup/CheckboxGroup.vue.d.ts +346 -0
  22. package/dist/types/components/CheckboxGroup/CheckboxGroupCardElement.vue.d.ts +49 -0
  23. package/dist/types/components/CheckboxGroup/CheckboxGroupElement.vue.d.ts +49 -0
  24. package/dist/types/components/Color/ColorSwatch.vue.d.ts +57 -0
  25. package/dist/types/components/Definition/Definition.vue.d.ts +58 -0
  26. package/dist/types/components/Details/Details.vue.d.ts +56 -0
  27. package/dist/types/components/DirectionalArrow/DirectionalArrow.vue.d.ts +15 -0
  28. package/dist/types/components/DirectionalArrow/constants.d.ts +1 -0
  29. package/dist/types/components/FormElement/FormElement.vue.d.ts +107 -0
  30. package/dist/types/components/Icons/IconPreview.vue.d.ts +14 -0
  31. package/dist/types/components/Input/Input.vue.d.ts +233 -0
  32. package/dist/types/components/Input/NeoInput.vue.d.ts +34 -0
  33. package/dist/types/components/JsonForm/Components/Checkboxes.vue.d.ts +421 -0
  34. package/dist/types/components/JsonForm/Components/RadioButtons.vue.d.ts +422 -0
  35. package/dist/types/components/JsonForm/Controls/Array.vue.d.ts +866 -0
  36. package/dist/types/components/JsonForm/Controls/Boolean.vue.d.ts +262 -0
  37. package/dist/types/components/JsonForm/Controls/Number.vue.d.ts +888 -0
  38. package/dist/types/components/JsonForm/Controls/String.vue.d.ts +889 -0
  39. package/dist/types/components/JsonForm/Controls/Wrapper.vue.d.ts +49 -0
  40. package/dist/types/components/JsonForm/JsonForm.vue.d.ts +203 -0
  41. package/dist/types/components/JsonForm/Renderers/Array.vue.d.ts +960 -0
  42. package/dist/types/components/JsonForm/Renderers/Boolean.vue.d.ts +356 -0
  43. package/dist/types/components/JsonForm/Renderers/Integer.vue.d.ts +982 -0
  44. package/dist/types/components/JsonForm/Renderers/Layout.vue.d.ts +113 -0
  45. package/dist/types/components/JsonForm/Renderers/Number.vue.d.ts +982 -0
  46. package/dist/types/components/JsonForm/Renderers/Object.vue.d.ts +140 -0
  47. package/dist/types/components/JsonForm/Renderers/String.vue.d.ts +983 -0
  48. package/dist/types/components/JsonForm/Renderers/index.d.ts +9 -0
  49. package/dist/types/components/Link/Link.vue.d.ts +34 -0
  50. package/dist/types/components/Link/constants.d.ts +1 -0
  51. package/dist/types/components/Logo/Logo.vue.d.ts +16 -0
  52. package/dist/types/components/Modal/Action.d.ts +8 -0
  53. package/dist/types/components/Modal/Actions.vue.d.ts +83 -0
  54. package/dist/types/components/Modal/Modal.vue.d.ts +166 -0
  55. package/dist/types/components/Modal/constants.d.ts +2 -0
  56. package/dist/types/components/NeoBanner/NeoBanner.vue.d.ts +34 -0
  57. package/dist/types/components/NeoComboBox/NeoComboBox.vue.d.ts +34 -0
  58. package/dist/types/components/NeoDatePicker/NeoDatePicker.vue.d.ts +67 -0
  59. package/dist/types/components/NeoPagination/NeoPagination.vue.d.ts +22 -0
  60. package/dist/types/components/NeoSelect/NeoSelect.vue.d.ts +33 -0
  61. package/dist/types/components/NeoTabs/NeoTabs.vue.d.ts +184 -0
  62. package/dist/types/components/NeoTabs/NeoTabsContent.vue.d.ts +27 -0
  63. package/dist/types/components/NeoTabs/NeoTabsTrigger.vue.d.ts +27 -0
  64. package/dist/types/components/NeoTabs/NeoTabsWrapper.vue.d.ts +116 -0
  65. package/dist/types/components/NeoTagsInput/NeoTag.vue.d.ts +35 -0
  66. package/dist/types/components/NeoTagsInput/TagsInput.vue.d.ts +63 -0
  67. package/dist/types/components/NeoTagsInput/types.d.ts +26 -0
  68. package/dist/types/components/Notification/Notification.vue.d.ts +34 -0
  69. package/dist/types/components/Notification/Notifications.vue.d.ts +52 -0
  70. package/dist/types/components/Notification/constants.d.ts +2 -0
  71. package/dist/types/components/Pagination/Pagination.vue.d.ts +114 -0
  72. package/dist/types/components/Pagination/types.d.ts +5 -0
  73. package/dist/types/components/Pill/Colors.d.ts +1 -0
  74. package/dist/types/components/Pill/Pill.vue.d.ts +21 -0
  75. package/dist/types/components/Radio/Radio.vue.d.ts +50 -0
  76. package/dist/types/components/RadioGroup/RadioGroup.vue.d.ts +349 -0
  77. package/dist/types/components/RadioGroup/RadioGroupCardElement.vue.d.ts +50 -0
  78. package/dist/types/components/RadioGroup/RadioGroupElement.vue.d.ts +50 -0
  79. package/dist/types/components/RadioGroup/constants.d.ts +1 -0
  80. package/dist/types/components/Select/Select.vue.d.ts +207 -0
  81. package/dist/types/components/Seperator/NeoSeparator.vue.d.ts +2 -0
  82. package/dist/types/components/Spinner/Spinner.vue.d.ts +22 -0
  83. package/dist/types/components/Spinner/constants.d.ts +1 -0
  84. package/dist/types/components/StatusBadge/StatusBadge.vue.d.ts +46 -0
  85. package/dist/types/components/StatusBadge/constants.d.ts +2 -0
  86. package/dist/types/components/Tag/Colors.d.ts +1 -0
  87. package/dist/types/components/Tag/Tag.vue.d.ts +21 -0
  88. package/dist/types/components/TextArea/TextArea.vue.d.ts +228 -0
  89. package/dist/types/components/TextArea/constants.d.ts +1 -0
  90. package/dist/types/components/Time/Time.vue.d.ts +27 -0
  91. package/dist/types/components/Toggle/Toggle.vue.d.ts +95 -0
  92. package/dist/types/components/Upload/File/File.vue.d.ts +127 -0
  93. package/dist/types/components/Upload/Upload.vue.d.ts +354 -0
  94. package/dist/types/components/ValidationWrapper/ValidationWrapper.vue.d.ts +21 -0
  95. package/dist/types/helpers/formatters/formatDateAndTime/Storybook/FormatDateAndTime.vue.d.ts +10 -0
  96. package/dist/types/helpers/formatters/formatDateAndTime/index.d.ts +2 -0
  97. package/dist/types/helpers/formatters/formatQuantity/Storybook/FormatAmount.vue.d.ts +6 -0
  98. package/dist/types/helpers/formatters/formatQuantity/formatAmount.d.ts +3 -0
  99. package/dist/types/helpers/formatters/formatQuantity/formatNumber.d.ts +11 -0
  100. package/dist/types/helpers/uuid.d.ts +2 -0
  101. package/dist/types/index.d.ts +56 -0
  102. package/dist/types/internal/NeoErrorText/NeoErrorText.vue.d.ts +47 -0
  103. package/dist/types/internal/NeoHelpText/NeoHelpText.vue.d.ts +42 -0
  104. package/dist/types/internal/NeoLabel/NeoLabel.vue.d.ts +46 -0
  105. package/dist/types/main.d.ts +1 -0
  106. package/package.json +4 -4
  107. package/dist/types/tsconfig.app.tsbuildinfo +0 -1
@@ -0,0 +1,80 @@
1
+ import 'sanitize.css/sanitize.css';
2
+ import 'sanitize.css/forms.css';
3
+ declare const _default: import("vue").DefineComponent<{}, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
4
+ AuxButton: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
5
+ primary: {
6
+ type: BooleanConstructor;
7
+ default: boolean;
8
+ };
9
+ disabled: {
10
+ type: BooleanConstructor;
11
+ default: boolean;
12
+ };
13
+ size: {
14
+ type: StringConstructor;
15
+ default: string;
16
+ validator: (value: string) => boolean;
17
+ };
18
+ dataTestid: {
19
+ type: StringConstructor;
20
+ required: false;
21
+ };
22
+ stackDirection: {
23
+ type: StringConstructor;
24
+ required: false;
25
+ default: string;
26
+ validator: (value: string) => boolean;
27
+ };
28
+ }>, {
29
+ classes: import("vue").ComputedRef<{
30
+ [x: string]: boolean;
31
+ 'aux-button': boolean;
32
+ 'aux-button--primary': boolean;
33
+ 'aux-button--secondary': boolean;
34
+ }>;
35
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
36
+ primary: {
37
+ type: BooleanConstructor;
38
+ default: boolean;
39
+ };
40
+ disabled: {
41
+ type: BooleanConstructor;
42
+ default: boolean;
43
+ };
44
+ size: {
45
+ type: StringConstructor;
46
+ default: string;
47
+ validator: (value: string) => boolean;
48
+ };
49
+ dataTestid: {
50
+ type: StringConstructor;
51
+ required: false;
52
+ };
53
+ stackDirection: {
54
+ type: StringConstructor;
55
+ required: false;
56
+ default: string;
57
+ validator: (value: string) => boolean;
58
+ };
59
+ }>> & Readonly<{}>, {
60
+ primary: boolean;
61
+ disabled: boolean;
62
+ size: string;
63
+ stackDirection: string;
64
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
65
+ AuxDirectionalArrow: import("vue").DefineComponent<{
66
+ direction: string;
67
+ }, {
68
+ classes: import("vue").ComputedRef<{
69
+ [x: string]: boolean;
70
+ 'aux-arrow': boolean;
71
+ }>;
72
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
73
+ direction: string;
74
+ }> & Readonly<{}>, {
75
+ direction: string;
76
+ }, {}, {
77
+ CaretRightIcon: import("vue").FunctionalComponent<import("vue").SVGAttributes, {}, any, {}>;
78
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
79
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
80
+ export default _default;
@@ -0,0 +1,21 @@
1
+ interface Props {
2
+ type?: 'single' | 'multiple';
3
+ collapsible?: boolean;
4
+ variant?: 'default' | 'secondary';
5
+ }
6
+ declare var __VLS_5: {};
7
+ type __VLS_Slots = {} & {
8
+ default?: (props: typeof __VLS_5) => any;
9
+ };
10
+ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
11
+ type: "single" | "multiple";
12
+ variant: "default" | "secondary";
13
+ collapsible: boolean;
14
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
16
+ export default _default;
17
+ type __VLS_WithSlots<T, S> = T & {
18
+ new (): {
19
+ $slots: S;
20
+ };
21
+ };
@@ -0,0 +1,17 @@
1
+ interface Props {
2
+ variant?: 'default' | 'secondary';
3
+ }
4
+ declare var __VLS_6: {}, __VLS_8: {};
5
+ type __VLS_Slots = {} & {
6
+ default?: (props: typeof __VLS_6) => any;
7
+ } & {
8
+ link?: (props: typeof __VLS_8) => any;
9
+ };
10
+ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,20 @@
1
+ interface Props {
2
+ value: string;
3
+ variant?: 'default' | 'secondary';
4
+ }
5
+ declare var __VLS_6: {
6
+ variant: "default" | "secondary";
7
+ };
8
+ type __VLS_Slots = {} & {
9
+ default?: (props: typeof __VLS_6) => any;
10
+ };
11
+ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
12
+ variant: "default" | "secondary";
13
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
14
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
15
+ export default _default;
16
+ type __VLS_WithSlots<T, S> = T & {
17
+ new (): {
18
+ $slots: S;
19
+ };
20
+ };
@@ -0,0 +1,17 @@
1
+ interface Props {
2
+ variant?: 'default' | 'secondary';
3
+ }
4
+ declare var __VLS_10: {}, __VLS_12: {};
5
+ type __VLS_Slots = {} & {
6
+ default?: (props: typeof __VLS_10) => any;
7
+ } & {
8
+ icon?: (props: typeof __VLS_12) => any;
9
+ };
10
+ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ type AriaLiveValues = 'polite' | 'assertive' | 'off';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ priority: {
5
+ type: PropType<AriaLiveValues>;
6
+ default: string;
7
+ validator: (priority: string) => boolean;
8
+ };
9
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
10
+ priority: {
11
+ type: PropType<AriaLiveValues>;
12
+ default: string;
13
+ validator: (priority: string) => boolean;
14
+ };
15
+ }>> & Readonly<{}>, {
16
+ priority: AriaLiveValues;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ export default _default;
@@ -0,0 +1,66 @@
1
+ import { type Component, type PropType } from 'vue';
2
+ export interface AuxTabs {
3
+ [key: string]: AuxTab;
4
+ }
5
+ export interface AuxTab {
6
+ title: string;
7
+ component: Component;
8
+ props?: Record<string, unknown>;
9
+ selected?: boolean;
10
+ }
11
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
12
+ tabs: {
13
+ type: PropType<AuxTabs>;
14
+ validator: (value: AuxTabs) => boolean;
15
+ required: true;
16
+ };
17
+ theme: {
18
+ type: PropType<"underlined" | "boxed">;
19
+ default: string;
20
+ validator: (value: string) => boolean;
21
+ };
22
+ layout: {
23
+ type: PropType<"stretch" | "hug-left" | "hug-center">;
24
+ default: string;
25
+ validator: (value: string) => boolean;
26
+ };
27
+ dataTestid: {
28
+ type: StringConstructor;
29
+ required: false;
30
+ default: string;
31
+ validator: (value: string) => boolean;
32
+ };
33
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
34
+ "update:active": (key: string) => any;
35
+ "update:focus": (key: string) => any;
36
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
37
+ tabs: {
38
+ type: PropType<AuxTabs>;
39
+ validator: (value: AuxTabs) => boolean;
40
+ required: true;
41
+ };
42
+ theme: {
43
+ type: PropType<"underlined" | "boxed">;
44
+ default: string;
45
+ validator: (value: string) => boolean;
46
+ };
47
+ layout: {
48
+ type: PropType<"stretch" | "hug-left" | "hug-center">;
49
+ default: string;
50
+ validator: (value: string) => boolean;
51
+ };
52
+ dataTestid: {
53
+ type: StringConstructor;
54
+ required: false;
55
+ default: string;
56
+ validator: (value: string) => boolean;
57
+ };
58
+ }>> & Readonly<{
59
+ "onUpdate:active"?: ((key: string) => any) | undefined;
60
+ "onUpdate:focus"?: ((key: string) => any) | undefined;
61
+ }>, {
62
+ dataTestid: string;
63
+ layout: "stretch" | "hug-left" | "hug-center";
64
+ theme: "underlined" | "boxed";
65
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
66
+ export default _default;
@@ -0,0 +1,17 @@
1
+ export declare const TabProgrammingLanguages: import("vue").Raw<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
2
+ export declare const TabText: import("vue").Raw<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ useUpperCase: {
4
+ type: BooleanConstructor;
5
+ default: boolean;
6
+ };
7
+ }>, {}, {}, {
8
+ text(): string;
9
+ }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
10
+ useUpperCase: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
13
+ };
14
+ }>> & Readonly<{}>, {
15
+ useUpperCase: boolean;
16
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
17
+ export declare const TabTable: import("vue").Raw<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
@@ -0,0 +1 @@
1
+ export declare const BANNER_TYPES: string[];
@@ -0,0 +1,47 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ type: {
3
+ type: StringConstructor;
4
+ default: string;
5
+ validator: (value: string) => boolean;
6
+ };
7
+ title: {
8
+ type: StringConstructor;
9
+ };
10
+ dataTestid: {
11
+ type: StringConstructor;
12
+ required: false;
13
+ };
14
+ }>, {
15
+ icon: import("vue").ComputedRef<import("vue").FunctionalComponent<import("vue").SVGAttributes, {}, any, {}>>;
16
+ uuid: string;
17
+ classes: import("vue").ComputedRef<{
18
+ [x: string]: boolean;
19
+ 'aux-banner': boolean;
20
+ }>;
21
+ srOnlyMessage: import("vue").ComputedRef<string>;
22
+ iconClasses: import("vue").ComputedRef<{
23
+ [x: string]: boolean;
24
+ icon: boolean;
25
+ }>;
26
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
27
+ type: {
28
+ type: StringConstructor;
29
+ default: string;
30
+ validator: (value: string) => boolean;
31
+ };
32
+ title: {
33
+ type: StringConstructor;
34
+ };
35
+ dataTestid: {
36
+ type: StringConstructor;
37
+ required: false;
38
+ };
39
+ }>> & Readonly<{}>, {
40
+ type: string;
41
+ }, {}, {
42
+ SuccessBannerIcon: import("vue").FunctionalComponent<import("vue").SVGAttributes, {}, any, {}>;
43
+ InfoBannerIcon: import("vue").FunctionalComponent<import("vue").SVGAttributes, {}, any, {}>;
44
+ WarningBannerIcon: import("vue").FunctionalComponent<import("vue").SVGAttributes, {}, any, {}>;
45
+ ErrorBannerIcon: import("vue").FunctionalComponent<import("vue").SVGAttributes, {}, any, {}>;
46
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
47
+ export default _default;
@@ -0,0 +1,62 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ primary: {
3
+ type: BooleanConstructor;
4
+ default: boolean;
5
+ };
6
+ disabled: {
7
+ type: BooleanConstructor;
8
+ default: boolean;
9
+ };
10
+ size: {
11
+ type: StringConstructor;
12
+ default: string;
13
+ validator: (value: string) => boolean;
14
+ };
15
+ dataTestid: {
16
+ type: StringConstructor;
17
+ required: false;
18
+ };
19
+ stackDirection: {
20
+ type: StringConstructor;
21
+ required: false;
22
+ default: string;
23
+ validator: (value: string) => boolean;
24
+ };
25
+ }>, {
26
+ classes: import("vue").ComputedRef<{
27
+ [x: string]: boolean;
28
+ 'aux-button': boolean;
29
+ 'aux-button--primary': boolean;
30
+ 'aux-button--secondary': boolean;
31
+ }>;
32
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
33
+ primary: {
34
+ type: BooleanConstructor;
35
+ default: boolean;
36
+ };
37
+ disabled: {
38
+ type: BooleanConstructor;
39
+ default: boolean;
40
+ };
41
+ size: {
42
+ type: StringConstructor;
43
+ default: string;
44
+ validator: (value: string) => boolean;
45
+ };
46
+ dataTestid: {
47
+ type: StringConstructor;
48
+ required: false;
49
+ };
50
+ stackDirection: {
51
+ type: StringConstructor;
52
+ required: false;
53
+ default: string;
54
+ validator: (value: string) => boolean;
55
+ };
56
+ }>> & Readonly<{}>, {
57
+ primary: boolean;
58
+ disabled: boolean;
59
+ size: string;
60
+ stackDirection: string;
61
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
62
+ export default _default;
@@ -0,0 +1,30 @@
1
+ interface Props {
2
+ secondary?: boolean;
3
+ disabled?: boolean;
4
+ size?: 'small' | 'medium';
5
+ dataTestid?: string;
6
+ stackDirection?: 'horizontal' | 'vertical' | 'none';
7
+ type?: 'button' | 'submit' | 'reset';
8
+ }
9
+ declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {};
10
+ type __VLS_Slots = {} & {
11
+ left?: (props: typeof __VLS_1) => any;
12
+ } & {
13
+ default?: (props: typeof __VLS_3) => any;
14
+ } & {
15
+ right?: (props: typeof __VLS_5) => any;
16
+ };
17
+ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
18
+ type: "button" | "submit" | "reset";
19
+ disabled: boolean;
20
+ size: "small" | "medium";
21
+ stackDirection: "horizontal" | "vertical" | "none";
22
+ secondary: boolean;
23
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
25
+ export default _default;
26
+ type __VLS_WithSlots<T, S> = T & {
27
+ new (): {
28
+ $slots: S;
29
+ };
30
+ };
@@ -0,0 +1,20 @@
1
+ interface Props {
2
+ to?: string;
3
+ disabled?: boolean;
4
+ icon?: 'left' | 'right' | 'none';
5
+ }
6
+ declare var __VLS_10: {};
7
+ type __VLS_Slots = {} & {
8
+ default?: (props: typeof __VLS_10) => any;
9
+ };
10
+ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
11
+ disabled: boolean;
12
+ icon: "left" | "right" | "none";
13
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
14
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
15
+ export default _default;
16
+ type __VLS_WithSlots<T, S> = T & {
17
+ new (): {
18
+ $slots: S;
19
+ };
20
+ };
@@ -0,0 +1,2 @@
1
+ export declare const SIZES: string[];
2
+ export declare const STACK_DIRECTIONS: string[];
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,238 @@
1
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ value: {
3
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
4
+ };
5
+ disabled: {
6
+ type: BooleanConstructor;
7
+ };
8
+ id: {
9
+ type: StringConstructor;
10
+ default: (<T extends ArrayLike<number>>(options: import("uuid").V4Options | null | undefined, buffer: T, offset?: number) => T) & ((options?: import("uuid").V4Options) => string);
11
+ };
12
+ name: {
13
+ type: StringConstructor;
14
+ required: false;
15
+ };
16
+ selected: {
17
+ type: BooleanConstructor;
18
+ default: boolean;
19
+ };
20
+ indeterminate: {
21
+ type: BooleanConstructor;
22
+ default: boolean;
23
+ };
24
+ layout: {
25
+ type: StringConstructor;
26
+ validator: (value: string) => boolean;
27
+ default: string;
28
+ };
29
+ }>, {
30
+ changeEvent: (value: Event) => void;
31
+ checkboxType: import("vue").ComputedRef<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
32
+ value: {
33
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
34
+ };
35
+ disabled: {
36
+ type: BooleanConstructor;
37
+ };
38
+ id: {
39
+ type: StringConstructor;
40
+ default: (<T extends ArrayLike<number>>(options: import("uuid").V4Options | null | undefined, buffer: T, offset?: number) => T) & ((options?: import("uuid").V4Options) => string);
41
+ };
42
+ name: {
43
+ type: StringConstructor;
44
+ required: false;
45
+ };
46
+ selected: {
47
+ type: BooleanConstructor;
48
+ default: boolean;
49
+ };
50
+ indeterminate: {
51
+ type: BooleanConstructor;
52
+ default: boolean;
53
+ };
54
+ }>, {
55
+ changeEvent: (event: Event) => void;
56
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
57
+ value: {
58
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
59
+ };
60
+ disabled: {
61
+ type: BooleanConstructor;
62
+ };
63
+ id: {
64
+ type: StringConstructor;
65
+ default: (<T extends ArrayLike<number>>(options: import("uuid").V4Options | null | undefined, buffer: T, offset?: number) => T) & ((options?: import("uuid").V4Options) => string);
66
+ };
67
+ name: {
68
+ type: StringConstructor;
69
+ required: false;
70
+ };
71
+ selected: {
72
+ type: BooleanConstructor;
73
+ default: boolean;
74
+ };
75
+ indeterminate: {
76
+ type: BooleanConstructor;
77
+ default: boolean;
78
+ };
79
+ }>> & Readonly<{
80
+ onChange?: ((...args: any[]) => any) | undefined;
81
+ }>, {
82
+ disabled: boolean;
83
+ id: string;
84
+ selected: boolean;
85
+ indeterminate: boolean;
86
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
87
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:selected")[], "change" | "update:selected", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
88
+ value: {
89
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
90
+ };
91
+ disabled: {
92
+ type: BooleanConstructor;
93
+ };
94
+ id: {
95
+ type: StringConstructor;
96
+ default: (<T extends ArrayLike<number>>(options: import("uuid").V4Options | null | undefined, buffer: T, offset?: number) => T) & ((options?: import("uuid").V4Options) => string);
97
+ };
98
+ name: {
99
+ type: StringConstructor;
100
+ required: false;
101
+ };
102
+ selected: {
103
+ type: BooleanConstructor;
104
+ default: boolean;
105
+ };
106
+ indeterminate: {
107
+ type: BooleanConstructor;
108
+ default: boolean;
109
+ };
110
+ layout: {
111
+ type: StringConstructor;
112
+ validator: (value: string) => boolean;
113
+ default: string;
114
+ };
115
+ }>> & Readonly<{
116
+ onChange?: ((...args: any[]) => any) | undefined;
117
+ "onUpdate:selected"?: ((...args: any[]) => any) | undefined;
118
+ }>, {
119
+ disabled: boolean;
120
+ id: string;
121
+ selected: boolean;
122
+ layout: string;
123
+ indeterminate: boolean;
124
+ }, {}, {
125
+ AuxCheckboxRegular: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
126
+ value: {
127
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
128
+ };
129
+ disabled: {
130
+ type: BooleanConstructor;
131
+ };
132
+ id: {
133
+ type: StringConstructor;
134
+ default: (<T extends ArrayLike<number>>(options: import("uuid").V4Options | null | undefined, buffer: T, offset?: number) => T) & ((options?: import("uuid").V4Options) => string);
135
+ };
136
+ name: {
137
+ type: StringConstructor;
138
+ required: false;
139
+ };
140
+ selected: {
141
+ type: BooleanConstructor;
142
+ default: boolean;
143
+ };
144
+ indeterminate: {
145
+ type: BooleanConstructor;
146
+ default: boolean;
147
+ };
148
+ }>, {
149
+ changeEvent: (event: Event) => void;
150
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
151
+ value: {
152
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
153
+ };
154
+ disabled: {
155
+ type: BooleanConstructor;
156
+ };
157
+ id: {
158
+ type: StringConstructor;
159
+ default: (<T extends ArrayLike<number>>(options: import("uuid").V4Options | null | undefined, buffer: T, offset?: number) => T) & ((options?: import("uuid").V4Options) => string);
160
+ };
161
+ name: {
162
+ type: StringConstructor;
163
+ required: false;
164
+ };
165
+ selected: {
166
+ type: BooleanConstructor;
167
+ default: boolean;
168
+ };
169
+ indeterminate: {
170
+ type: BooleanConstructor;
171
+ default: boolean;
172
+ };
173
+ }>> & Readonly<{
174
+ onChange?: ((...args: any[]) => any) | undefined;
175
+ }>, {
176
+ disabled: boolean;
177
+ id: string;
178
+ selected: boolean;
179
+ indeterminate: boolean;
180
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
181
+ AuxCheckboxCard: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
182
+ value: {
183
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
184
+ };
185
+ disabled: {
186
+ type: BooleanConstructor;
187
+ };
188
+ id: {
189
+ type: StringConstructor;
190
+ default: (<T extends ArrayLike<number>>(options: import("uuid").V4Options | null | undefined, buffer: T, offset?: number) => T) & ((options?: import("uuid").V4Options) => string);
191
+ };
192
+ name: {
193
+ type: StringConstructor;
194
+ required: false;
195
+ };
196
+ selected: {
197
+ type: BooleanConstructor;
198
+ default: boolean;
199
+ };
200
+ indeterminate: {
201
+ type: BooleanConstructor;
202
+ default: boolean;
203
+ };
204
+ }>, {
205
+ changeEvent: (event: Event) => void;
206
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
207
+ value: {
208
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
209
+ };
210
+ disabled: {
211
+ type: BooleanConstructor;
212
+ };
213
+ id: {
214
+ type: StringConstructor;
215
+ default: (<T extends ArrayLike<number>>(options: import("uuid").V4Options | null | undefined, buffer: T, offset?: number) => T) & ((options?: import("uuid").V4Options) => string);
216
+ };
217
+ name: {
218
+ type: StringConstructor;
219
+ required: false;
220
+ };
221
+ selected: {
222
+ type: BooleanConstructor;
223
+ default: boolean;
224
+ };
225
+ indeterminate: {
226
+ type: BooleanConstructor;
227
+ default: boolean;
228
+ };
229
+ }>> & Readonly<{
230
+ onChange?: ((...args: any[]) => any) | undefined;
231
+ }>, {
232
+ disabled: boolean;
233
+ id: string;
234
+ selected: boolean;
235
+ indeterminate: boolean;
236
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
237
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
238
+ export default _default;