@vaadin/grid-pro 24.2.0-alpha4 → 24.2.0-dev.538d07bdf

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": "24.2.0-alpha4",
3
+ "version": "24.2.0-dev.538d07bdf",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -39,21 +39,21 @@
39
39
  "dependencies": {
40
40
  "@open-wc/dedupe-mixin": "^1.3.0",
41
41
  "@polymer/polymer": "^3.0.0",
42
- "@vaadin/checkbox": "24.2.0-alpha4",
43
- "@vaadin/component-base": "24.2.0-alpha4",
44
- "@vaadin/grid": "24.2.0-alpha4",
45
- "@vaadin/item": "24.2.0-alpha4",
46
- "@vaadin/list-box": "24.2.0-alpha4",
47
- "@vaadin/lit-renderer": "24.2.0-alpha4",
48
- "@vaadin/select": "24.2.0-alpha4",
49
- "@vaadin/text-field": "24.2.0-alpha4",
50
- "@vaadin/vaadin-lumo-styles": "24.2.0-alpha4",
51
- "@vaadin/vaadin-material-styles": "24.2.0-alpha4",
52
- "@vaadin/vaadin-themable-mixin": "24.2.0-alpha4"
42
+ "@vaadin/checkbox": "24.2.0-dev.538d07bdf",
43
+ "@vaadin/component-base": "24.2.0-dev.538d07bdf",
44
+ "@vaadin/grid": "24.2.0-dev.538d07bdf",
45
+ "@vaadin/item": "24.2.0-dev.538d07bdf",
46
+ "@vaadin/list-box": "24.2.0-dev.538d07bdf",
47
+ "@vaadin/lit-renderer": "24.2.0-dev.538d07bdf",
48
+ "@vaadin/select": "24.2.0-dev.538d07bdf",
49
+ "@vaadin/text-field": "24.2.0-dev.538d07bdf",
50
+ "@vaadin/vaadin-lumo-styles": "24.2.0-dev.538d07bdf",
51
+ "@vaadin/vaadin-material-styles": "24.2.0-dev.538d07bdf",
52
+ "@vaadin/vaadin-themable-mixin": "24.2.0-dev.538d07bdf"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@esm-bundle/chai": "^4.3.4",
56
- "@vaadin/testing-helpers": "^0.4.2",
56
+ "@vaadin/testing-helpers": "^0.4.3",
57
57
  "lit": "^2.0.0",
58
58
  "sinon": "^13.0.2"
59
59
  },
@@ -62,5 +62,5 @@
62
62
  "web-types.json",
63
63
  "web-types.lit.json"
64
64
  ],
65
- "gitHead": "aaf7c5ebfea62628210eead4229be1718ac6b129"
65
+ "gitHead": "86c2fd5f37cf1240af98f7c7d752518c8d701db2"
66
66
  }
@@ -8,9 +8,9 @@
8
8
  * See https://vaadin.com/commercial-license-and-service-terms for the full
9
9
  * license.
10
10
  */
11
- import type { TemplateResult } from 'lit';
12
11
  import type { DirectiveResult } from 'lit/directive';
13
12
  import type { GridItemModel } from '@vaadin/grid';
13
+ import type { LitRendererResult } from '@vaadin/lit-renderer';
14
14
  import { LitRendererDirective } from '@vaadin/lit-renderer';
15
15
  import type { GridProEditColumn } from '../vaadin-grid-pro-edit-column.js';
16
16
 
@@ -18,7 +18,7 @@ export type GridProColumnEditModeLitRenderer<TItem> = (
18
18
  item: TItem,
19
19
  model: GridItemModel<TItem>,
20
20
  column: GridProEditColumn,
21
- ) => TemplateResult;
21
+ ) => LitRendererResult;
22
22
 
23
23
  export declare class GridProColumnEditModeRendererDirective<TItem> extends LitRendererDirective<
24
24
  GridProEditColumn,