@adyen/bento-vue2 0.7.0 → 0.8.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/@types/components/date-picker/date-picker.vue.d.ts +1 -0
- package/dist/@types/components/divider/divider.vue.d.ts +6 -0
- package/dist/@types/components/divider/index.d.ts +1 -0
- package/dist/@types/components/filter-bar/components/base-filter/base-filter.vue.d.ts +9 -0
- package/dist/@types/components/filter-bar/components/base-filter/components/filter-button/filter-button.vue.d.ts +23 -1
- package/dist/@types/components/filter-bar/components/select-filter/variants/select-country-filter/select-country-filter.vue.d.ts +1 -0
- package/dist/@types/components/filter-bar/components/select-filter/variants/select-tag-filter/select-tag-filter.vue.d.ts +1 -0
- package/dist/@types/components/filter-bar/filter-bar.types.d.ts +1 -0
- package/dist/@types/components/header/header.vue.d.ts +3 -3
- package/dist/@types/components/internal/copy/copy.vue.d.ts +19 -0
- package/dist/@types/components/internal/copy/index.d.ts +1 -0
- package/dist/@types/components/internal/index.d.ts +1 -0
- package/dist/@types/components/link/link.vue.d.ts +2 -2
- package/dist/@types/components/menu/components/menu-item-list/menu-item-list.vue.d.ts +4 -1
- package/dist/@types/components/menu/components/sub-menu-item-list/sub-menu-item-list.vue.d.ts +16 -2
- package/dist/@types/components/modal/components/base-modal/base-modal.vue.d.ts +89 -0
- package/dist/@types/components/modal/components/index.d.ts +3 -0
- package/dist/@types/components/modal/components/modal-default/modal-default.vue.d.ts +110 -0
- package/dist/@types/components/modal/components/modal-dialog/modal-dialog.vue.d.ts +81 -0
- package/dist/@types/components/modal/index.d.ts +2 -0
- package/dist/@types/components/modal/modal.types.d.ts +22 -0
- package/dist/@types/components/modal/modal.vue.d.ts +129 -0
- package/dist/@types/components/popover/popover.vue.d.ts +9 -0
- package/dist/@types/components/radio-group/components/radio-button/radio-button.vue.d.ts +1 -0
- package/dist/@types/components/structured-list/components/structered-list-item/structured-list-item.vue.d.ts +46 -0
- package/dist/@types/components/structured-list/index.d.ts +2 -0
- package/dist/@types/components/structured-list/structured-list.vue.d.ts +2 -0
- package/dist/@types/components/summary-grid/components/grid-layout/grid-layout.types.d.ts +6 -0
- package/dist/@types/components/summary-grid/components/grid-layout/grid-layout.vue.d.ts +21 -0
- package/dist/@types/components/summary-grid/components/summary-grid-item/index.d.ts +2 -0
- package/dist/@types/components/summary-grid/components/summary-grid-item/summary-grid-item.types.d.ts +7 -0
- package/dist/@types/components/summary-grid/components/summary-grid-item/summary-grid-item.vue.d.ts +102 -0
- package/dist/@types/components/summary-grid/components/summary-grid-item-amount/summary-grid-item-amount.vue.d.ts +89 -0
- package/dist/@types/components/summary-grid/components/summary-grid-item-custom/summary-grid-item-custom.vue.d.ts +40 -0
- package/dist/@types/components/summary-grid/components/summary-grid-item-numeric/summary-grid-item-numeric.vue.d.ts +80 -0
- package/dist/@types/components/summary-grid/components/summary-grid-item-percentage/summary-grid-item-percentage.vue.d.ts +80 -0
- package/dist/@types/components/summary-grid/components/summary-grid-item-text/summary-grid-item-text.vue.d.ts +51 -0
- package/dist/@types/components/summary-grid/index.d.ts +7 -0
- package/dist/@types/components/summary-grid/summary-grid.types.d.ts +16 -0
- package/dist/@types/components/summary-grid/summary-grid.vue.d.ts +19 -0
- package/dist/@types/components/toggle/toggle.vue.d.ts +1 -0
- package/dist/@types/components.d.ts +18 -0
- package/dist/@types/directives/index.d.ts +1 -0
- package/dist/@types/directives/keyboard-navigation/index.d.ts +2 -0
- package/dist/@types/directives/keyboard-navigation/keyboard-navigation.d.ts +2 -0
- package/dist/@types/directives/keyboard-navigation/keyboard-navigation.types.d.ts +7 -0
- package/dist/@types/index.d.ts +4 -0
- package/dist/index.js +5105 -3635
- package/dist/index.js.map +1 -1
- package/dist/web-types.json +1403 -383
- package/package.json +3 -3
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { BentoModalDialogType, BentoModalEvent, BentoModalSize, BentoModalVariant } from '@/components/modal/modal.types';
|
|
3
|
+
import { BentoButtonActionsList } from '@/components/button';
|
|
4
|
+
declare const _default: import("vue").DefineComponent<{
|
|
5
|
+
variant: {
|
|
6
|
+
type: PropType<BentoModalVariant>;
|
|
7
|
+
default: BentoModalVariant;
|
|
8
|
+
};
|
|
9
|
+
isDismissible: {
|
|
10
|
+
type: BooleanConstructor;
|
|
11
|
+
default: any;
|
|
12
|
+
};
|
|
13
|
+
isOpen: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
default: boolean;
|
|
16
|
+
};
|
|
17
|
+
actions: {
|
|
18
|
+
type: PropType<BentoButtonActionsList>;
|
|
19
|
+
default: any;
|
|
20
|
+
};
|
|
21
|
+
hideCloseButton: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
size: {
|
|
26
|
+
type: PropType<BentoModalSize>;
|
|
27
|
+
default: BentoModalSize;
|
|
28
|
+
};
|
|
29
|
+
customPadding: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
default: any;
|
|
32
|
+
};
|
|
33
|
+
actionsLabel: {
|
|
34
|
+
type: StringConstructor;
|
|
35
|
+
default: any;
|
|
36
|
+
};
|
|
37
|
+
destructiveActions: {
|
|
38
|
+
type: BooleanConstructor;
|
|
39
|
+
default: boolean;
|
|
40
|
+
};
|
|
41
|
+
dialogType: {
|
|
42
|
+
type: PropType<BentoModalDialogType>;
|
|
43
|
+
default: BentoModalDialogType;
|
|
44
|
+
};
|
|
45
|
+
content: {
|
|
46
|
+
type: StringConstructor;
|
|
47
|
+
default: any;
|
|
48
|
+
};
|
|
49
|
+
}, {
|
|
50
|
+
onCloseModal: () => void;
|
|
51
|
+
customProps: import("vue").ComputedRef<{
|
|
52
|
+
hideCloseButton: boolean;
|
|
53
|
+
size: BentoModalSize;
|
|
54
|
+
customPadding: string;
|
|
55
|
+
actionsLabel: string;
|
|
56
|
+
destructiveActions: boolean;
|
|
57
|
+
isDismissible: boolean;
|
|
58
|
+
dialogType?: undefined;
|
|
59
|
+
content?: undefined;
|
|
60
|
+
} | {
|
|
61
|
+
dialogType: BentoModalDialogType;
|
|
62
|
+
content: string;
|
|
63
|
+
isDismissible: boolean;
|
|
64
|
+
hideCloseButton?: undefined;
|
|
65
|
+
size?: undefined;
|
|
66
|
+
customPadding?: undefined;
|
|
67
|
+
actionsLabel?: undefined;
|
|
68
|
+
destructiveActions?: undefined;
|
|
69
|
+
}>;
|
|
70
|
+
hasSlot: (name: string) => boolean;
|
|
71
|
+
}, {}, {}, {}, import("vue/types/v3-component-options.js").ComponentOptionsMixin, import("vue/types/v3-component-options.js").ComponentOptionsMixin, BentoModalEvent[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
72
|
+
variant: {
|
|
73
|
+
type: PropType<BentoModalVariant>;
|
|
74
|
+
default: BentoModalVariant;
|
|
75
|
+
};
|
|
76
|
+
isDismissible: {
|
|
77
|
+
type: BooleanConstructor;
|
|
78
|
+
default: any;
|
|
79
|
+
};
|
|
80
|
+
isOpen: {
|
|
81
|
+
type: BooleanConstructor;
|
|
82
|
+
default: boolean;
|
|
83
|
+
};
|
|
84
|
+
actions: {
|
|
85
|
+
type: PropType<BentoButtonActionsList>;
|
|
86
|
+
default: any;
|
|
87
|
+
};
|
|
88
|
+
hideCloseButton: {
|
|
89
|
+
type: BooleanConstructor;
|
|
90
|
+
default: boolean;
|
|
91
|
+
};
|
|
92
|
+
size: {
|
|
93
|
+
type: PropType<BentoModalSize>;
|
|
94
|
+
default: BentoModalSize;
|
|
95
|
+
};
|
|
96
|
+
customPadding: {
|
|
97
|
+
type: StringConstructor;
|
|
98
|
+
default: any;
|
|
99
|
+
};
|
|
100
|
+
actionsLabel: {
|
|
101
|
+
type: StringConstructor;
|
|
102
|
+
default: any;
|
|
103
|
+
};
|
|
104
|
+
destructiveActions: {
|
|
105
|
+
type: BooleanConstructor;
|
|
106
|
+
default: boolean;
|
|
107
|
+
};
|
|
108
|
+
dialogType: {
|
|
109
|
+
type: PropType<BentoModalDialogType>;
|
|
110
|
+
default: BentoModalDialogType;
|
|
111
|
+
};
|
|
112
|
+
content: {
|
|
113
|
+
type: StringConstructor;
|
|
114
|
+
default: any;
|
|
115
|
+
};
|
|
116
|
+
}>>, {
|
|
117
|
+
content: string;
|
|
118
|
+
size: BentoModalSize;
|
|
119
|
+
variant: BentoModalVariant;
|
|
120
|
+
actions: BentoButtonActionsList;
|
|
121
|
+
isDismissible: boolean;
|
|
122
|
+
hideCloseButton: boolean;
|
|
123
|
+
customPadding: string;
|
|
124
|
+
isOpen: boolean;
|
|
125
|
+
actionsLabel: string;
|
|
126
|
+
destructiveActions: boolean;
|
|
127
|
+
dialogType: BentoModalDialogType;
|
|
128
|
+
}>;
|
|
129
|
+
export default _default;
|
|
@@ -32,6 +32,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
32
32
|
type: BooleanConstructor;
|
|
33
33
|
default: boolean;
|
|
34
34
|
};
|
|
35
|
+
open: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
35
39
|
large: {
|
|
36
40
|
type: BooleanConstructor;
|
|
37
41
|
default: boolean;
|
|
@@ -104,6 +108,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
104
108
|
type: BooleanConstructor;
|
|
105
109
|
default: boolean;
|
|
106
110
|
};
|
|
111
|
+
open: {
|
|
112
|
+
type: BooleanConstructor;
|
|
113
|
+
default: boolean;
|
|
114
|
+
};
|
|
107
115
|
large: {
|
|
108
116
|
type: BooleanConstructor;
|
|
109
117
|
default: boolean;
|
|
@@ -135,6 +143,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
135
143
|
};
|
|
136
144
|
}>>, {
|
|
137
145
|
small: boolean;
|
|
146
|
+
open: boolean;
|
|
138
147
|
position: import("@/components/popper-container").PopperContainerPosition;
|
|
139
148
|
title: string;
|
|
140
149
|
ariaLabel: string;
|
|
@@ -18,6 +18,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18
18
|
isChecked: ComputedRef<boolean>;
|
|
19
19
|
defaultSlotValue: string;
|
|
20
20
|
subLabelSlotValue: string;
|
|
21
|
+
descriptionSlotValue: string;
|
|
21
22
|
conditionalClass: ComputedRef<{
|
|
22
23
|
'b-radio-button--disabled': boolean;
|
|
23
24
|
}>;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { BentoTypographyElement } from '@/components/typography';
|
|
3
|
+
import { BentoButtonVariant } from '@/components/button';
|
|
4
|
+
declare const _default: import("vue").DefineComponent<{
|
|
5
|
+
label: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
required: true;
|
|
8
|
+
};
|
|
9
|
+
copy: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
default: any;
|
|
12
|
+
};
|
|
13
|
+
search: {
|
|
14
|
+
type: PropType<(event: Event) => void>;
|
|
15
|
+
default: any;
|
|
16
|
+
};
|
|
17
|
+
searchTooltip: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: any;
|
|
20
|
+
};
|
|
21
|
+
}, {
|
|
22
|
+
BentoButtonVariant: typeof BentoButtonVariant;
|
|
23
|
+
BentoTypographyElement: typeof BentoTypographyElement;
|
|
24
|
+
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
25
|
+
label: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
required: true;
|
|
28
|
+
};
|
|
29
|
+
copy: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
default: any;
|
|
32
|
+
};
|
|
33
|
+
search: {
|
|
34
|
+
type: PropType<(event: Event) => void>;
|
|
35
|
+
default: any;
|
|
36
|
+
};
|
|
37
|
+
searchTooltip: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
default: any;
|
|
40
|
+
};
|
|
41
|
+
}>>, {
|
|
42
|
+
search: (event: Event) => void;
|
|
43
|
+
copy: string;
|
|
44
|
+
searchTooltip: string;
|
|
45
|
+
}>;
|
|
46
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, unknown, {}, {}, {}, import("vue/types/v3-component-options.js").ComponentOptionsMixin, import("vue/types/v3-component-options.js").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { GridLayoutColumnWidths } from './grid-layout.types';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
columnWidth: {
|
|
5
|
+
type: PropType<GridLayoutColumnWidths>;
|
|
6
|
+
default: any;
|
|
7
|
+
validator: (array: GridLayoutColumnWidths) => boolean;
|
|
8
|
+
};
|
|
9
|
+
}, {
|
|
10
|
+
computeColumnSize: (index: any) => string[];
|
|
11
|
+
hasSlot: (name: string) => boolean;
|
|
12
|
+
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
+
columnWidth: {
|
|
14
|
+
type: PropType<GridLayoutColumnWidths>;
|
|
15
|
+
default: any;
|
|
16
|
+
validator: (array: GridLayoutColumnWidths) => boolean;
|
|
17
|
+
};
|
|
18
|
+
}>>, {
|
|
19
|
+
columnWidth: GridLayoutColumnWidths;
|
|
20
|
+
}>;
|
|
21
|
+
export default _default;
|
package/dist/@types/components/summary-grid/components/summary-grid-item/summary-grid-item.vue.d.ts
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { BentoTypographyElement, BentoTypographyVariant } from '@/components/typography';
|
|
3
|
+
import { BentoSummaryGridItemSize, BentoSummaryGridItemTrendDirection } from '@/components/summary-grid/summary-grid.types';
|
|
4
|
+
import { BentoTagVariant } from '@/components/tag';
|
|
5
|
+
import { SummaryGridItemType } from './summary-grid-item.types';
|
|
6
|
+
declare const _default: import("vue").DefineComponent<{
|
|
7
|
+
copy: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: any;
|
|
10
|
+
};
|
|
11
|
+
itemType: {
|
|
12
|
+
type: PropType<SummaryGridItemType>;
|
|
13
|
+
default: SummaryGridItemType;
|
|
14
|
+
};
|
|
15
|
+
infoIconTooltipText: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: any;
|
|
18
|
+
};
|
|
19
|
+
title: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
fitContent: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
size: {
|
|
28
|
+
type: PropType<BentoSummaryGridItemSize>;
|
|
29
|
+
default: BentoSummaryGridItemSize;
|
|
30
|
+
};
|
|
31
|
+
trendDirection: {
|
|
32
|
+
type: PropType<BentoSummaryGridItemTrendDirection>;
|
|
33
|
+
default: BentoSummaryGridItemTrendDirection;
|
|
34
|
+
};
|
|
35
|
+
trend: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: any;
|
|
38
|
+
};
|
|
39
|
+
}, {
|
|
40
|
+
trendVariant: import("vue").ComputedRef<BentoTagVariant.BLUE | BentoTagVariant.GREEN | BentoTagVariant.RED>;
|
|
41
|
+
isContentTypographyApplied: import("vue").ComputedRef<boolean>;
|
|
42
|
+
typographyProps: import("vue").ComputedRef<{
|
|
43
|
+
medium: boolean;
|
|
44
|
+
strongest: boolean;
|
|
45
|
+
wide: boolean;
|
|
46
|
+
variant: BentoTypographyVariant;
|
|
47
|
+
}>;
|
|
48
|
+
computedStyles: import("vue").ComputedRef<{
|
|
49
|
+
width: string;
|
|
50
|
+
} | {
|
|
51
|
+
width?: undefined;
|
|
52
|
+
}>;
|
|
53
|
+
summaryBarItemTrendConditionalClasses: import("vue").ComputedRef<{
|
|
54
|
+
[x: string]: string;
|
|
55
|
+
}>;
|
|
56
|
+
BentoTypographyElement: typeof BentoTypographyElement;
|
|
57
|
+
BentoTypographyVariant: typeof BentoTypographyVariant;
|
|
58
|
+
SummaryGridItemType: typeof SummaryGridItemType;
|
|
59
|
+
BentoSummaryGridItemSize: typeof BentoSummaryGridItemSize;
|
|
60
|
+
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
61
|
+
copy: {
|
|
62
|
+
type: StringConstructor;
|
|
63
|
+
default: any;
|
|
64
|
+
};
|
|
65
|
+
itemType: {
|
|
66
|
+
type: PropType<SummaryGridItemType>;
|
|
67
|
+
default: SummaryGridItemType;
|
|
68
|
+
};
|
|
69
|
+
infoIconTooltipText: {
|
|
70
|
+
type: StringConstructor;
|
|
71
|
+
default: any;
|
|
72
|
+
};
|
|
73
|
+
title: {
|
|
74
|
+
type: StringConstructor;
|
|
75
|
+
required: true;
|
|
76
|
+
};
|
|
77
|
+
fitContent: {
|
|
78
|
+
type: BooleanConstructor;
|
|
79
|
+
default: boolean;
|
|
80
|
+
};
|
|
81
|
+
size: {
|
|
82
|
+
type: PropType<BentoSummaryGridItemSize>;
|
|
83
|
+
default: BentoSummaryGridItemSize;
|
|
84
|
+
};
|
|
85
|
+
trendDirection: {
|
|
86
|
+
type: PropType<BentoSummaryGridItemTrendDirection>;
|
|
87
|
+
default: BentoSummaryGridItemTrendDirection;
|
|
88
|
+
};
|
|
89
|
+
trend: {
|
|
90
|
+
type: StringConstructor;
|
|
91
|
+
default: any;
|
|
92
|
+
};
|
|
93
|
+
}>>, {
|
|
94
|
+
copy: string;
|
|
95
|
+
size: BentoSummaryGridItemSize;
|
|
96
|
+
infoIconTooltipText: string;
|
|
97
|
+
itemType: SummaryGridItemType;
|
|
98
|
+
fitContent: boolean;
|
|
99
|
+
trendDirection: BentoSummaryGridItemTrendDirection;
|
|
100
|
+
trend: string;
|
|
101
|
+
}>;
|
|
102
|
+
export default _default;
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { BentoSummaryGridItemSize, BentoSummaryGridItemTrendDirection } from '@/components/summary-grid/summary-grid.types';
|
|
3
|
+
import { SummaryGridItemType } from '../summary-grid-item';
|
|
4
|
+
declare const _default: import("vue").DefineComponent<{
|
|
5
|
+
copy: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
default: any;
|
|
8
|
+
};
|
|
9
|
+
label: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
secondaryLabel: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
default: any;
|
|
16
|
+
};
|
|
17
|
+
title: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
required: true;
|
|
20
|
+
};
|
|
21
|
+
infoIconTooltipText: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: any;
|
|
24
|
+
};
|
|
25
|
+
fitContent: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
trendDirection: {
|
|
30
|
+
type: PropType<BentoSummaryGridItemTrendDirection>;
|
|
31
|
+
default: BentoSummaryGridItemTrendDirection;
|
|
32
|
+
};
|
|
33
|
+
trend: {
|
|
34
|
+
type: StringConstructor;
|
|
35
|
+
default: any;
|
|
36
|
+
};
|
|
37
|
+
size: {
|
|
38
|
+
type: PropType<BentoSummaryGridItemSize>;
|
|
39
|
+
default: BentoSummaryGridItemSize;
|
|
40
|
+
};
|
|
41
|
+
}, {
|
|
42
|
+
SummaryGridItemType: typeof SummaryGridItemType;
|
|
43
|
+
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
44
|
+
copy: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
default: any;
|
|
47
|
+
};
|
|
48
|
+
label: {
|
|
49
|
+
type: StringConstructor;
|
|
50
|
+
required: true;
|
|
51
|
+
};
|
|
52
|
+
secondaryLabel: {
|
|
53
|
+
type: StringConstructor;
|
|
54
|
+
default: any;
|
|
55
|
+
};
|
|
56
|
+
title: {
|
|
57
|
+
type: StringConstructor;
|
|
58
|
+
required: true;
|
|
59
|
+
};
|
|
60
|
+
infoIconTooltipText: {
|
|
61
|
+
type: StringConstructor;
|
|
62
|
+
default: any;
|
|
63
|
+
};
|
|
64
|
+
fitContent: {
|
|
65
|
+
type: BooleanConstructor;
|
|
66
|
+
default: boolean;
|
|
67
|
+
};
|
|
68
|
+
trendDirection: {
|
|
69
|
+
type: PropType<BentoSummaryGridItemTrendDirection>;
|
|
70
|
+
default: BentoSummaryGridItemTrendDirection;
|
|
71
|
+
};
|
|
72
|
+
trend: {
|
|
73
|
+
type: StringConstructor;
|
|
74
|
+
default: any;
|
|
75
|
+
};
|
|
76
|
+
size: {
|
|
77
|
+
type: PropType<BentoSummaryGridItemSize>;
|
|
78
|
+
default: BentoSummaryGridItemSize;
|
|
79
|
+
};
|
|
80
|
+
}>>, {
|
|
81
|
+
copy: string;
|
|
82
|
+
size: BentoSummaryGridItemSize;
|
|
83
|
+
infoIconTooltipText: string;
|
|
84
|
+
fitContent: boolean;
|
|
85
|
+
trendDirection: BentoSummaryGridItemTrendDirection;
|
|
86
|
+
trend: string;
|
|
87
|
+
secondaryLabel: string;
|
|
88
|
+
}>;
|
|
89
|
+
export default _default;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
copy: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: any;
|
|
5
|
+
};
|
|
6
|
+
infoIconTooltipText: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: any;
|
|
9
|
+
};
|
|
10
|
+
title: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
fitContent: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
}, {}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, "copy-to-clipboard"[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
copy: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: any;
|
|
22
|
+
};
|
|
23
|
+
infoIconTooltipText: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: any;
|
|
26
|
+
};
|
|
27
|
+
title: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
31
|
+
fitContent: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
}>>, {
|
|
36
|
+
copy: string;
|
|
37
|
+
infoIconTooltipText: string;
|
|
38
|
+
fitContent: boolean;
|
|
39
|
+
}>;
|
|
40
|
+
export default _default;
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { BentoSummaryGridItemSize, BentoSummaryGridItemTrendDirection } from '@/components/summary-grid/summary-grid.types';
|
|
3
|
+
import { SummaryGridItemType } from '../summary-grid-item';
|
|
4
|
+
declare const _default: import("vue").DefineComponent<{
|
|
5
|
+
copy: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
default: any;
|
|
8
|
+
};
|
|
9
|
+
label: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
title: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
infoIconTooltipText: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: any;
|
|
20
|
+
};
|
|
21
|
+
fitContent: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
trendDirection: {
|
|
26
|
+
type: PropType<BentoSummaryGridItemTrendDirection>;
|
|
27
|
+
default: BentoSummaryGridItemTrendDirection;
|
|
28
|
+
};
|
|
29
|
+
trend: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
default: any;
|
|
32
|
+
};
|
|
33
|
+
size: {
|
|
34
|
+
type: PropType<BentoSummaryGridItemSize>;
|
|
35
|
+
default: BentoSummaryGridItemSize;
|
|
36
|
+
};
|
|
37
|
+
}, {
|
|
38
|
+
SummaryGridItemType: typeof SummaryGridItemType;
|
|
39
|
+
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
40
|
+
copy: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
default: any;
|
|
43
|
+
};
|
|
44
|
+
label: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
required: true;
|
|
47
|
+
};
|
|
48
|
+
title: {
|
|
49
|
+
type: StringConstructor;
|
|
50
|
+
required: true;
|
|
51
|
+
};
|
|
52
|
+
infoIconTooltipText: {
|
|
53
|
+
type: StringConstructor;
|
|
54
|
+
default: any;
|
|
55
|
+
};
|
|
56
|
+
fitContent: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
default: boolean;
|
|
59
|
+
};
|
|
60
|
+
trendDirection: {
|
|
61
|
+
type: PropType<BentoSummaryGridItemTrendDirection>;
|
|
62
|
+
default: BentoSummaryGridItemTrendDirection;
|
|
63
|
+
};
|
|
64
|
+
trend: {
|
|
65
|
+
type: StringConstructor;
|
|
66
|
+
default: any;
|
|
67
|
+
};
|
|
68
|
+
size: {
|
|
69
|
+
type: PropType<BentoSummaryGridItemSize>;
|
|
70
|
+
default: BentoSummaryGridItemSize;
|
|
71
|
+
};
|
|
72
|
+
}>>, {
|
|
73
|
+
copy: string;
|
|
74
|
+
size: BentoSummaryGridItemSize;
|
|
75
|
+
infoIconTooltipText: string;
|
|
76
|
+
fitContent: boolean;
|
|
77
|
+
trendDirection: BentoSummaryGridItemTrendDirection;
|
|
78
|
+
trend: string;
|
|
79
|
+
}>;
|
|
80
|
+
export default _default;
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { BentoSummaryGridItemSize, BentoSummaryGridItemTrendDirection } from '@/components/summary-grid/summary-grid.types';
|
|
3
|
+
import { SummaryGridItemType } from '../summary-grid-item';
|
|
4
|
+
declare const _default: import("vue").DefineComponent<{
|
|
5
|
+
label: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
required: true;
|
|
8
|
+
};
|
|
9
|
+
title: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
infoIconTooltipText: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
default: any;
|
|
16
|
+
};
|
|
17
|
+
copy: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: any;
|
|
20
|
+
};
|
|
21
|
+
fitContent: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
trendDirection: {
|
|
26
|
+
type: PropType<BentoSummaryGridItemTrendDirection>;
|
|
27
|
+
default: BentoSummaryGridItemTrendDirection;
|
|
28
|
+
};
|
|
29
|
+
trend: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
default: any;
|
|
32
|
+
};
|
|
33
|
+
size: {
|
|
34
|
+
type: PropType<BentoSummaryGridItemSize>;
|
|
35
|
+
default: BentoSummaryGridItemSize;
|
|
36
|
+
};
|
|
37
|
+
}, {
|
|
38
|
+
SummaryGridItemType: typeof SummaryGridItemType;
|
|
39
|
+
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
40
|
+
label: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
required: true;
|
|
43
|
+
};
|
|
44
|
+
title: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
required: true;
|
|
47
|
+
};
|
|
48
|
+
infoIconTooltipText: {
|
|
49
|
+
type: StringConstructor;
|
|
50
|
+
default: any;
|
|
51
|
+
};
|
|
52
|
+
copy: {
|
|
53
|
+
type: StringConstructor;
|
|
54
|
+
default: any;
|
|
55
|
+
};
|
|
56
|
+
fitContent: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
default: boolean;
|
|
59
|
+
};
|
|
60
|
+
trendDirection: {
|
|
61
|
+
type: PropType<BentoSummaryGridItemTrendDirection>;
|
|
62
|
+
default: BentoSummaryGridItemTrendDirection;
|
|
63
|
+
};
|
|
64
|
+
trend: {
|
|
65
|
+
type: StringConstructor;
|
|
66
|
+
default: any;
|
|
67
|
+
};
|
|
68
|
+
size: {
|
|
69
|
+
type: PropType<BentoSummaryGridItemSize>;
|
|
70
|
+
default: BentoSummaryGridItemSize;
|
|
71
|
+
};
|
|
72
|
+
}>>, {
|
|
73
|
+
copy: string;
|
|
74
|
+
size: BentoSummaryGridItemSize;
|
|
75
|
+
infoIconTooltipText: string;
|
|
76
|
+
fitContent: boolean;
|
|
77
|
+
trendDirection: BentoSummaryGridItemTrendDirection;
|
|
78
|
+
trend: string;
|
|
79
|
+
}>;
|
|
80
|
+
export default _default;
|