@ambita/design-system 3.0.27-31.0 → 3.0.27-311.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.
- package/dist/aux.common.js +66687 -6307
- package/dist/aux.common.js.map +1 -1
- package/dist/aux.umd.js +66687 -6307
- package/dist/aux.umd.js.map +1 -1
- package/dist/aux.umd.min.js +35 -1
- package/dist/aux.umd.min.js.map +1 -1
- package/dist/css/colors-css-variables.css +55 -0
- package/dist/css/colors-css-variables.scss +63 -52
- package/dist/css/colors-scss-variables.scss +9 -1
- package/dist/favicons/ambita/favicon.ico +0 -0
- package/dist/favicons/ambita/favicon.svg +9 -0
- package/dist/types/components/AuxAriaAnnouncer/AuxAriaAnnouncer.stories.d.ts +21 -0
- package/dist/types/components/AuxAriaAnnouncer/AuxAriaAnnouncer.vue.d.ts +7 -7
- package/dist/types/components/Banner/Banner.stories.d.ts +48 -0
- package/dist/types/components/Banner/Banner.vue.d.ts +15 -15
- package/dist/types/components/Button/Button.stories.d.ts +55 -0
- package/dist/types/components/Button/Button.vue.d.ts +19 -14
- package/dist/types/components/Card/Card.stories.d.ts +7 -0
- package/dist/types/components/Card/Card.vue.d.ts +1 -5
- package/dist/types/components/Checkbox/Checkbox.stories.d.ts +65 -0
- package/dist/types/components/Checkbox/Checkbox.vue.d.ts +25 -17
- package/dist/types/components/Color/Colors.stories.d.ts +7 -0
- package/dist/types/components/Definition/Definition.stories.d.ts +71 -0
- package/dist/types/components/Definition/Definition.vue.d.ts +24 -16
- package/dist/types/components/DirectionalArrow/DirectionalArrow.stories.d.ts +28 -0
- package/dist/types/components/DirectionalArrow/DirectionalArrow.vue.d.ts +8 -7
- package/dist/types/components/FormElement/FormElement.vue.d.ts +20 -14
- package/dist/types/components/Icons/Icon.stories.d.ts +7 -0
- package/dist/types/components/Input/Input.stories.d.ts +122 -0
- package/dist/types/components/Input/Input.vue.d.ts +46 -32
- package/dist/types/components/JsonForm/Controls/Array.vue.d.ts +35 -0
- package/dist/types/components/JsonForm/Controls/Boolean.vue.d.ts +22 -0
- package/dist/types/components/JsonForm/Controls/Number.vue.d.ts +19 -0
- package/dist/types/components/JsonForm/Controls/String.vue.d.ts +29 -0
- package/dist/types/components/JsonForm/Controls/Wrapper.vue.d.ts +27 -0
- package/dist/types/components/JsonForm/JsonForm.stories.d.ts +7 -0
- package/dist/types/components/JsonForm/Renderers/Array.vue.d.ts +99 -0
- package/dist/types/components/JsonForm/Renderers/Boolean.vue.d.ts +99 -0
- package/dist/types/components/JsonForm/Renderers/Integer.vue.d.ts +99 -0
- package/dist/types/components/JsonForm/Renderers/Layout.vue.d.ts +88 -0
- package/dist/types/components/JsonForm/Renderers/Number.vue.d.ts +99 -0
- package/dist/types/components/JsonForm/Renderers/Object.vue.d.ts +97 -0
- package/dist/types/components/JsonForm/Renderers/String.vue.d.ts +99 -0
- package/dist/types/components/JsonForm/Renderers/index.d.ts +9 -0
- package/dist/types/components/Link/Link.stories.d.ts +50 -0
- package/dist/types/components/Link/Link.vue.d.ts +11 -8
- package/dist/types/components/Logo/Logo.stories.d.ts +7 -0
- package/dist/types/components/Modal/Actions.vue.d.ts +6 -5
- package/dist/types/components/Modal/Modal.stories.d.ts +42 -0
- package/dist/types/components/Modal/Modal.vue.d.ts +25 -16
- package/dist/types/components/Notification/Notification.stories.d.ts +7 -0
- package/dist/types/components/Notification/Notification.vue.d.ts +31 -0
- package/dist/types/components/Notification/Notifications.vue.d.ts +20 -0
- package/dist/types/components/Pagination/Pagination.stories.d.ts +52 -0
- package/dist/types/components/Pagination/Pagination.vue.d.ts +16 -10
- package/dist/types/components/Pill/Pill.stories.d.ts +27 -0
- package/dist/types/components/Pill/Pill.vue.d.ts +7 -7
- package/dist/types/components/Radio/Radio.stories.d.ts +59 -0
- package/dist/types/components/Radio/Radio.vue.d.ts +22 -15
- package/dist/types/components/Select/Select.stories.d.ts +102 -0
- package/dist/types/components/Select/Select.vue.d.ts +36 -23
- package/dist/types/components/Spinner/Spinner.stories.d.ts +8 -0
- package/dist/types/components/StatusBadge/StatusBadge.stories.d.ts +31 -0
- package/dist/types/components/StatusBadge/StatusBadge.vue.d.ts +25 -0
- package/dist/types/components/StatusBadge/Statuses.d.ts +1 -0
- package/dist/types/components/StatusBanner/StatusBanner.d.ts +2 -0
- package/dist/types/components/Tag/Colors.d.ts +1 -0
- package/dist/types/components/Tag/Tag.stories.d.ts +27 -0
- package/dist/types/components/Tag/Tag.vue.d.ts +21 -0
- package/dist/types/components/TextArea/TextArea.stories.d.ts +129 -0
- package/dist/types/components/TextArea/TextArea.vue.d.ts +54 -35
- package/dist/types/components/Toggle/Toggle.stories.d.ts +101 -0
- package/dist/types/components/Toggle/Toggle.vue.d.ts +94 -19
- package/dist/types/components/Upload/File/File.vue.d.ts +31 -18
- package/dist/types/components/Upload/Upload.stories.d.ts +94 -0
- package/dist/types/components/Upload/Upload.vue.d.ts +27 -18
- package/dist/types/helpers/formatters/formatDateAndTime/Storybook/formatDateAndTime.stories.d.ts +7 -0
- package/dist/types/helpers/formatters/formatQuantity/Storybook/formatAmount.stories.d.ts +7 -0
- package/dist/types/helpers/formatters/formatQuantity/Storybook/formatNumber.stories.d.ts +7 -0
- package/dist/types/helpers/formatters/formatQuantity/formatNumber.d.ts +1 -0
- package/dist/types/index.d.ts +5 -0
- package/package.json +6 -2
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/* Do not use if you need IE11 support */
|
|
2
|
+
:root {
|
|
3
|
+
/* Purple */
|
|
4
|
+
--aux-purple: #8237DC;
|
|
5
|
+
--aux-purple-1: #E6D7F8;
|
|
6
|
+
--aux-purple-2: #CDAFF1;
|
|
7
|
+
--aux-purple-3: #B487EA;
|
|
8
|
+
--aux-purple-4: #9B5FE3;
|
|
9
|
+
--aux-purple-5: #682CB0;
|
|
10
|
+
--aux-purple-6: #4E2184;
|
|
11
|
+
--aux-purple-7: #341658;
|
|
12
|
+
--aux-purple-8: #1A0B2C;
|
|
13
|
+
/* Dark Purple */
|
|
14
|
+
--aux-dark-purple: #360076;
|
|
15
|
+
--aux-dark-purple-1: #D8CDE6;
|
|
16
|
+
--aux-dark-purple-2: #B098C6;
|
|
17
|
+
--aux-dark-purple-3: #8666AC;
|
|
18
|
+
--aux-dark-purple-4: #5F3591;
|
|
19
|
+
--aux-dark-purple-5: #2D1C5B;
|
|
20
|
+
--aux-dark-purple-6: #200E47;
|
|
21
|
+
--aux-dark-purple-7: #1A0F2E;
|
|
22
|
+
--aux-dark-purple-8: #110B18;
|
|
23
|
+
/* Mint green */
|
|
24
|
+
--aux-mint: #34D9C3;
|
|
25
|
+
--aux-mint-1: #D8EFEE;
|
|
26
|
+
--aux-mint-2: #B5E1DD;
|
|
27
|
+
--aux-mint-3: #93D4D0;
|
|
28
|
+
--aux-mint-4: #72CAC3;
|
|
29
|
+
--aux-mint-5: #26AE9B;
|
|
30
|
+
--aux-mint-6: #218376;
|
|
31
|
+
--aux-mint-7: #14584E;
|
|
32
|
+
--aux-mint-8: #0A2B26;
|
|
33
|
+
/* Grey */
|
|
34
|
+
--aux-grey-1: #E1E1E1;
|
|
35
|
+
--aux-grey-2: #D2D2D2;
|
|
36
|
+
--aux-grey-3: #BEBEBE;
|
|
37
|
+
--aux-grey-4: #AFAFAF;
|
|
38
|
+
--aux-grey-5: #555555;
|
|
39
|
+
--aux-grey-6: #333333;
|
|
40
|
+
/* Supports */
|
|
41
|
+
--aux-red: #AC1631;
|
|
42
|
+
--aux-red-1: #ffe5e5;
|
|
43
|
+
--aux-blue: #0067A3;
|
|
44
|
+
--aux-blue-2: #C2E0F2;
|
|
45
|
+
--aux-yellow: #ECD025;
|
|
46
|
+
--aux-yellow-1: #fff3a8;
|
|
47
|
+
--aux-yellow-2: #F2C94C;
|
|
48
|
+
--aux-green: #5CB85C;
|
|
49
|
+
--aux-white: #FFF;
|
|
50
|
+
--aux-black: #000;
|
|
51
|
+
--aux-focus: #003eff;
|
|
52
|
+
/* Borders */
|
|
53
|
+
--aux-border-1-grey-1: 1px solid #E1E1E1;
|
|
54
|
+
--aux-border-2-grey-1: 2px solid #E1E1E1;
|
|
55
|
+
}
|
|
@@ -1,54 +1,65 @@
|
|
|
1
1
|
@import './colors-scss-variables';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
--aux-purple
|
|
7
|
-
--aux-purple-
|
|
8
|
-
--aux-purple-
|
|
9
|
-
--aux-purple-
|
|
10
|
-
--aux-purple-
|
|
11
|
-
--aux-purple-
|
|
12
|
-
--aux-purple-
|
|
13
|
-
--aux-purple-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
--aux-dark-purple
|
|
18
|
-
--aux-dark-purple-
|
|
19
|
-
--aux-dark-purple-
|
|
20
|
-
--aux-dark-purple-
|
|
21
|
-
--aux-dark-purple-
|
|
22
|
-
--aux-dark-purple-
|
|
23
|
-
--aux-dark-purple-
|
|
24
|
-
--aux-dark-purple-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
--aux-mint
|
|
29
|
-
--aux-mint-
|
|
30
|
-
--aux-mint-
|
|
31
|
-
--aux-mint-
|
|
32
|
-
--aux-mint-
|
|
33
|
-
--aux-mint-
|
|
34
|
-
--aux-mint-
|
|
35
|
-
--aux-mint-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
--aux-grey-
|
|
40
|
-
--aux-grey-
|
|
41
|
-
--aux-grey-
|
|
42
|
-
--aux-grey-
|
|
43
|
-
--aux-grey-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
--aux-
|
|
48
|
-
--aux-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
--aux-
|
|
52
|
-
|
|
53
|
-
--aux-
|
|
2
|
+
|
|
3
|
+
/* Do not use if you need IE11 support */
|
|
4
|
+
:root {
|
|
5
|
+
/* Purple */
|
|
6
|
+
--aux-purple: #{$aux-purple};
|
|
7
|
+
--aux-purple-1: #{$aux-purple-1};
|
|
8
|
+
--aux-purple-2: #{$aux-purple-2};
|
|
9
|
+
--aux-purple-3: #{$aux-purple-3};
|
|
10
|
+
--aux-purple-4: #{$aux-purple-4};
|
|
11
|
+
--aux-purple-5: #{$aux-purple-5};
|
|
12
|
+
--aux-purple-6: #{$aux-purple-6};
|
|
13
|
+
--aux-purple-7: #{$aux-purple-7};
|
|
14
|
+
--aux-purple-8: #{$aux-purple-8};
|
|
15
|
+
|
|
16
|
+
/* Dark Purple */
|
|
17
|
+
--aux-dark-purple: #{$aux-dark-purple};
|
|
18
|
+
--aux-dark-purple-1: #{$aux-dark-purple-1};
|
|
19
|
+
--aux-dark-purple-2: #{$aux-dark-purple-2};
|
|
20
|
+
--aux-dark-purple-3: #{$aux-dark-purple-3};
|
|
21
|
+
--aux-dark-purple-4: #{$aux-dark-purple-4};
|
|
22
|
+
--aux-dark-purple-5: #{$aux-dark-purple-5};
|
|
23
|
+
--aux-dark-purple-6: #{$aux-dark-purple-6};
|
|
24
|
+
--aux-dark-purple-7: #{$aux-dark-purple-7};
|
|
25
|
+
--aux-dark-purple-8: #{$aux-dark-purple-8};
|
|
26
|
+
|
|
27
|
+
/* Mint green */
|
|
28
|
+
--aux-mint: #{$aux-mint};
|
|
29
|
+
--aux-mint-1: #{$aux-mint-1};
|
|
30
|
+
--aux-mint-2: #{$aux-mint-2};
|
|
31
|
+
--aux-mint-3: #{$aux-mint-3};
|
|
32
|
+
--aux-mint-4: #{$aux-mint-4};
|
|
33
|
+
--aux-mint-5: #{$aux-mint-5};
|
|
34
|
+
--aux-mint-6: #{$aux-mint-6};
|
|
35
|
+
--aux-mint-7: #{$aux-mint-7};
|
|
36
|
+
--aux-mint-8: #{$aux-mint-8};
|
|
37
|
+
|
|
38
|
+
/* Grey */
|
|
39
|
+
--aux-grey-1: #{$aux-grey-1};
|
|
40
|
+
--aux-grey-2: #{$aux-grey-2};
|
|
41
|
+
--aux-grey-3: #{$aux-grey-3};
|
|
42
|
+
--aux-grey-4: #{$aux-grey-4};
|
|
43
|
+
--aux-grey-5: #{$aux-grey-5};
|
|
44
|
+
--aux-grey-6: #{$aux-grey-6};
|
|
45
|
+
|
|
46
|
+
/* Supports */
|
|
47
|
+
--aux-red: #{$aux-red};
|
|
48
|
+
--aux-red-1: #{$aux-red-1};
|
|
49
|
+
|
|
50
|
+
--aux-blue: #{$aux-blue};
|
|
51
|
+
--aux-blue-2: #{$aux-blue-2};
|
|
52
|
+
|
|
53
|
+
--aux-yellow: #{$aux-yellow};
|
|
54
|
+
--aux-yellow-1: #{$aux-yellow-1};
|
|
55
|
+
--aux-yellow-2: #{$aux-yellow-2};
|
|
56
|
+
|
|
57
|
+
--aux-green: #{$aux-green};
|
|
58
|
+
--aux-white: #{$aux-white};
|
|
59
|
+
--aux-black: #{$aux-black};
|
|
60
|
+
--aux-focus: #{$aux-focus};
|
|
61
|
+
|
|
62
|
+
/* Borders */
|
|
63
|
+
--aux-border-1-grey-1: 1px solid #{$aux-grey-1};
|
|
64
|
+
--aux-border-2-grey-1: 2px solid #{$aux-grey-1};
|
|
54
65
|
}
|
|
@@ -39,10 +39,18 @@ $aux-grey-4: #AFAFAF;
|
|
|
39
39
|
$aux-grey-5: #555555;
|
|
40
40
|
$aux-grey-6: #333333;
|
|
41
41
|
|
|
42
|
+
|
|
42
43
|
// Supports
|
|
43
|
-
$aux-red: #
|
|
44
|
+
$aux-red: #AC1631;
|
|
45
|
+
$aux-red-1: #ffe5e5;
|
|
46
|
+
|
|
44
47
|
$aux-blue: #0067A3;
|
|
48
|
+
$aux-blue-2: #C2E0F2;
|
|
49
|
+
|
|
45
50
|
$aux-yellow: #ECD025;
|
|
51
|
+
$aux-yellow-1: #fff3a8;
|
|
52
|
+
$aux-yellow-2:#F2C94C;
|
|
53
|
+
|
|
46
54
|
$aux-green: #5CB85C;
|
|
47
55
|
$aux-white: #FFF;
|
|
48
56
|
$aux-black: #000;
|
|
Binary file
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg width="584" height="584" viewBox="0 0 584 584" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<style>
|
|
3
|
+
#favicon{fill: #8237DC;}
|
|
4
|
+
@media (prefers-color-scheme: dark) {
|
|
5
|
+
#favicon {fill: #FFF;}
|
|
6
|
+
}
|
|
7
|
+
</style>
|
|
8
|
+
<path id="favicon" d="M435.463 303.831C433.579 342.337 418.392 378.997 392.493 407.559C379.028 421.358 362.927 432.31 345.145 439.764C327.363 447.218 308.264 451.022 288.983 450.95C269.67 451.24 250.505 447.535 232.692 440.068C214.88 432.601 198.803 421.533 185.472 407.559C158.783 378.631 143.17 338.582 143.17 292.995V291.897C143.457 245.595 158.974 205.975 185.472 178.384C198.359 163.698 214.3 152.004 232.179 144.121C250.059 136.239 269.446 132.358 288.983 132.75C308.486 132.582 327.803 136.564 345.649 144.431C363.495 152.299 379.463 163.873 392.493 178.384C418.704 206.652 433.945 243.357 435.463 281.873V303.879V303.831ZM506.555 13.6517H482.682C470.171 13.6895 458.182 18.6755 449.335 27.5209C440.488 36.3662 435.501 48.3522 435.463 60.8614V61.5774C392.752 30.826 341.52 14.1414 288.887 13.8427C253.297 13.8319 218.094 21.2281 185.519 35.5606C152.944 49.893 123.709 70.848 99.6752 97.092C52.0738 146.784 24.2864 215.474 24 291.85V292.948C23.3913 365.437 50.4552 435.43 99.6752 488.66C123.969 514.427 153.301 534.926 185.85 548.886C218.399 562.845 253.47 569.967 288.887 569.809C341.43 569.835 392.671 553.465 435.463 522.981C435.589 535.428 440.616 547.324 449.455 556.089C458.294 564.855 470.232 569.785 482.682 569.809H506.555C519.066 569.771 531.055 564.785 539.902 555.94C548.749 547.095 553.736 535.109 553.774 522.599V60.8614C553.736 48.3522 548.749 36.3662 539.902 27.5209C531.055 18.6755 519.066 13.6895 506.555 13.6517V13.6517Z" fill="#8237DC"/>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Story } from '@storybook/vue3';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: import("vue").DefineComponent<{
|
|
5
|
+
priority: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
default: string;
|
|
8
|
+
validator: (priority: string) => boolean;
|
|
9
|
+
};
|
|
10
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
+
priority: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
14
|
+
validator: (priority: string) => boolean;
|
|
15
|
+
};
|
|
16
|
+
}>>, {
|
|
17
|
+
priority: string;
|
|
18
|
+
}>;
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
21
|
+
export declare const AriaLiveAnnounceProps: Story<import("@storybook/vue3").Args>;
|
|
@@ -4,13 +4,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4
4
|
default: string;
|
|
5
5
|
validator: (priority: string) => boolean;
|
|
6
6
|
};
|
|
7
|
-
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
8
|
-
priority
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
}
|
|
7
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
|
+
priority: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: string;
|
|
11
|
+
validator: (priority: string) => boolean;
|
|
12
|
+
};
|
|
13
|
+
}>>, {
|
|
14
14
|
priority: string;
|
|
15
15
|
}>;
|
|
16
16
|
export default _default;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { Story } from '@storybook/vue3';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: import("vue").DefineComponent<{
|
|
5
|
+
type: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
default: string;
|
|
8
|
+
validator: (value: string) => boolean;
|
|
9
|
+
};
|
|
10
|
+
title: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
};
|
|
13
|
+
dataTestid: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
required: false;
|
|
16
|
+
};
|
|
17
|
+
}, {
|
|
18
|
+
icon: import("vue").ComputedRef<import("vue").DefineComponent<{}, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
19
|
+
uuid: () => string;
|
|
20
|
+
classes: import("vue").ComputedRef<{
|
|
21
|
+
[x: string]: boolean;
|
|
22
|
+
'aux-banner': boolean;
|
|
23
|
+
}>;
|
|
24
|
+
srOnlyMessage: import("vue").ComputedRef<string>;
|
|
25
|
+
iconClasses: import("vue").ComputedRef<{
|
|
26
|
+
[x: string]: boolean;
|
|
27
|
+
icon: boolean;
|
|
28
|
+
}>;
|
|
29
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
30
|
+
type: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
default: string;
|
|
33
|
+
validator: (value: string) => boolean;
|
|
34
|
+
};
|
|
35
|
+
title: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
};
|
|
38
|
+
dataTestid: {
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
required: false;
|
|
41
|
+
};
|
|
42
|
+
}>>, {
|
|
43
|
+
type: string;
|
|
44
|
+
}>;
|
|
45
|
+
};
|
|
46
|
+
export default _default;
|
|
47
|
+
export declare const Banner: Story<import("@storybook/vue3").Args>;
|
|
48
|
+
export declare const Examples: Story<import("@storybook/vue3").Args>;
|
|
@@ -12,9 +12,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
12
12
|
required: false;
|
|
13
13
|
};
|
|
14
14
|
}, {
|
|
15
|
-
icon: import("vue").ComputedRef<import("vue").DefineComponent<{}, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
16
|
-
[x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
17
|
-
}, {}>>;
|
|
15
|
+
icon: import("vue").ComputedRef<import("vue").DefineComponent<{}, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
18
16
|
uuid: () => string;
|
|
19
17
|
classes: import("vue").ComputedRef<{
|
|
20
18
|
[x: string]: boolean;
|
|
@@ -25,18 +23,20 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
25
23
|
[x: string]: boolean;
|
|
26
24
|
icon: boolean;
|
|
27
25
|
}>;
|
|
28
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
29
|
-
type
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
26
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, 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
|
+
}>>, {
|
|
40
40
|
type: string;
|
|
41
41
|
}>;
|
|
42
42
|
export default _default;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { Story } from '@storybook/vue3';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: import("vue").DefineComponent<{
|
|
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
|
+
}, {
|
|
23
|
+
classes: import("vue").ComputedRef<{
|
|
24
|
+
[x: string]: boolean;
|
|
25
|
+
'aux-button': boolean;
|
|
26
|
+
'aux-button--primary': boolean;
|
|
27
|
+
'aux-button--secondary': boolean;
|
|
28
|
+
}>;
|
|
29
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
30
|
+
primary: {
|
|
31
|
+
type: BooleanConstructor;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
34
|
+
disabled: {
|
|
35
|
+
type: BooleanConstructor;
|
|
36
|
+
default: boolean;
|
|
37
|
+
};
|
|
38
|
+
size: {
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
default: string;
|
|
41
|
+
validator: (value: string) => boolean;
|
|
42
|
+
};
|
|
43
|
+
dataTestid: {
|
|
44
|
+
type: StringConstructor;
|
|
45
|
+
required: false;
|
|
46
|
+
};
|
|
47
|
+
}>>, {
|
|
48
|
+
primary: boolean;
|
|
49
|
+
disabled: boolean;
|
|
50
|
+
size: string;
|
|
51
|
+
}>;
|
|
52
|
+
};
|
|
53
|
+
export default _default;
|
|
54
|
+
export declare const Buttons: Story<import("@storybook/vue3").Args>;
|
|
55
|
+
export declare const Examples: Story<import("@storybook/vue3").Args>;
|
|
@@ -23,20 +23,25 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
23
23
|
'aux-button--primary': boolean;
|
|
24
24
|
'aux-button--secondary': boolean;
|
|
25
25
|
}>;
|
|
26
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
27
|
-
primary
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
}
|
|
26
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
+
primary: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
disabled: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
size: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
validator: (value: string) => boolean;
|
|
39
|
+
};
|
|
40
|
+
dataTestid: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
required: false;
|
|
43
|
+
};
|
|
44
|
+
}>>, {
|
|
40
45
|
primary: boolean;
|
|
41
46
|
disabled: boolean;
|
|
42
47
|
size: string;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Story } from '@storybook/vue3';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
5
|
+
};
|
|
6
|
+
export default _default;
|
|
7
|
+
export declare const Card: Story<import("@storybook/vue3").Args>;
|
|
@@ -1,6 +1,2 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
2
|
-
[x: string & `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
3
|
-
} | {
|
|
4
|
-
[x: string & `on${string}`]: ((...args: never) => any) | undefined;
|
|
5
|
-
}), {}>;
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
6
2
|
export default _default;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { Story } from '@storybook/vue3';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: import("vue").DefineComponent<{
|
|
5
|
+
value: {
|
|
6
|
+
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
|
7
|
+
};
|
|
8
|
+
disabled: {
|
|
9
|
+
type: BooleanConstructor;
|
|
10
|
+
};
|
|
11
|
+
id: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: (<T extends ArrayLike<number>>(options: import("uuid").V4Options | null | undefined, buffer: T, offset?: number | undefined) => T) & ((options?: import("uuid").V4Options | undefined) => string);
|
|
14
|
+
};
|
|
15
|
+
name: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
required: false;
|
|
18
|
+
};
|
|
19
|
+
selected: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
23
|
+
indeterminate: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
28
|
+
value: {
|
|
29
|
+
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
|
30
|
+
};
|
|
31
|
+
disabled: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
};
|
|
34
|
+
id: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
default: (<T extends ArrayLike<number>>(options: import("uuid").V4Options | null | undefined, buffer: T, offset?: number | undefined) => T) & ((options?: import("uuid").V4Options | undefined) => string);
|
|
37
|
+
};
|
|
38
|
+
name: {
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
required: false;
|
|
41
|
+
};
|
|
42
|
+
selected: {
|
|
43
|
+
type: BooleanConstructor;
|
|
44
|
+
default: boolean;
|
|
45
|
+
};
|
|
46
|
+
indeterminate: {
|
|
47
|
+
type: BooleanConstructor;
|
|
48
|
+
default: boolean;
|
|
49
|
+
};
|
|
50
|
+
}>> & {
|
|
51
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
52
|
+
}, {
|
|
53
|
+
id: string;
|
|
54
|
+
disabled: boolean;
|
|
55
|
+
selected: boolean;
|
|
56
|
+
indeterminate: boolean;
|
|
57
|
+
}>;
|
|
58
|
+
argTypes: {
|
|
59
|
+
change: {
|
|
60
|
+
action: string;
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
export default _default;
|
|
65
|
+
export declare const Vertical: Story<import("@storybook/vue3").Args>;
|
|
@@ -21,26 +21,34 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
21
21
|
type: BooleanConstructor;
|
|
22
22
|
default: boolean;
|
|
23
23
|
};
|
|
24
|
-
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
25
|
-
value
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
24
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "change"[], "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
25
|
+
value: {
|
|
26
|
+
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
|
27
|
+
};
|
|
28
|
+
disabled: {
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
};
|
|
31
|
+
id: {
|
|
32
|
+
type: StringConstructor;
|
|
33
|
+
default: (<T extends ArrayLike<number>>(options: import("uuid").V4Options | null | undefined, buffer: T, offset?: number | undefined) => T) & ((options?: import("uuid").V4Options | undefined) => string);
|
|
34
|
+
};
|
|
35
|
+
name: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
required: false;
|
|
38
|
+
};
|
|
39
|
+
selected: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
indeterminate: {
|
|
44
|
+
type: BooleanConstructor;
|
|
45
|
+
default: boolean;
|
|
46
|
+
};
|
|
47
|
+
}>> & {
|
|
40
48
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
41
49
|
}, {
|
|
42
|
-
disabled: boolean;
|
|
43
50
|
id: string;
|
|
51
|
+
disabled: boolean;
|
|
44
52
|
selected: boolean;
|
|
45
53
|
indeterminate: boolean;
|
|
46
54
|
}>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Story } from '@storybook/vue3';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: import("vue").DefineComponent<{}, {}, any, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
5
|
+
};
|
|
6
|
+
export default _default;
|
|
7
|
+
export declare const Colors: Story<import("@storybook/vue3").Args>;
|