@vaadin/polymer-legacy-adapter 24.0.0-alpha6 → 24.0.0-alpha7

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.0.0-alpha6",
3
+ "version": "24.0.0-alpha7",
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.0.0-alpha6",
35
+ "@vaadin/vaadin-themable-mixin": "24.0.0-alpha7",
36
36
  "lit": "^2.0.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@esm-bundle/chai": "^4.3.4",
40
- "@vaadin/checkbox": "24.0.0-alpha6",
41
- "@vaadin/grid": "24.0.0-alpha6",
42
- "@vaadin/grid-pro": "24.0.0-alpha6",
40
+ "@vaadin/checkbox": "24.0.0-alpha7",
41
+ "@vaadin/grid": "24.0.0-alpha7",
42
+ "@vaadin/grid-pro": "24.0.0-alpha7",
43
43
  "@vaadin/testing-helpers": "^0.3.2",
44
44
  "sinon": "^13.0.2"
45
45
  },
46
- "gitHead": "0004ac92b6e5f415b5fa949e0582d1d11e527b1f"
46
+ "gitHead": "aeb4535336813636736759e0a5de148b26bfc3b6"
47
47
  }
@@ -97,7 +97,7 @@ function getAllThemes() {
97
97
  /** @type {DomModuleWithCachedStyles} */
98
98
  const module = modules[moduleId];
99
99
  const themeFor = module.getAttribute('theme-for');
100
- module.__allStyles = module.__allStyles || getModuleStyles(module).concat(module.__partialStyles || []);
100
+ module.__allStyles ||= getModuleStyles(module).concat(module.__partialStyles || []);
101
101
 
102
102
  return {
103
103
  themeFor,
@@ -107,7 +107,7 @@ function getAllThemes() {
107
107
  });
108
108
  }
109
109
 
110
- window.Vaadin = window.Vaadin || {};
110
+ window.Vaadin ||= {};
111
111
  window.Vaadin.styleModules = {
112
112
  getAllThemes,
113
113
  registerStyles,
@@ -123,7 +123,7 @@ function observeTemplates(component) {
123
123
  /**
124
124
  * Public API
125
125
  */
126
- window.Vaadin = window.Vaadin || {};
126
+ window.Vaadin ||= {};
127
127
  window.Vaadin.templateRendererCallback = (component) => {
128
128
  processTemplates(component);
129
129
  observeTemplates(component);