@adyen/bento-vue2 0.7.1 → 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/divider/divider.vue.d.ts +6 -0
- package/dist/@types/components/divider/index.d.ts +1 -0
- 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/popover/popover.vue.d.ts +9 -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 +5 -7
- package/dist/@types/components/summary-grid/components/grid-layout/grid-layout.vue.d.ts +16 -11
- 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.d.ts +16 -0
- package/dist/@types/index.d.ts +3 -0
- package/dist/index.js +4099 -3351
- package/dist/index.js.map +1 -1
- package/dist/web-types.json +607 -5
- package/package.json +2 -2
|
@@ -23,6 +23,7 @@ import {
|
|
|
23
23
|
BentoDataGrid,
|
|
24
24
|
BentoDate,
|
|
25
25
|
BentoDatePicker,
|
|
26
|
+
BentoDivider,
|
|
26
27
|
BentoDropdown,
|
|
27
28
|
BentoDropdownAvatar,
|
|
28
29
|
BentoDropdownCountry,
|
|
@@ -42,6 +43,13 @@ import {
|
|
|
42
43
|
BentoRadioGroup,
|
|
43
44
|
BentoSearchBar,
|
|
44
45
|
BentoStatus,
|
|
46
|
+
BentoStructuredList,
|
|
47
|
+
BentoSummaryGrid,
|
|
48
|
+
BentoSummaryGridItemAmount,
|
|
49
|
+
BentoSummaryGridItemCustom,
|
|
50
|
+
BentoSummaryGridItemNumeric,
|
|
51
|
+
BentoSummaryGridItemPercentage,
|
|
52
|
+
BentoSummaryGridItemText,
|
|
45
53
|
BentoTabs,
|
|
46
54
|
BentoTag,
|
|
47
55
|
BentoToast,
|
|
@@ -75,6 +83,7 @@ declare module 'vue' {
|
|
|
75
83
|
BentoDataGrid: typeof BentoDataGrid;
|
|
76
84
|
BentoDate: typeof BentoDate;
|
|
77
85
|
BentoDatePicker: typeof BentoDatePicker;
|
|
86
|
+
BentoDivider: typeof BentoDivider;
|
|
78
87
|
BentoDropdown: typeof BentoDropdown;
|
|
79
88
|
BentoDropdownAvatar: typeof BentoDropdownAvatar;
|
|
80
89
|
BentoDropdownCountry: typeof BentoDropdownCountry;
|
|
@@ -94,6 +103,13 @@ declare module 'vue' {
|
|
|
94
103
|
BentoRadioGroup: typeof BentoRadioGroup;
|
|
95
104
|
BentoSearchBar: typeof BentoSearchBar;
|
|
96
105
|
BentoStatus: typeof BentoStatus;
|
|
106
|
+
BentoStructuredList: typeof BentoStructuredList;
|
|
107
|
+
BentoSummaryGrid: typeof BentoSummaryGrid;
|
|
108
|
+
BentoSummaryGridItemAmount: typeof BentoSummaryGridItemAmount;
|
|
109
|
+
BentoSummaryGridItemCustom: typeof BentoSummaryGridItemCustom;
|
|
110
|
+
BentoSummaryGridItemPercentage: typeof BentoSummaryGridItemPercentage;
|
|
111
|
+
BentoSummaryGridItemNumeric: typeof BentoSummaryGridItemNumeric;
|
|
112
|
+
BentoSummaryGridItemText: typeof BentoSummaryGridItemText;
|
|
97
113
|
BentoTabs: typeof BentoTabs;
|
|
98
114
|
BentoTag: typeof BentoTag;
|
|
99
115
|
BentoToast: typeof BentoToast;
|
package/dist/@types/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export * from './components/click-outside';
|
|
|
10
10
|
export * from './components/country';
|
|
11
11
|
export * from './components/currency';
|
|
12
12
|
export * from './components/date';
|
|
13
|
+
export * from './components/divider';
|
|
13
14
|
export * from './components/filter-bar';
|
|
14
15
|
export * from './components/info-icon';
|
|
15
16
|
export * from './components/input-field';
|
|
@@ -24,6 +25,8 @@ export * from './components/popover';
|
|
|
24
25
|
export * from './components/radio-group';
|
|
25
26
|
export * from './components/search-bar';
|
|
26
27
|
export * from './components/status';
|
|
28
|
+
export * from './components/structured-list';
|
|
29
|
+
export * from './components/summary-grid';
|
|
27
30
|
export * from './components/tabs';
|
|
28
31
|
export * from './components/tag';
|
|
29
32
|
export * from './components/toast';
|