@adyen/bento-vue2 0.8.0 → 0.8.1
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/button/components/loading-button/loading-button.vue.d.ts +1 -1
- package/dist/@types/components/data-grid/components/data-grid-columns/data-grid-columns.vue.d.ts +16 -3
- package/dist/@types/components/data-grid/composables/useCalculateColumnWidth/useCalculateColumnWidth.d.ts +0 -2
- package/dist/@types/components/data-grid/data-grid.vue.d.ts +6 -2
- package/dist/@types/components/date-picker/components/date-picker-calendar/components/date-picker-calendar-day/__test__/date-picker-calendar-day-stub.vue.d.ts +15 -4
- package/dist/@types/components/date-picker/components/date-picker-calendar/components/date-picker-calendar-day/date-picker-calendar-day.types.d.ts +14 -4
- package/dist/@types/components/date-picker/components/date-picker-calendar/components/date-picker-calendar-day/date-picker-calendar-day.vue.d.ts +18 -5
- package/dist/@types/components/date-picker/components/date-picker-calendar/components/date-picker-calendar-day/index.d.ts +1 -0
- package/dist/@types/components/date-picker/components/date-picker-calendar/date-picker-calendar.types.d.ts +11 -1
- package/dist/@types/components/date-picker/components/date-picker-calendar/date-picker-calendar.vue.d.ts +42 -71
- package/dist/@types/components/date-picker/components/date-picker-calendar-pane/composables/use-range-pane.d.ts +2 -0
- package/dist/@types/components/date-picker/components/date-picker-calendar-pane/composables/use-single-pane.d.ts +2 -0
- package/dist/@types/components/date-picker/components/date-picker-calendar-pane/date-picker-calendar-pane.types.d.ts +21 -0
- package/dist/@types/components/date-picker/components/date-picker-calendar-pane/date-picker-calendar-pane.vue.d.ts +198 -0
- package/dist/@types/components/date-picker/components/date-picker-calendar-pane/index.d.ts +1 -0
- package/dist/@types/components/date-picker/components/date-picker-calendar-range/date-picker-calendar-range.vue.d.ts +58 -0
- package/dist/@types/components/date-picker/components/date-picker-calendar-range/index.d.ts +1 -0
- package/dist/@types/components/date-picker/composables/use-date-picker-range-calendar-text.d.ts +2 -0
- package/dist/@types/components/date-picker/composables/use-date-picker-single-calendar-text.d.ts +2 -0
- package/dist/@types/components/date-picker/date-picker.types.d.ts +15 -0
- package/dist/@types/components/date-picker/date-picker.vue.d.ts +55 -14
- package/dist/@types/components/filter-bar/components/base-filter/base-filter.vue.d.ts +18 -0
- package/dist/@types/components/filter-bar/components/date-filter/date-filter.types.d.ts +3 -0
- package/dist/@types/components/filter-bar/components/date-filter/date-filter.vue.d.ts +114 -0
- package/dist/@types/components/filter-bar/components/date-filter/index.d.ts +1 -0
- package/dist/@types/components/filter-bar/components/date-range-filter/date-range-filter.types.d.ts +3 -0
- package/dist/@types/components/filter-bar/components/date-range-filter/date-range-filter.vue.d.ts +200 -0
- package/dist/@types/components/filter-bar/components/date-range-filter/index.d.ts +1 -0
- package/dist/@types/components/filter-bar/filter-bar.types.d.ts +17 -3
- package/dist/@types/components/info-icon/info-icon.vue.d.ts +13 -1
- package/dist/@types/components/input-field/input-field.vue.d.ts +9 -0
- package/dist/@types/components/internal/copy/copy.vue.d.ts +13 -1
- package/dist/@types/components/menu/menu.types.d.ts +8 -0
- package/dist/@types/components/menu/menu.vue.d.ts +28 -10
- package/dist/@types/components/modal/components/base-modal/index.d.ts +1 -0
- package/dist/@types/components/payment-method/payment-method.vue.d.ts +12 -0
- package/dist/@types/components/popover/popover.vue.d.ts +10 -0
- package/dist/@types/components/search-bar/search-bar.vue.d.ts +26 -0
- package/dist/@types/components/summary-grid/components/summary-grid-item/summary-grid-item.vue.d.ts +18 -1
- package/dist/@types/components/summary-grid/components/summary-grid-item-amount/summary-grid-item-amount.vue.d.ts +1 -1
- package/dist/@types/components/summary-grid/components/summary-grid-item-custom/summary-grid-item-custom.vue.d.ts +1 -1
- package/dist/@types/components/summary-grid/components/summary-grid-item-numeric/summary-grid-item-numeric.vue.d.ts +1 -1
- package/dist/@types/components/summary-grid/components/summary-grid-item-percentage/summary-grid-item-percentage.vue.d.ts +1 -1
- package/dist/@types/components/summary-grid/components/summary-grid-item-text/summary-grid-item-text.vue.d.ts +1 -1
- package/dist/index.js +7590 -7015
- package/dist/index.js.map +1 -1
- package/dist/web-types.json +363 -125
- package/package.json +2 -3
- package/dist/@types/components/date-picker/components/date-picker-calendar-container/__test__/date-picker-calendar-container-stub.vue.d.ts +0 -43
- package/dist/@types/components/date-picker/components/date-picker-calendar-container/date-picker-calendar-container.types.d.ts +0 -3
- package/dist/@types/components/date-picker/components/date-picker-calendar-container/date-picker-calendar-container.vue.d.ts +0 -99
- package/dist/@types/components/date-picker/components/date-picker-calendar-container/index.d.ts +0 -1
|
@@ -1,12 +1,24 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { PopperContainerPosition } from '@/components/popper-container';
|
|
1
3
|
declare const _default: import("vue").DefineComponent<{
|
|
2
4
|
tooltipText: {
|
|
3
5
|
type: StringConstructor;
|
|
4
6
|
required: true;
|
|
5
7
|
};
|
|
8
|
+
tooltipPosition: {
|
|
9
|
+
type: PropType<PopperContainerPosition>;
|
|
10
|
+
default: import("@/components/popper-container").PopperContainerPositionExtended;
|
|
11
|
+
};
|
|
6
12
|
}, {}, {}, {}, {}, import("vue/types/v3-component-options.js").ComponentOptionsMixin, import("vue/types/v3-component-options.js").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
7
13
|
tooltipText: {
|
|
8
14
|
type: StringConstructor;
|
|
9
15
|
required: true;
|
|
10
16
|
};
|
|
11
|
-
|
|
17
|
+
tooltipPosition: {
|
|
18
|
+
type: PropType<PopperContainerPosition>;
|
|
19
|
+
default: import("@/components/popper-container").PopperContainerPositionExtended;
|
|
20
|
+
};
|
|
21
|
+
}>>, {
|
|
22
|
+
tooltipPosition: PopperContainerPosition;
|
|
23
|
+
}>;
|
|
12
24
|
export default _default;
|
|
@@ -18,6 +18,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18
18
|
type: BooleanConstructor;
|
|
19
19
|
default: boolean;
|
|
20
20
|
};
|
|
21
|
+
placeholder: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
21
25
|
staticValue: {
|
|
22
26
|
type: StringConstructor;
|
|
23
27
|
default: string;
|
|
@@ -69,6 +73,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
69
73
|
type: BooleanConstructor;
|
|
70
74
|
default: boolean;
|
|
71
75
|
};
|
|
76
|
+
placeholder: {
|
|
77
|
+
type: StringConstructor;
|
|
78
|
+
default: string;
|
|
79
|
+
};
|
|
72
80
|
staticValue: {
|
|
73
81
|
type: StringConstructor;
|
|
74
82
|
default: string;
|
|
@@ -96,6 +104,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
96
104
|
ariaHidden: boolean;
|
|
97
105
|
ariaLabel: string;
|
|
98
106
|
disabled: boolean;
|
|
107
|
+
placeholder: string;
|
|
99
108
|
variant: BentoInputFieldVariant;
|
|
100
109
|
staticValue: string;
|
|
101
110
|
staticValuePosition: BentoInputFieldStaticValuePosition;
|
|
@@ -1,9 +1,15 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
1
2
|
import { BentoButtonVariant } from '@/components/button';
|
|
3
|
+
import { PopperContainerPosition } from '@/components/popper-container';
|
|
2
4
|
declare const _default: import("vue").DefineComponent<{
|
|
3
5
|
text: {
|
|
4
6
|
type: StringConstructor;
|
|
5
7
|
required: true;
|
|
6
8
|
};
|
|
9
|
+
tooltipPosition: {
|
|
10
|
+
type: PropType<PopperContainerPosition>;
|
|
11
|
+
default: import("@/components/popper-container").PopperContainerPositionBasic;
|
|
12
|
+
};
|
|
7
13
|
}, {
|
|
8
14
|
BentoButtonVariant: typeof BentoButtonVariant;
|
|
9
15
|
copyText: import("vue").Ref<import("vue-i18n").default.TranslateResult>;
|
|
@@ -15,5 +21,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
15
21
|
type: StringConstructor;
|
|
16
22
|
required: true;
|
|
17
23
|
};
|
|
18
|
-
|
|
24
|
+
tooltipPosition: {
|
|
25
|
+
type: PropType<PopperContainerPosition>;
|
|
26
|
+
default: import("@/components/popper-container").PopperContainerPositionBasic;
|
|
27
|
+
};
|
|
28
|
+
}>>, {
|
|
29
|
+
tooltipPosition: PopperContainerPosition;
|
|
30
|
+
}>;
|
|
19
31
|
export default _default;
|
|
@@ -1,4 +1,12 @@
|
|
|
1
|
+
import { BentoButton } from '../button';
|
|
1
2
|
export declare enum BentoMenuEvent {
|
|
2
3
|
CLOSE = "close",
|
|
3
4
|
BACK = "back"
|
|
4
5
|
}
|
|
6
|
+
type ButtonProps = InstanceType<typeof BentoButton>['$props'];
|
|
7
|
+
export type BentoMenuButtonProps = {
|
|
8
|
+
variant?: ButtonProps['variant'];
|
|
9
|
+
condensed?: ButtonProps['condensed'];
|
|
10
|
+
disabled?: ButtonProps['disabled'];
|
|
11
|
+
};
|
|
12
|
+
export {};
|
|
@@ -2,15 +2,12 @@ import { PropType } from 'vue';
|
|
|
2
2
|
import { BentoButtonVariant } from '@/components/button';
|
|
3
3
|
import { BentoPopoverPositions } from '@/components/popover';
|
|
4
4
|
import { BentoMenuItem } from './components';
|
|
5
|
+
import { BentoMenuButtonProps } from './menu.types';
|
|
5
6
|
declare const _default: import("vue").DefineComponent<{
|
|
6
7
|
data: {
|
|
7
8
|
type: PropType<BentoMenuItem[]>;
|
|
8
9
|
required: true;
|
|
9
10
|
};
|
|
10
|
-
tertiaryButton: {
|
|
11
|
-
type: BooleanConstructor;
|
|
12
|
-
default: boolean;
|
|
13
|
-
};
|
|
14
11
|
menuPosition: {
|
|
15
12
|
type: PropType<import("../popper-container").PopperContainerPosition>;
|
|
16
13
|
default: import("../popper-container").PopperContainerPositionExtended;
|
|
@@ -20,6 +17,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
20
17
|
type: BooleanConstructor;
|
|
21
18
|
default: boolean;
|
|
22
19
|
};
|
|
20
|
+
menuWidth: {
|
|
21
|
+
type: NumberConstructor;
|
|
22
|
+
default: any;
|
|
23
|
+
};
|
|
24
|
+
button: {
|
|
25
|
+
type: PropType<BentoMenuButtonProps>;
|
|
26
|
+
default: () => {
|
|
27
|
+
variant: BentoButtonVariant;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
23
30
|
}, {
|
|
24
31
|
BentoButtonVariant: typeof BentoButtonVariant;
|
|
25
32
|
BentoPopoverPositions: {
|
|
@@ -42,7 +49,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
42
49
|
menuButtonRef: any;
|
|
43
50
|
menuId: string;
|
|
44
51
|
showMenu: import("vue").Ref<boolean>;
|
|
45
|
-
|
|
52
|
+
computedMenuWidth: import("vue").ComputedRef<{
|
|
53
|
+
width: string;
|
|
54
|
+
}>;
|
|
46
55
|
isLastElementFocused: import("vue").Ref<boolean>;
|
|
47
56
|
onKeyDown: () => void;
|
|
48
57
|
onKeyUp: () => void;
|
|
@@ -53,10 +62,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
53
62
|
type: PropType<BentoMenuItem[]>;
|
|
54
63
|
required: true;
|
|
55
64
|
};
|
|
56
|
-
tertiaryButton: {
|
|
57
|
-
type: BooleanConstructor;
|
|
58
|
-
default: boolean;
|
|
59
|
-
};
|
|
60
65
|
menuPosition: {
|
|
61
66
|
type: PropType<import("../popper-container").PopperContainerPosition>;
|
|
62
67
|
default: import("../popper-container").PopperContainerPositionExtended;
|
|
@@ -66,9 +71,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
66
71
|
type: BooleanConstructor;
|
|
67
72
|
default: boolean;
|
|
68
73
|
};
|
|
74
|
+
menuWidth: {
|
|
75
|
+
type: NumberConstructor;
|
|
76
|
+
default: any;
|
|
77
|
+
};
|
|
78
|
+
button: {
|
|
79
|
+
type: PropType<BentoMenuButtonProps>;
|
|
80
|
+
default: () => {
|
|
81
|
+
variant: BentoButtonVariant;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
69
84
|
}>>, {
|
|
70
|
-
|
|
85
|
+
button: {
|
|
86
|
+
variant: BentoButtonVariant;
|
|
87
|
+
};
|
|
71
88
|
menuPosition: import("../popper-container").PopperContainerPosition;
|
|
72
89
|
menuFixedPositioning: boolean;
|
|
90
|
+
menuWidth: number;
|
|
73
91
|
}>;
|
|
74
92
|
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as BaseModal } from './base-modal.vue';
|
|
@@ -10,8 +10,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
10
10
|
type: StringConstructor;
|
|
11
11
|
required: true;
|
|
12
12
|
};
|
|
13
|
+
small: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
default: boolean;
|
|
16
|
+
};
|
|
13
17
|
}, {
|
|
14
18
|
paymentMethodIconSrc: import("vue").Ref<string>;
|
|
19
|
+
conditionalIconClasses: import("vue").ComputedRef<{
|
|
20
|
+
'b-payment-method__icon--small': boolean;
|
|
21
|
+
}>;
|
|
15
22
|
BentoTypographyElement: typeof BentoTypographyElement;
|
|
16
23
|
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
17
24
|
type: {
|
|
@@ -22,7 +29,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
22
29
|
type: StringConstructor;
|
|
23
30
|
required: true;
|
|
24
31
|
};
|
|
32
|
+
small: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
25
36
|
}>>, {
|
|
37
|
+
small: boolean;
|
|
26
38
|
type: BentoPaymentMethodType;
|
|
27
39
|
}>;
|
|
28
40
|
export default _default;
|
|
@@ -28,6 +28,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
28
28
|
type: BooleanConstructor;
|
|
29
29
|
default: boolean;
|
|
30
30
|
};
|
|
31
|
+
fitContent: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
31
35
|
fixedPositioning: {
|
|
32
36
|
type: BooleanConstructor;
|
|
33
37
|
default: boolean;
|
|
@@ -70,6 +74,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
70
74
|
'b-popover--small': boolean;
|
|
71
75
|
'b-popover--with-divider': boolean;
|
|
72
76
|
'b-popover--large': boolean;
|
|
77
|
+
'b-popover--fit-content': boolean;
|
|
73
78
|
'b-popover--without-space': boolean;
|
|
74
79
|
}>;
|
|
75
80
|
contentConditionalClasses: import("vue").ComputedRef<{
|
|
@@ -104,6 +109,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
104
109
|
type: BooleanConstructor;
|
|
105
110
|
default: boolean;
|
|
106
111
|
};
|
|
112
|
+
fitContent: {
|
|
113
|
+
type: BooleanConstructor;
|
|
114
|
+
default: boolean;
|
|
115
|
+
};
|
|
107
116
|
fixedPositioning: {
|
|
108
117
|
type: BooleanConstructor;
|
|
109
118
|
default: boolean;
|
|
@@ -155,6 +164,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
155
164
|
divider: boolean;
|
|
156
165
|
disableFocusTrap: boolean;
|
|
157
166
|
dismissible: boolean;
|
|
167
|
+
fitContent: boolean;
|
|
158
168
|
withoutSpace: boolean;
|
|
159
169
|
}>;
|
|
160
170
|
export default _default;
|
|
@@ -8,6 +8,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8
8
|
type: NumberConstructor;
|
|
9
9
|
default: number;
|
|
10
10
|
};
|
|
11
|
+
placeholder: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
11
15
|
value: {
|
|
12
16
|
type: StringConstructor;
|
|
13
17
|
default: any;
|
|
@@ -31,6 +35,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
31
35
|
type: BooleanConstructor;
|
|
32
36
|
default: boolean;
|
|
33
37
|
};
|
|
38
|
+
placeholder: {
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
34
42
|
staticValue: {
|
|
35
43
|
type: StringConstructor;
|
|
36
44
|
default: string;
|
|
@@ -68,6 +76,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
68
76
|
type: BooleanConstructor;
|
|
69
77
|
default: boolean;
|
|
70
78
|
};
|
|
79
|
+
placeholder: {
|
|
80
|
+
type: StringConstructor;
|
|
81
|
+
default: string;
|
|
82
|
+
};
|
|
71
83
|
staticValue: {
|
|
72
84
|
type: StringConstructor;
|
|
73
85
|
default: string;
|
|
@@ -95,6 +107,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
95
107
|
ariaHidden: boolean;
|
|
96
108
|
ariaLabel: string;
|
|
97
109
|
disabled: boolean;
|
|
110
|
+
placeholder: string;
|
|
98
111
|
variant: import("@/components/input-field").BentoInputFieldVariant;
|
|
99
112
|
staticValue: string;
|
|
100
113
|
staticValuePosition: import("@/components/input-field").BentoInputFieldStaticValuePosition;
|
|
@@ -115,6 +128,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
115
128
|
type: BooleanConstructor;
|
|
116
129
|
default: boolean;
|
|
117
130
|
};
|
|
131
|
+
placeholder: {
|
|
132
|
+
type: StringConstructor;
|
|
133
|
+
default: string;
|
|
134
|
+
};
|
|
118
135
|
staticValue: {
|
|
119
136
|
type: StringConstructor;
|
|
120
137
|
default: string;
|
|
@@ -166,6 +183,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
166
183
|
type: BooleanConstructor;
|
|
167
184
|
default: boolean;
|
|
168
185
|
};
|
|
186
|
+
placeholder: {
|
|
187
|
+
type: StringConstructor;
|
|
188
|
+
default: string;
|
|
189
|
+
};
|
|
169
190
|
staticValue: {
|
|
170
191
|
type: StringConstructor;
|
|
171
192
|
default: string;
|
|
@@ -199,12 +220,17 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
199
220
|
type: NumberConstructor;
|
|
200
221
|
default: number;
|
|
201
222
|
};
|
|
223
|
+
placeholder: {
|
|
224
|
+
type: StringConstructor;
|
|
225
|
+
default: string;
|
|
226
|
+
};
|
|
202
227
|
value: {
|
|
203
228
|
type: StringConstructor;
|
|
204
229
|
default: any;
|
|
205
230
|
};
|
|
206
231
|
}>>, {
|
|
207
232
|
value: string;
|
|
233
|
+
placeholder: string;
|
|
208
234
|
debounceTime: number;
|
|
209
235
|
}>;
|
|
210
236
|
export default _default;
|
package/dist/@types/components/summary-grid/components/summary-grid-item/summary-grid-item.vue.d.ts
CHANGED
|
@@ -57,6 +57,23 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
57
57
|
BentoTypographyVariant: typeof BentoTypographyVariant;
|
|
58
58
|
SummaryGridItemType: typeof SummaryGridItemType;
|
|
59
59
|
BentoSummaryGridItemSize: typeof BentoSummaryGridItemSize;
|
|
60
|
+
PopperContainerPosition: {
|
|
61
|
+
AUTO: import("@/components/popper-container").PopperContainerPositionExtended.AUTO;
|
|
62
|
+
AUTO_START: import("@/components/popper-container").PopperContainerPositionExtended.AUTO_START;
|
|
63
|
+
AUTO_END: import("@/components/popper-container").PopperContainerPositionExtended.AUTO_END;
|
|
64
|
+
TOP_START: import("@/components/popper-container").PopperContainerPositionExtended.TOP_START;
|
|
65
|
+
TOP_END: import("@/components/popper-container").PopperContainerPositionExtended.TOP_END;
|
|
66
|
+
RIGHT_START: import("@/components/popper-container").PopperContainerPositionExtended.RIGHT_START;
|
|
67
|
+
RIGHT_END: import("@/components/popper-container").PopperContainerPositionExtended.RIGHT_END;
|
|
68
|
+
BOTTOM_START: import("@/components/popper-container").PopperContainerPositionExtended.BOTTOM_START;
|
|
69
|
+
BOTTOM_END: import("@/components/popper-container").PopperContainerPositionExtended.BOTTOM_END;
|
|
70
|
+
LEFT_START: import("@/components/popper-container").PopperContainerPositionExtended.LEFT_START;
|
|
71
|
+
LEFT_END: import("@/components/popper-container").PopperContainerPositionExtended.LEFT_END;
|
|
72
|
+
TOP: import("@/components/popper-container").PopperContainerPositionBasic.TOP;
|
|
73
|
+
RIGHT: import("@/components/popper-container").PopperContainerPositionBasic.RIGHT;
|
|
74
|
+
BOTTOM: import("@/components/popper-container").PopperContainerPositionBasic.BOTTOM;
|
|
75
|
+
LEFT: import("@/components/popper-container").PopperContainerPositionBasic.LEFT;
|
|
76
|
+
};
|
|
60
77
|
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
61
78
|
copy: {
|
|
62
79
|
type: StringConstructor;
|
|
@@ -93,9 +110,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
93
110
|
}>>, {
|
|
94
111
|
copy: string;
|
|
95
112
|
size: BentoSummaryGridItemSize;
|
|
113
|
+
fitContent: boolean;
|
|
96
114
|
infoIconTooltipText: string;
|
|
97
115
|
itemType: SummaryGridItemType;
|
|
98
|
-
fitContent: boolean;
|
|
99
116
|
trendDirection: BentoSummaryGridItemTrendDirection;
|
|
100
117
|
trend: string;
|
|
101
118
|
}>;
|
|
@@ -80,8 +80,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
80
80
|
}>>, {
|
|
81
81
|
copy: string;
|
|
82
82
|
size: BentoSummaryGridItemSize;
|
|
83
|
-
infoIconTooltipText: string;
|
|
84
83
|
fitContent: boolean;
|
|
84
|
+
infoIconTooltipText: string;
|
|
85
85
|
trendDirection: BentoSummaryGridItemTrendDirection;
|
|
86
86
|
trend: string;
|
|
87
87
|
secondaryLabel: string;
|
|
@@ -72,8 +72,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
72
72
|
}>>, {
|
|
73
73
|
copy: string;
|
|
74
74
|
size: BentoSummaryGridItemSize;
|
|
75
|
-
infoIconTooltipText: string;
|
|
76
75
|
fitContent: boolean;
|
|
76
|
+
infoIconTooltipText: string;
|
|
77
77
|
trendDirection: BentoSummaryGridItemTrendDirection;
|
|
78
78
|
trend: string;
|
|
79
79
|
}>;
|
|
@@ -72,8 +72,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
72
72
|
}>>, {
|
|
73
73
|
copy: string;
|
|
74
74
|
size: BentoSummaryGridItemSize;
|
|
75
|
-
infoIconTooltipText: string;
|
|
76
75
|
fitContent: boolean;
|
|
76
|
+
infoIconTooltipText: string;
|
|
77
77
|
trendDirection: BentoSummaryGridItemTrendDirection;
|
|
78
78
|
trend: string;
|
|
79
79
|
}>;
|