@vaadin/component-base 24.6.0-rc1 → 24.6.0
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 +3 -3
- package/src/define.js +1 -1
- package/src/polylit-mixin.js +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/component-base",
|
|
3
|
-
"version": "24.6.0
|
|
3
|
+
"version": "24.6.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"lit": "^3.0.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@vaadin/chai-plugins": "24.6.0
|
|
41
|
+
"@vaadin/chai-plugins": "~24.6.0",
|
|
42
42
|
"@vaadin/testing-helpers": "^1.0.0",
|
|
43
43
|
"sinon": "^18.0.0"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "c0b38aa981494d04fac64da35aa3890ad72551ea"
|
|
46
46
|
}
|
package/src/define.js
CHANGED
|
@@ -13,7 +13,7 @@ function dashToCamelCase(dash) {
|
|
|
13
13
|
|
|
14
14
|
const experimentalMap = {};
|
|
15
15
|
|
|
16
|
-
export function defineCustomElement(CustomElement, version = '24.6.0
|
|
16
|
+
export function defineCustomElement(CustomElement, version = '24.6.0') {
|
|
17
17
|
Object.defineProperty(CustomElement, 'version', {
|
|
18
18
|
get() {
|
|
19
19
|
return version;
|
package/src/polylit-mixin.js
CHANGED
|
@@ -220,14 +220,14 @@ const PolylitMixinImplementation = (superclass) => {
|
|
|
220
220
|
this.__runObservers(props, this.constructor.__observers);
|
|
221
221
|
}
|
|
222
222
|
|
|
223
|
-
if (this.__dynamicPropertyObservers) {
|
|
224
|
-
this.__runDynamicObservers(props, this.__dynamicPropertyObservers);
|
|
225
|
-
}
|
|
226
|
-
|
|
227
223
|
if (this.constructor.__complexObservers) {
|
|
228
224
|
this.__runComplexObservers(props, this.constructor.__complexObservers);
|
|
229
225
|
}
|
|
230
226
|
|
|
227
|
+
if (this.__dynamicPropertyObservers) {
|
|
228
|
+
this.__runDynamicObservers(props, this.__dynamicPropertyObservers);
|
|
229
|
+
}
|
|
230
|
+
|
|
231
231
|
if (this.__dynamicMethodObservers) {
|
|
232
232
|
this.__runComplexObservers(props, this.__dynamicMethodObservers);
|
|
233
233
|
}
|