@vaadin/grid-pro 23.1.1 → 23.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/grid-pro",
3
- "version": "23.1.1",
3
+ "version": "23.1.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -38,25 +38,25 @@
38
38
  "dependencies": {
39
39
  "@open-wc/dedupe-mixin": "^1.3.0",
40
40
  "@polymer/polymer": "^3.0.0",
41
- "@vaadin/checkbox": "^23.1.1",
42
- "@vaadin/component-base": "^23.1.1",
43
- "@vaadin/grid": "^23.1.1",
44
- "@vaadin/item": "^23.1.1",
45
- "@vaadin/list-box": "^23.1.1",
46
- "@vaadin/lit-renderer": "^23.1.1",
47
- "@vaadin/select": "^23.1.1",
48
- "@vaadin/text-field": "^23.1.1",
41
+ "@vaadin/checkbox": "^23.1.4",
42
+ "@vaadin/component-base": "^23.1.4",
43
+ "@vaadin/grid": "^23.1.4",
44
+ "@vaadin/item": "^23.1.4",
45
+ "@vaadin/list-box": "^23.1.4",
46
+ "@vaadin/lit-renderer": "^23.1.4",
47
+ "@vaadin/select": "^23.1.4",
48
+ "@vaadin/text-field": "^23.1.4",
49
49
  "@vaadin/vaadin-license-checker": "^2.1.0",
50
- "@vaadin/vaadin-lumo-styles": "^23.1.1",
51
- "@vaadin/vaadin-material-styles": "^23.1.1",
52
- "@vaadin/vaadin-themable-mixin": "^23.1.1"
50
+ "@vaadin/vaadin-lumo-styles": "^23.1.4",
51
+ "@vaadin/vaadin-material-styles": "^23.1.4",
52
+ "@vaadin/vaadin-themable-mixin": "^23.1.4"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@esm-bundle/chai": "^4.3.4",
56
- "@vaadin/polymer-legacy-adapter": "^23.1.1",
56
+ "@vaadin/polymer-legacy-adapter": "^23.1.4",
57
57
  "@vaadin/testing-helpers": "^0.3.2",
58
58
  "lit": "^2.0.0",
59
59
  "sinon": "^13.0.2"
60
60
  },
61
- "gitHead": "390458d6519433a2dd502cef90da48e84573a275"
61
+ "gitHead": "0a82302064f1276a000f0cbd810076539407d133"
62
62
  }
@@ -7,7 +7,7 @@
7
7
  import { GridBodyRenderer, GridDefaultItem, GridItemModel } from '@vaadin/grid/src/vaadin-grid.js';
8
8
  import { GridColumn } from '@vaadin/grid/src/vaadin-grid-column.js';
9
9
 
10
- export type GridProEditorType = 'text' | 'checkbox' | 'select' | 'custom';
10
+ export type GridProEditorType = 'checkbox' | 'custom' | 'select' | 'text';
11
11
 
12
12
  /**
13
13
  * `<vaadin-grid-pro-edit-column>` is a helper element for the `<vaadin-grid-pro>`
@@ -8,7 +8,7 @@ import { Constructor } from '@open-wc/dedupe-mixin';
8
8
 
9
9
  export declare function InlineEditingMixin<T extends Constructor<HTMLElement>>(
10
10
  base: T,
11
- ): T & Constructor<InlineEditingMixinClass>;
11
+ ): Constructor<InlineEditingMixinClass> & T;
12
12
 
13
13
  export declare class InlineEditingMixinClass {
14
14
  /**
@@ -24,7 +24,7 @@ export type GridProItemPropertyChangedEvent<TItem> = CustomEvent<{
24
24
  index: number;
25
25
  item: TItem;
26
26
  path: string;
27
- value: string | boolean;
27
+ value: boolean | string;
28
28
  }>;
29
29
 
30
30
  export interface GridProCustomEventMap<TItem> {
@@ -74,13 +74,13 @@ declare class GridPro<TItem = GridDefaultItem> extends Grid<TItem> {
74
74
  addEventListener<K extends keyof GridProEventMap<TItem>>(
75
75
  type: K,
76
76
  listener: (this: GridPro<TItem>, ev: GridProEventMap<TItem>[K]) => void,
77
- options?: boolean | AddEventListenerOptions,
77
+ options?: AddEventListenerOptions | boolean,
78
78
  ): void;
79
79
 
80
80
  removeEventListener<K extends keyof GridProEventMap<TItem>>(
81
81
  type: K,
82
82
  listener: (this: GridPro<TItem>, ev: GridProEventMap<TItem>[K]) => void,
83
- options?: boolean | EventListenerOptions,
83
+ options?: EventListenerOptions | boolean,
84
84
  ): void;
85
85
  }
86
86