@ambita/design-system 3.0.27-91.0 → 3.0.27
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 +61699 -24708
- package/dist/aux.common.js.map +1 -1
- package/dist/aux.umd.js +61699 -24708
- package/dist/aux.umd.js.map +1 -1
- package/dist/aux.umd.min.js +13 -5
- package/dist/aux.umd.min.js.map +1 -1
- package/dist/css/colors-scss-variables.scss +5 -0
- 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 +26 -18
- 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 +24 -16
- package/dist/types/components/Notification/Notification.stories.d.ts +7 -0
- package/dist/types/components/Notification/Notification.vue.d.ts +13 -12
- package/dist/types/components/Notification/Notifications.vue.d.ts +6 -5
- 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 +38 -25
- 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/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/index.d.ts +3 -0
- package/package.json +3 -2
|
@@ -39,10 +39,15 @@ $aux-grey-4: #AFAFAF;
|
|
|
39
39
|
$aux-grey-5: #555555;
|
|
40
40
|
$aux-grey-6: #333333;
|
|
41
41
|
|
|
42
|
+
|
|
42
43
|
// Supports
|
|
44
|
+
$aux-red-1: #ffe5e5;
|
|
43
45
|
$aux-red: #C10000;
|
|
44
46
|
$aux-blue: #0067A3;
|
|
47
|
+
$aux-blue-2: #C2E0F2;
|
|
45
48
|
$aux-yellow: #ECD025;
|
|
49
|
+
$aux-yellow-1: #fff3a8;
|
|
50
|
+
$aux-yellow-2:#F2C94C;
|
|
46
51
|
$aux-green: #5CB85C;
|
|
47
52
|
$aux-white: #FFF;
|
|
48
53
|
$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>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{
|
|
2
2
|
value: {
|
|
3
|
-
type: (
|
|
3
|
+
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
|
4
4
|
};
|
|
5
5
|
disabled: {
|
|
6
6
|
type: BooleanConstructor;
|
|
@@ -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>;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { Story } from '@storybook/vue3';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: import("vue").DefineComponent<{
|
|
5
|
+
label: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
required: true;
|
|
8
|
+
};
|
|
9
|
+
suffix: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
13
|
+
vertical: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
default: boolean;
|
|
16
|
+
};
|
|
17
|
+
dataTestid: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
required: false;
|
|
20
|
+
};
|
|
21
|
+
size: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
required: false;
|
|
24
|
+
default: string;
|
|
25
|
+
validator: (value: string) => boolean;
|
|
26
|
+
};
|
|
27
|
+
}, {
|
|
28
|
+
classes: import("vue").ComputedRef<{
|
|
29
|
+
[x: string]: boolean;
|
|
30
|
+
'aux-definition': boolean;
|
|
31
|
+
'aux-definition--vertical': boolean;
|
|
32
|
+
}>;
|
|
33
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
34
|
+
label: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
required: true;
|
|
37
|
+
};
|
|
38
|
+
suffix: {
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
vertical: {
|
|
43
|
+
type: BooleanConstructor;
|
|
44
|
+
default: boolean;
|
|
45
|
+
};
|
|
46
|
+
dataTestid: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
required: false;
|
|
49
|
+
};
|
|
50
|
+
size: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
required: false;
|
|
53
|
+
default: string;
|
|
54
|
+
validator: (value: string) => boolean;
|
|
55
|
+
};
|
|
56
|
+
}>>, {
|
|
57
|
+
size: string;
|
|
58
|
+
suffix: string;
|
|
59
|
+
vertical: boolean;
|
|
60
|
+
}>;
|
|
61
|
+
argTypes: {
|
|
62
|
+
size: {
|
|
63
|
+
control: {
|
|
64
|
+
type: string;
|
|
65
|
+
options: string[];
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
export default _default;
|
|
71
|
+
export declare const Definition: Story<import("@storybook/vue3").Args>;
|
|
@@ -27,22 +27,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
27
27
|
'aux-definition': boolean;
|
|
28
28
|
'aux-definition--vertical': boolean;
|
|
29
29
|
}>;
|
|
30
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
31
|
-
label
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
30
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
+
label: {
|
|
32
|
+
type: StringConstructor;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
suffix: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
vertical: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
dataTestid: {
|
|
44
|
+
type: StringConstructor;
|
|
45
|
+
required: false;
|
|
46
|
+
};
|
|
47
|
+
size: {
|
|
48
|
+
type: StringConstructor;
|
|
49
|
+
required: false;
|
|
50
|
+
default: string;
|
|
51
|
+
validator: (value: string) => boolean;
|
|
52
|
+
};
|
|
53
|
+
}>>, {
|
|
46
54
|
size: string;
|
|
47
55
|
suffix: string;
|
|
48
56
|
vertical: boolean;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Story } from '@storybook/vue3';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: import("vue").DefineComponent<{
|
|
5
|
+
direction: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
require: boolean;
|
|
8
|
+
default: string;
|
|
9
|
+
validator: (value: string) => boolean;
|
|
10
|
+
};
|
|
11
|
+
}, {
|
|
12
|
+
classes: import("vue").ComputedRef<{
|
|
13
|
+
[x: string]: boolean;
|
|
14
|
+
'aux-arrow': boolean;
|
|
15
|
+
}>;
|
|
16
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
direction: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
require: boolean;
|
|
20
|
+
default: string;
|
|
21
|
+
validator: (value: string) => boolean;
|
|
22
|
+
};
|
|
23
|
+
}>>, {
|
|
24
|
+
direction: string;
|
|
25
|
+
}>;
|
|
26
|
+
};
|
|
27
|
+
export default _default;
|
|
28
|
+
export declare const Default: Story<import("@storybook/vue3").Args>;
|
|
@@ -10,13 +10,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10
10
|
[x: string]: boolean;
|
|
11
11
|
'aux-arrow': boolean;
|
|
12
12
|
}>;
|
|
13
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
14
|
-
direction
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
13
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14
|
+
direction: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
require: boolean;
|
|
17
|
+
default: string;
|
|
18
|
+
validator: (value: string) => boolean;
|
|
19
|
+
};
|
|
20
|
+
}>>, {
|
|
20
21
|
direction: string;
|
|
21
22
|
}>;
|
|
22
23
|
export default _default;
|
|
@@ -17,20 +17,26 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
17
17
|
type: StringConstructor;
|
|
18
18
|
required: true;
|
|
19
19
|
};
|
|
20
|
-
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
21
|
-
label
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
20
|
+
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
|
+
label: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
required: true;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
description: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
required: false;
|
|
29
|
+
};
|
|
30
|
+
hideLabel: {
|
|
31
|
+
type: BooleanConstructor;
|
|
32
|
+
required: false;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
id: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
39
|
+
}>>, {
|
|
34
40
|
label: string;
|
|
35
41
|
hideLabel: boolean;
|
|
36
42
|
}>;
|
|
@@ -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 Icons: Story;
|