@vaadin/polymer-legacy-adapter 22.0.0-beta2 → 22.0.2
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": "22.0.
|
|
3
|
+
"version": "22.0.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -31,16 +31,16 @@
|
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@polymer/polymer": "^3.0.0",
|
|
34
|
-
"@vaadin/vaadin-themable-mixin": "22.0.
|
|
34
|
+
"@vaadin/vaadin-themable-mixin": "^22.0.2",
|
|
35
35
|
"lit": "^2.0.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@esm-bundle/chai": "^4.3.4",
|
|
39
|
-
"@vaadin/checkbox": "22.0.
|
|
40
|
-
"@vaadin/grid": "22.0.
|
|
41
|
-
"@vaadin/grid-pro": "22.0.
|
|
42
|
-
"@vaadin/testing-helpers": "^0.3.
|
|
39
|
+
"@vaadin/checkbox": "^22.0.2",
|
|
40
|
+
"@vaadin/grid": "^22.0.2",
|
|
41
|
+
"@vaadin/grid-pro": "^22.0.2",
|
|
42
|
+
"@vaadin/testing-helpers": "^0.3.2",
|
|
43
43
|
"sinon": "^9.2.4"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "df21370c4a655a38eac11f79686021ab3b0887ad"
|
|
46
46
|
}
|
|
@@ -101,6 +101,10 @@ export class Templatizer extends PolymerElement {
|
|
|
101
101
|
}, {});
|
|
102
102
|
|
|
103
103
|
this.__TemplateClass = templatize(this.__template, this, {
|
|
104
|
+
// Events handled by declarative event listeners
|
|
105
|
+
// (`on-event="handler"`) will be decorated with a `model` property pointing
|
|
106
|
+
// to the template instance that stamped it.
|
|
107
|
+
parentModel: true,
|
|
104
108
|
// This property prevents the template instance properties
|
|
105
109
|
// from passing into the `forwardHostProp` callback
|
|
106
110
|
instanceProps,
|