@ambita/design-system 3.0.27-81.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 +61844 -24602
- package/dist/aux.common.js.map +1 -1
- package/dist/aux.umd.js +61844 -24602
- 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 +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 +24 -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/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 +4 -0
- package/package.json +3 -2
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { Layout } from '@jsonforms/core';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
schema: {
|
|
4
|
+
required: true;
|
|
5
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonSchema>;
|
|
6
|
+
};
|
|
7
|
+
uischema: {
|
|
8
|
+
required: true;
|
|
9
|
+
type: import("vue").PropType<Layout>;
|
|
10
|
+
};
|
|
11
|
+
path: {
|
|
12
|
+
required: true;
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
};
|
|
15
|
+
enabled: {
|
|
16
|
+
required: false;
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
default: undefined;
|
|
19
|
+
};
|
|
20
|
+
renderers: {
|
|
21
|
+
required: boolean;
|
|
22
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonFormsRendererRegistryEntry[]>;
|
|
23
|
+
default: undefined;
|
|
24
|
+
};
|
|
25
|
+
cells: {
|
|
26
|
+
required: boolean;
|
|
27
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonFormsCellRendererRegistryEntry[]>;
|
|
28
|
+
default: undefined;
|
|
29
|
+
};
|
|
30
|
+
config: {
|
|
31
|
+
required: boolean;
|
|
32
|
+
type: ObjectConstructor;
|
|
33
|
+
default: undefined;
|
|
34
|
+
};
|
|
35
|
+
}, {
|
|
36
|
+
layout: {
|
|
37
|
+
direction: "row" | "column";
|
|
38
|
+
label: string;
|
|
39
|
+
config: any;
|
|
40
|
+
uischema: import("@jsonforms/core").UISchemaElement;
|
|
41
|
+
schema: import("@jsonforms/core").JsonSchema;
|
|
42
|
+
data: any;
|
|
43
|
+
enabled: boolean;
|
|
44
|
+
visible: boolean;
|
|
45
|
+
path: string;
|
|
46
|
+
renderers: import("@jsonforms/core").JsonFormsRendererRegistryEntry[];
|
|
47
|
+
cells: import("@jsonforms/core").JsonFormsCellRendererRegistryEntry[];
|
|
48
|
+
};
|
|
49
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
50
|
+
schema: {
|
|
51
|
+
required: true;
|
|
52
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonSchema>;
|
|
53
|
+
};
|
|
54
|
+
uischema: {
|
|
55
|
+
required: true;
|
|
56
|
+
type: import("vue").PropType<Layout>;
|
|
57
|
+
};
|
|
58
|
+
path: {
|
|
59
|
+
required: true;
|
|
60
|
+
type: StringConstructor;
|
|
61
|
+
};
|
|
62
|
+
enabled: {
|
|
63
|
+
required: false;
|
|
64
|
+
type: BooleanConstructor;
|
|
65
|
+
default: undefined;
|
|
66
|
+
};
|
|
67
|
+
renderers: {
|
|
68
|
+
required: boolean;
|
|
69
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonFormsRendererRegistryEntry[]>;
|
|
70
|
+
default: undefined;
|
|
71
|
+
};
|
|
72
|
+
cells: {
|
|
73
|
+
required: boolean;
|
|
74
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonFormsCellRendererRegistryEntry[]>;
|
|
75
|
+
default: undefined;
|
|
76
|
+
};
|
|
77
|
+
config: {
|
|
78
|
+
required: boolean;
|
|
79
|
+
type: ObjectConstructor;
|
|
80
|
+
default: undefined;
|
|
81
|
+
};
|
|
82
|
+
}>>, {
|
|
83
|
+
config: Record<string, any>;
|
|
84
|
+
enabled: boolean;
|
|
85
|
+
renderers: import("@jsonforms/core").JsonFormsRendererRegistryEntry[];
|
|
86
|
+
cells: import("@jsonforms/core").JsonFormsCellRendererRegistryEntry[];
|
|
87
|
+
}>;
|
|
88
|
+
export default _default;
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { ControlElement } from '@jsonforms/core';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
schema: {
|
|
4
|
+
required: true;
|
|
5
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonSchema>;
|
|
6
|
+
};
|
|
7
|
+
uischema: {
|
|
8
|
+
required: true;
|
|
9
|
+
type: import("vue").PropType<ControlElement>;
|
|
10
|
+
};
|
|
11
|
+
path: {
|
|
12
|
+
required: true;
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
};
|
|
15
|
+
enabled: {
|
|
16
|
+
required: false;
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
default: undefined;
|
|
19
|
+
};
|
|
20
|
+
renderers: {
|
|
21
|
+
required: boolean;
|
|
22
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonFormsRendererRegistryEntry[]>;
|
|
23
|
+
default: undefined;
|
|
24
|
+
};
|
|
25
|
+
cells: {
|
|
26
|
+
required: boolean;
|
|
27
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonFormsCellRendererRegistryEntry[]>;
|
|
28
|
+
default: undefined;
|
|
29
|
+
};
|
|
30
|
+
config: {
|
|
31
|
+
required: boolean;
|
|
32
|
+
type: ObjectConstructor;
|
|
33
|
+
default: undefined;
|
|
34
|
+
};
|
|
35
|
+
}, {
|
|
36
|
+
control: {
|
|
37
|
+
cells: {
|
|
38
|
+
tester: import("@jsonforms/core").RankedTester;
|
|
39
|
+
cell: any;
|
|
40
|
+
}[];
|
|
41
|
+
label: string;
|
|
42
|
+
description: string;
|
|
43
|
+
required: boolean;
|
|
44
|
+
uischema: ControlElement;
|
|
45
|
+
errors: string;
|
|
46
|
+
data: any;
|
|
47
|
+
rootSchema: import("@jsonforms/core").JsonSchema;
|
|
48
|
+
id: string;
|
|
49
|
+
config: any;
|
|
50
|
+
schema: import("@jsonforms/core").JsonSchema;
|
|
51
|
+
enabled: boolean;
|
|
52
|
+
visible: boolean;
|
|
53
|
+
path: string;
|
|
54
|
+
renderers: import("@jsonforms/core").JsonFormsRendererRegistryEntry[];
|
|
55
|
+
};
|
|
56
|
+
handleChange(path: string, value: any): void;
|
|
57
|
+
isDirty: boolean;
|
|
58
|
+
}, unknown, {}, {
|
|
59
|
+
updateValue(value: string): void;
|
|
60
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
61
|
+
schema: {
|
|
62
|
+
required: true;
|
|
63
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonSchema>;
|
|
64
|
+
};
|
|
65
|
+
uischema: {
|
|
66
|
+
required: true;
|
|
67
|
+
type: import("vue").PropType<ControlElement>;
|
|
68
|
+
};
|
|
69
|
+
path: {
|
|
70
|
+
required: true;
|
|
71
|
+
type: StringConstructor;
|
|
72
|
+
};
|
|
73
|
+
enabled: {
|
|
74
|
+
required: false;
|
|
75
|
+
type: BooleanConstructor;
|
|
76
|
+
default: undefined;
|
|
77
|
+
};
|
|
78
|
+
renderers: {
|
|
79
|
+
required: boolean;
|
|
80
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonFormsRendererRegistryEntry[]>;
|
|
81
|
+
default: undefined;
|
|
82
|
+
};
|
|
83
|
+
cells: {
|
|
84
|
+
required: boolean;
|
|
85
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonFormsCellRendererRegistryEntry[]>;
|
|
86
|
+
default: undefined;
|
|
87
|
+
};
|
|
88
|
+
config: {
|
|
89
|
+
required: boolean;
|
|
90
|
+
type: ObjectConstructor;
|
|
91
|
+
default: undefined;
|
|
92
|
+
};
|
|
93
|
+
}>>, {
|
|
94
|
+
config: Record<string, any>;
|
|
95
|
+
enabled: boolean;
|
|
96
|
+
renderers: import("@jsonforms/core").JsonFormsRendererRegistryEntry[];
|
|
97
|
+
cells: import("@jsonforms/core").JsonFormsCellRendererRegistryEntry[];
|
|
98
|
+
}>;
|
|
99
|
+
export default _default;
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { ControlWithDetailProps, ControlElement } from '@jsonforms/core';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
schema: {
|
|
4
|
+
required: true;
|
|
5
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonSchema>;
|
|
6
|
+
};
|
|
7
|
+
uischema: {
|
|
8
|
+
required: true;
|
|
9
|
+
type: import("vue").PropType<ControlElement>;
|
|
10
|
+
};
|
|
11
|
+
path: {
|
|
12
|
+
required: true;
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
};
|
|
15
|
+
enabled: {
|
|
16
|
+
required: false;
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
default: undefined;
|
|
19
|
+
};
|
|
20
|
+
renderers: {
|
|
21
|
+
required: boolean;
|
|
22
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonFormsRendererRegistryEntry[]>;
|
|
23
|
+
default: undefined;
|
|
24
|
+
};
|
|
25
|
+
cells: {
|
|
26
|
+
required: boolean;
|
|
27
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonFormsCellRendererRegistryEntry[]>;
|
|
28
|
+
default: undefined;
|
|
29
|
+
};
|
|
30
|
+
config: {
|
|
31
|
+
required: boolean;
|
|
32
|
+
type: ObjectConstructor;
|
|
33
|
+
default: undefined;
|
|
34
|
+
};
|
|
35
|
+
}, {
|
|
36
|
+
control: {
|
|
37
|
+
cells: {
|
|
38
|
+
tester: import("@jsonforms/core").RankedTester;
|
|
39
|
+
cell: any;
|
|
40
|
+
}[];
|
|
41
|
+
label: string;
|
|
42
|
+
description: string;
|
|
43
|
+
required: boolean;
|
|
44
|
+
uischema: ControlElement;
|
|
45
|
+
errors: string;
|
|
46
|
+
data: any;
|
|
47
|
+
rootSchema: import("@jsonforms/core").JsonSchema;
|
|
48
|
+
id: string;
|
|
49
|
+
config: any;
|
|
50
|
+
schema: import("@jsonforms/core").JsonSchema;
|
|
51
|
+
enabled: boolean;
|
|
52
|
+
visible: boolean;
|
|
53
|
+
path: string;
|
|
54
|
+
renderers: import("@jsonforms/core").JsonFormsRendererRegistryEntry[];
|
|
55
|
+
};
|
|
56
|
+
} & import("@jsonforms/core").DispatchPropsOfControl, unknown, {}, {
|
|
57
|
+
generateUISchema(control: ControlWithDetailProps): import("@jsonforms/core").UISchemaElement;
|
|
58
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
59
|
+
schema: {
|
|
60
|
+
required: true;
|
|
61
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonSchema>;
|
|
62
|
+
};
|
|
63
|
+
uischema: {
|
|
64
|
+
required: true;
|
|
65
|
+
type: import("vue").PropType<ControlElement>;
|
|
66
|
+
};
|
|
67
|
+
path: {
|
|
68
|
+
required: true;
|
|
69
|
+
type: StringConstructor;
|
|
70
|
+
};
|
|
71
|
+
enabled: {
|
|
72
|
+
required: false;
|
|
73
|
+
type: BooleanConstructor;
|
|
74
|
+
default: undefined;
|
|
75
|
+
};
|
|
76
|
+
renderers: {
|
|
77
|
+
required: boolean;
|
|
78
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonFormsRendererRegistryEntry[]>;
|
|
79
|
+
default: undefined;
|
|
80
|
+
};
|
|
81
|
+
cells: {
|
|
82
|
+
required: boolean;
|
|
83
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonFormsCellRendererRegistryEntry[]>;
|
|
84
|
+
default: undefined;
|
|
85
|
+
};
|
|
86
|
+
config: {
|
|
87
|
+
required: boolean;
|
|
88
|
+
type: ObjectConstructor;
|
|
89
|
+
default: undefined;
|
|
90
|
+
};
|
|
91
|
+
}>>, {
|
|
92
|
+
config: Record<string, any>;
|
|
93
|
+
enabled: boolean;
|
|
94
|
+
renderers: import("@jsonforms/core").JsonFormsRendererRegistryEntry[];
|
|
95
|
+
cells: import("@jsonforms/core").JsonFormsCellRendererRegistryEntry[];
|
|
96
|
+
}>;
|
|
97
|
+
export default _default;
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { ControlElement } from '@jsonforms/core';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
schema: {
|
|
4
|
+
required: true;
|
|
5
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonSchema>;
|
|
6
|
+
};
|
|
7
|
+
uischema: {
|
|
8
|
+
required: true;
|
|
9
|
+
type: import("vue").PropType<ControlElement>;
|
|
10
|
+
};
|
|
11
|
+
path: {
|
|
12
|
+
required: true;
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
};
|
|
15
|
+
enabled: {
|
|
16
|
+
required: false;
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
default: undefined;
|
|
19
|
+
};
|
|
20
|
+
renderers: {
|
|
21
|
+
required: boolean;
|
|
22
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonFormsRendererRegistryEntry[]>;
|
|
23
|
+
default: undefined;
|
|
24
|
+
};
|
|
25
|
+
cells: {
|
|
26
|
+
required: boolean;
|
|
27
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonFormsCellRendererRegistryEntry[]>;
|
|
28
|
+
default: undefined;
|
|
29
|
+
};
|
|
30
|
+
config: {
|
|
31
|
+
required: boolean;
|
|
32
|
+
type: ObjectConstructor;
|
|
33
|
+
default: undefined;
|
|
34
|
+
};
|
|
35
|
+
}, {
|
|
36
|
+
control: {
|
|
37
|
+
cells: {
|
|
38
|
+
tester: import("@jsonforms/core").RankedTester;
|
|
39
|
+
cell: any;
|
|
40
|
+
}[];
|
|
41
|
+
label: string;
|
|
42
|
+
description: string;
|
|
43
|
+
required: boolean;
|
|
44
|
+
uischema: ControlElement;
|
|
45
|
+
errors: string;
|
|
46
|
+
data: any;
|
|
47
|
+
rootSchema: import("@jsonforms/core").JsonSchema;
|
|
48
|
+
id: string;
|
|
49
|
+
config: any;
|
|
50
|
+
schema: import("@jsonforms/core").JsonSchema;
|
|
51
|
+
enabled: boolean;
|
|
52
|
+
visible: boolean;
|
|
53
|
+
path: string;
|
|
54
|
+
renderers: import("@jsonforms/core").JsonFormsRendererRegistryEntry[];
|
|
55
|
+
};
|
|
56
|
+
handleChange(path: string, value: any): void;
|
|
57
|
+
isDirty: boolean;
|
|
58
|
+
}, unknown, {}, {
|
|
59
|
+
updateValue(value: string): void;
|
|
60
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
61
|
+
schema: {
|
|
62
|
+
required: true;
|
|
63
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonSchema>;
|
|
64
|
+
};
|
|
65
|
+
uischema: {
|
|
66
|
+
required: true;
|
|
67
|
+
type: import("vue").PropType<ControlElement>;
|
|
68
|
+
};
|
|
69
|
+
path: {
|
|
70
|
+
required: true;
|
|
71
|
+
type: StringConstructor;
|
|
72
|
+
};
|
|
73
|
+
enabled: {
|
|
74
|
+
required: false;
|
|
75
|
+
type: BooleanConstructor;
|
|
76
|
+
default: undefined;
|
|
77
|
+
};
|
|
78
|
+
renderers: {
|
|
79
|
+
required: boolean;
|
|
80
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonFormsRendererRegistryEntry[]>;
|
|
81
|
+
default: undefined;
|
|
82
|
+
};
|
|
83
|
+
cells: {
|
|
84
|
+
required: boolean;
|
|
85
|
+
type: import("vue").PropType<import("@jsonforms/core").JsonFormsCellRendererRegistryEntry[]>;
|
|
86
|
+
default: undefined;
|
|
87
|
+
};
|
|
88
|
+
config: {
|
|
89
|
+
required: boolean;
|
|
90
|
+
type: ObjectConstructor;
|
|
91
|
+
default: undefined;
|
|
92
|
+
};
|
|
93
|
+
}>>, {
|
|
94
|
+
config: Record<string, any>;
|
|
95
|
+
enabled: boolean;
|
|
96
|
+
renderers: import("@jsonforms/core").JsonFormsRendererRegistryEntry[];
|
|
97
|
+
cells: import("@jsonforms/core").JsonFormsCellRendererRegistryEntry[];
|
|
98
|
+
}>;
|
|
99
|
+
export default _default;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { JsonFormsRendererRegistryEntry } from '@jsonforms/core';
|
|
2
|
+
export declare const stringRendererEntry: JsonFormsRendererRegistryEntry;
|
|
3
|
+
export declare const numberRendererEntry: JsonFormsRendererRegistryEntry;
|
|
4
|
+
export declare const integerRendererEntry: JsonFormsRendererRegistryEntry;
|
|
5
|
+
export declare const booleanRendererEntry: JsonFormsRendererRegistryEntry;
|
|
6
|
+
export declare const arrayRendererEntry: JsonFormsRendererRegistryEntry;
|
|
7
|
+
export declare const layoutRendererEntry: JsonFormsRendererRegistryEntry;
|
|
8
|
+
export declare const objectRendererEntry: JsonFormsRendererRegistryEntry;
|
|
9
|
+
export declare const renderers: JsonFormsRendererRegistryEntry[];
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Story } from '@storybook/vue3';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: import("vue").DefineComponent<{
|
|
5
|
+
size: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
default: string;
|
|
8
|
+
validator: (value: string) => boolean;
|
|
9
|
+
};
|
|
10
|
+
href: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
required: false;
|
|
13
|
+
};
|
|
14
|
+
}, {
|
|
15
|
+
componentType: import("vue").ComputedRef<"a" | "button">;
|
|
16
|
+
classes: import("vue").ComputedRef<{
|
|
17
|
+
[x: string]: boolean | import("vue").Slot | undefined;
|
|
18
|
+
'aux-link': boolean;
|
|
19
|
+
'aux-link-icon-left': import("vue").Slot | undefined;
|
|
20
|
+
'aux-link-icon-right': import("vue").Slot | undefined;
|
|
21
|
+
}>;
|
|
22
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
|
+
size: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
validator: (value: string) => boolean;
|
|
27
|
+
};
|
|
28
|
+
href: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
required: false;
|
|
31
|
+
};
|
|
32
|
+
}>> & {
|
|
33
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
34
|
+
}, {
|
|
35
|
+
size: string;
|
|
36
|
+
}>;
|
|
37
|
+
argTypes: {
|
|
38
|
+
size: {
|
|
39
|
+
control: {
|
|
40
|
+
type: string;
|
|
41
|
+
options: string[];
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
onClick: {
|
|
45
|
+
action: string;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
export default _default;
|
|
50
|
+
export declare const Link: Story<import("@storybook/vue3").Args>;
|
|
@@ -16,14 +16,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
16
16
|
'aux-link-icon-left': import("vue").Slot | undefined;
|
|
17
17
|
'aux-link-icon-right': import("vue").Slot | undefined;
|
|
18
18
|
}>;
|
|
19
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
20
|
-
size
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}
|
|
25
|
-
href
|
|
26
|
-
|
|
19
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
+
size: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
validator: (value: string) => boolean;
|
|
24
|
+
};
|
|
25
|
+
href: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
required: false;
|
|
28
|
+
};
|
|
29
|
+
}>> & {
|
|
27
30
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
28
31
|
}, {
|
|
29
32
|
size: string;
|
|
@@ -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 Logo: Story<import("@storybook/vue3").Args>;
|
|
@@ -8,11 +8,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8
8
|
}, {
|
|
9
9
|
actionsOrganized: import("vue").ComputedRef<Action[]>;
|
|
10
10
|
emit: (event: "action-clicked", ...args: any[]) => void;
|
|
11
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "action-clicked"[], "action-clicked", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
12
|
-
actions
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}
|
|
11
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "action-clicked"[], "action-clicked", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
12
|
+
actions: {
|
|
13
|
+
type: PropType<Action[]>;
|
|
14
|
+
default: () => never[];
|
|
15
|
+
};
|
|
16
|
+
}>> & {
|
|
16
17
|
"onAction-clicked"?: ((...args: any[]) => any) | undefined;
|
|
17
18
|
}, {
|
|
18
19
|
actions: Action[];
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { Story } from '@storybook/vue3';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
args: {
|
|
5
|
+
title: string;
|
|
6
|
+
actions: ({
|
|
7
|
+
label: string;
|
|
8
|
+
emit: string;
|
|
9
|
+
primary: boolean;
|
|
10
|
+
testid: string;
|
|
11
|
+
destructive?: undefined;
|
|
12
|
+
icon?: undefined;
|
|
13
|
+
} | {
|
|
14
|
+
label: string;
|
|
15
|
+
emit: string;
|
|
16
|
+
primary?: undefined;
|
|
17
|
+
testid?: undefined;
|
|
18
|
+
destructive?: undefined;
|
|
19
|
+
icon?: undefined;
|
|
20
|
+
} | {
|
|
21
|
+
label: string;
|
|
22
|
+
emit: string;
|
|
23
|
+
destructive: boolean;
|
|
24
|
+
icon: 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<{}>>, {}>;
|
|
25
|
+
testid: string;
|
|
26
|
+
primary?: undefined;
|
|
27
|
+
})[];
|
|
28
|
+
open: boolean;
|
|
29
|
+
};
|
|
30
|
+
argTypes: {
|
|
31
|
+
size: {
|
|
32
|
+
control: {
|
|
33
|
+
type: string;
|
|
34
|
+
options: string[];
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
title: StringConstructor;
|
|
38
|
+
open: BooleanConstructor;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
export default _default;
|
|
42
|
+
export declare const Modal: Story<import("@storybook/vue3").Args>;
|
|
@@ -32,24 +32,32 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
32
32
|
emit: (event: string, ...args: any[]) => void;
|
|
33
33
|
closeButton: import("vue").Ref<HTMLInputElement | null>;
|
|
34
34
|
getTestId: (testid: string) => string | undefined;
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
35
|
+
modal: import("vue").Ref<HTMLDialogElement | null>;
|
|
36
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
37
|
+
actions: {
|
|
38
|
+
type: PropType<Action[]>;
|
|
39
|
+
default: () => never[];
|
|
40
|
+
};
|
|
41
|
+
id: {
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
default: (<T extends ArrayLike<number>>(options: import("uuid").V4Options | null | undefined, buffer: T, offset?: number | undefined) => T) & ((options?: import("uuid").V4Options | undefined) => string);
|
|
44
|
+
};
|
|
45
|
+
size: {
|
|
46
|
+
type: StringConstructor;
|
|
47
|
+
default: string;
|
|
48
|
+
validator: (value: string) => boolean;
|
|
49
|
+
};
|
|
50
|
+
title: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
validator: (value: string) => boolean;
|
|
53
|
+
};
|
|
54
|
+
dataTestid: {
|
|
55
|
+
type: StringConstructor;
|
|
56
|
+
required: false;
|
|
57
|
+
};
|
|
58
|
+
}>>, {
|
|
43
59
|
id: string;
|
|
44
|
-
actions: Action[];
|
|
45
|
-
} & {
|
|
46
|
-
dataTestid?: string | undefined;
|
|
47
|
-
title?: string | undefined;
|
|
48
|
-
}> & {
|
|
49
|
-
[x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
50
|
-
}, {
|
|
51
60
|
size: string;
|
|
52
|
-
id: string;
|
|
53
61
|
actions: Action[];
|
|
54
62
|
}>;
|
|
55
63
|
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Story } from '@storybook/vue3';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
};
|
|
5
|
+
export default _default;
|
|
6
|
+
export declare const Notification: Story<import("@storybook/vue3").Args>;
|
|
7
|
+
export declare const Notifications: Story<import("@storybook/vue3").Args>;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
type: {
|
|
4
|
+
type: PropType<"info" | "success" | "warning" | "error">;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
id: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
}, {
|
|
12
|
+
classes: import("vue").ComputedRef<{
|
|
13
|
+
[x: string]: boolean | "info" | "success" | "warning" | "error";
|
|
14
|
+
'aux-notification': boolean;
|
|
15
|
+
'aux-notification-show': boolean;
|
|
16
|
+
}>;
|
|
17
|
+
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
|
+
removeNotification: () => void;
|
|
19
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "remove-notification"[], "remove-notification", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
+
type: {
|
|
21
|
+
type: PropType<"info" | "success" | "warning" | "error">;
|
|
22
|
+
required: true;
|
|
23
|
+
};
|
|
24
|
+
id: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
required: true;
|
|
27
|
+
};
|
|
28
|
+
}>> & {
|
|
29
|
+
"onRemove-notification"?: ((...args: any[]) => any) | undefined;
|
|
30
|
+
}, {}>;
|
|
31
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { NotificationType } from './Notification.d';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
notifications: {
|
|
5
|
+
type: PropType<NotificationType[]>;
|
|
6
|
+
default: () => never[];
|
|
7
|
+
};
|
|
8
|
+
}, {
|
|
9
|
+
removeNotification: (event: string) => void;
|
|
10
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "remove-notification"[], "remove-notification", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
+
notifications: {
|
|
12
|
+
type: PropType<NotificationType[]>;
|
|
13
|
+
default: () => never[];
|
|
14
|
+
};
|
|
15
|
+
}>> & {
|
|
16
|
+
"onRemove-notification"?: ((...args: any[]) => any) | undefined;
|
|
17
|
+
}, {
|
|
18
|
+
notifications: NotificationType[];
|
|
19
|
+
}>;
|
|
20
|
+
export default _default;
|