@adyen/bento-vue2 0.9.0-2 → 0.9.0-4

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.
@@ -52,17 +52,18 @@ export interface BentoDatagridAllItemsSelectedState {
52
52
  isIndeterminate: boolean;
53
53
  }
54
54
  export declare enum BentoDatagridEvent {
55
+ COLUMNS = "columns",
55
56
  COLUMN_RESIZE = "column-resize",
56
- SORT = "sort",
57
- SELECT = "select",
58
- NAVIGATE = "navigate",
59
- UPDATE_FILERS = "update:filters",
60
57
  ITEMS_PAGE = "items-page",
61
- UPDATE_FILTER_SEARCH_TERM = "update:filter-search-term",
58
+ NAVIGATE = "navigate",
62
59
  FILTER_SEARCH_INPUT = "filter-search-input",
63
60
  FILTER_SEARCH_CLEAR = "filter-search-clear",
64
- COLUMNS = "columns",
65
61
  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
- UPDATE_CONDENSED = "update:condensed"
67
+ SELECT = "select",
68
+ SORT = "sort"
68
69
  }
@@ -250,6 +250,10 @@ 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
+ }>;
253
257
  BentoDatagridSortDirection: typeof BentoDatagridSortDirection;
254
258
  BentoTypographyElement: typeof BentoTypographyElement;
255
259
  BentoTypographyVariant: typeof BentoTypographyVariant;
@@ -318,7 +322,7 @@ declare const _default: import("vue").DefineComponent<{
318
322
  dragover: (e: DragEvent) => void;
319
323
  }>;
320
324
  computedColumnPanelAlignment: import("vue").ComputedRef<number>;
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<{
325
+ }, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, (BentoDatagridEvent.COLUMNS | BentoDatagridEvent.COLUMN_RESIZE | BentoDatagridEvent.ITEMS_PAGE | BentoDatagridEvent.NAVIGATE | BentoDatagridEvent.FILTER_SEARCH_INPUT | BentoDatagridEvent.FILTER_SEARCH_CLEAR | BentoDatagridEvent.UPDATE_COLUMNS | BentoDatagridEvent.UPDATE_FILTERS | BentoDatagridEvent.UPDATE_FILTER_SEARCH_TERM | BentoDatagridEvent.UPDATE_SORT_BY | BentoDatagridEvent.ROW_CLICK | BentoDatagridEvent.SELECT | BentoDatagridEvent.SORT)[], string, Readonly<import("vue").ExtractPropTypes<{
322
326
  allowRowClicks: {
323
327
  type: BooleanConstructor;
324
328
  default: boolean;
@@ -82,6 +82,7 @@ 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;
85
86
  }, {}, {}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, "input"[], string, Readonly<import("vue").ExtractPropTypes<{
86
87
  ariaLabel: {
87
88
  type: StringConstructor;