@adyen/bento-vue2 0.9.0-4 → 0.9.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/data-grid/data-grid.types.d.ts +7 -8
- package/dist/@types/components/data-grid/data-grid.vue.d.ts +1 -5
- package/dist/@types/components/dropdown/dropdown.vue.d.ts +0 -1
- package/dist/@types/components/menu/menu.vue.d.ts +1 -1
- package/dist/@types/components/tooltip/tooltip.vue.d.ts +2 -2
- package/dist/index.js +2130 -2138
- package/dist/index.js.map +1 -1
- package/dist/web-types.json +1 -1
- package/package.json +2 -2
|
@@ -52,18 +52,17 @@ export interface BentoDatagridAllItemsSelectedState {
|
|
|
52
52
|
isIndeterminate: boolean;
|
|
53
53
|
}
|
|
54
54
|
export declare enum BentoDatagridEvent {
|
|
55
|
-
COLUMNS = "columns",
|
|
56
55
|
COLUMN_RESIZE = "column-resize",
|
|
57
|
-
|
|
56
|
+
SORT = "sort",
|
|
57
|
+
SELECT = "select",
|
|
58
58
|
NAVIGATE = "navigate",
|
|
59
|
+
UPDATE_FILERS = "update:filters",
|
|
60
|
+
ITEMS_PAGE = "items-page",
|
|
61
|
+
UPDATE_FILTER_SEARCH_TERM = "update:filter-search-term",
|
|
59
62
|
FILTER_SEARCH_INPUT = "filter-search-input",
|
|
60
63
|
FILTER_SEARCH_CLEAR = "filter-search-clear",
|
|
64
|
+
COLUMNS = "columns",
|
|
61
65
|
UPDATE_COLUMNS = "update:columns",
|
|
62
|
-
UPDATE_CONDENSED = "update:condensed",
|
|
63
|
-
UPDATE_FILTERS = "update:filters",
|
|
64
|
-
UPDATE_FILTER_SEARCH_TERM = "update:filter-search-term",
|
|
65
|
-
UPDATE_SORT_BY = "update:sort-by",
|
|
66
66
|
ROW_CLICK = "row-click",
|
|
67
|
-
|
|
68
|
-
SORT = "sort"
|
|
67
|
+
UPDATE_CONDENSED = "update:condensed"
|
|
69
68
|
}
|
|
@@ -250,10 +250,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
250
250
|
onConfigSettingsUpdate: (isCompactView: boolean) => void;
|
|
251
251
|
onConfigSettingsColumnsUpdate: (newColumns: BentoColumn[]) => void;
|
|
252
252
|
onConfigSettingsColumnUpdate: (updatedColumn: BentoColumn) => void;
|
|
253
|
-
columnsRef: import("vue").Ref<HTMLDivElement>;
|
|
254
|
-
configSettingsButtonStyle: import("vue").ComputedRef<{
|
|
255
|
-
height: string;
|
|
256
|
-
}>;
|
|
257
253
|
BentoDatagridSortDirection: typeof BentoDatagridSortDirection;
|
|
258
254
|
BentoTypographyElement: typeof BentoTypographyElement;
|
|
259
255
|
BentoTypographyVariant: typeof BentoTypographyVariant;
|
|
@@ -322,7 +318,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
322
318
|
dragover: (e: DragEvent) => void;
|
|
323
319
|
}>;
|
|
324
320
|
computedColumnPanelAlignment: import("vue").ComputedRef<number>;
|
|
325
|
-
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, (BentoDatagridEvent.
|
|
321
|
+
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, (BentoDatagridEvent.COLUMN_RESIZE | BentoDatagridEvent.SORT | BentoDatagridEvent.SELECT | BentoDatagridEvent.NAVIGATE | BentoDatagridEvent.UPDATE_FILERS | BentoDatagridEvent.ITEMS_PAGE | BentoDatagridEvent.UPDATE_FILTER_SEARCH_TERM | BentoDatagridEvent.FILTER_SEARCH_INPUT | BentoDatagridEvent.FILTER_SEARCH_CLEAR | BentoDatagridEvent.COLUMNS | BentoDatagridEvent.UPDATE_COLUMNS | BentoDatagridEvent.ROW_CLICK)[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
326
322
|
allowRowClicks: {
|
|
327
323
|
type: BooleanConstructor;
|
|
328
324
|
default: boolean;
|
|
@@ -82,7 +82,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
82
82
|
toggleDropdown: () => void;
|
|
83
83
|
onOptionSelected: (selectedValue: BentoListboxSelectedValue) => void;
|
|
84
84
|
BentoTypographyElement: typeof BentoTypographyElement;
|
|
85
|
-
BentoDropdownSize: typeof BentoDropdownSize;
|
|
86
85
|
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, "input"[], string, Readonly<import("vue").ExtractPropTypes<{
|
|
87
86
|
ariaLabel: {
|
|
88
87
|
type: StringConstructor;
|
|
@@ -56,7 +56,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
56
56
|
onKeyDown: () => void;
|
|
57
57
|
onKeyUp: () => void;
|
|
58
58
|
closeMenu: () => void;
|
|
59
|
-
toggleShowMenu: (
|
|
59
|
+
toggleShowMenu: () => void;
|
|
60
60
|
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
61
61
|
data: {
|
|
62
62
|
type: PropType<BentoMenuItem[]>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { PopperContainerAriaRole, PopperContainerPositionExtended } from '@/components/popper-container';
|
|
3
3
|
import { BentoTypographyElement, BentoTypographyVariant } from '@/components/typography';
|
|
4
|
-
import { VueNodeElement } from '
|
|
4
|
+
import { VueNodeElement } from '../../types';
|
|
5
5
|
declare const _default: import("vue").DefineComponent<{
|
|
6
6
|
id: {
|
|
7
7
|
type: StringConstructor;
|
|
@@ -37,7 +37,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
37
37
|
[x: string]: boolean;
|
|
38
38
|
}>;
|
|
39
39
|
tabIndex: import("vue").ComputedRef<number>;
|
|
40
|
-
}, {}, {}, {}, import("vue/types/v3-component-options
|
|
40
|
+
}, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
41
41
|
id: {
|
|
42
42
|
type: StringConstructor;
|
|
43
43
|
default: any;
|