@vaadin/polymer-legacy-adapter 24.2.0-dev.f254716fe → 24.3.0-alpha2
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/polymer-legacy-adapter",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.3.0-alpha2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -32,16 +32,16 @@
|
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@polymer/polymer": "^3.0.0",
|
|
35
|
-
"@vaadin/vaadin-themable-mixin": "24.
|
|
35
|
+
"@vaadin/vaadin-themable-mixin": "24.3.0-alpha2",
|
|
36
36
|
"lit": "^2.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@esm-bundle/chai": "^4.3.4",
|
|
40
|
-
"@vaadin/checkbox": "24.
|
|
41
|
-
"@vaadin/grid": "24.
|
|
42
|
-
"@vaadin/grid-pro": "24.
|
|
43
|
-
"@vaadin/testing-helpers": "^0.
|
|
40
|
+
"@vaadin/checkbox": "24.3.0-alpha2",
|
|
41
|
+
"@vaadin/grid": "24.3.0-alpha2",
|
|
42
|
+
"@vaadin/grid-pro": "24.3.0-alpha2",
|
|
43
|
+
"@vaadin/testing-helpers": "^0.5.0",
|
|
44
44
|
"sinon": "^13.0.2"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "0fd437292fa2a2f65e29b424d2456909ad2d684b"
|
|
47
47
|
}
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
* Copyright (c) 2021 - 2023 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
|
+
import { defineCustomElement } from '@vaadin/component-base/src/define.js';
|
|
6
7
|
import { Templatizer } from './template-renderer-templatizer.js';
|
|
7
8
|
|
|
8
9
|
export class GridTemplatizer extends Templatizer {
|
|
@@ -113,4 +114,4 @@ export class GridTemplatizer extends Templatizer {
|
|
|
113
114
|
}
|
|
114
115
|
}
|
|
115
116
|
|
|
116
|
-
|
|
117
|
+
defineCustomElement(GridTemplatizer);
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import { PolymerElement } from '@polymer/polymer';
|
|
7
7
|
import { templatize } from '@polymer/polymer/lib/utils/templatize.js';
|
|
8
|
+
import { defineCustomElement } from '@vaadin/component-base/src/define.js';
|
|
8
9
|
|
|
9
10
|
export class Templatizer extends PolymerElement {
|
|
10
11
|
static get is() {
|
|
@@ -142,4 +143,4 @@ export class Templatizer extends PolymerElement {
|
|
|
142
143
|
}
|
|
143
144
|
}
|
|
144
145
|
|
|
145
|
-
|
|
146
|
+
defineCustomElement(Templatizer);
|