@vaadin/polymer-legacy-adapter 22.0.14 → 22.0.17

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.14",
3
+ "version": "22.0.17",
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.14",
34
+ "@vaadin/vaadin-themable-mixin": "^22.0.17",
35
35
  "lit": "^2.0.0"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@esm-bundle/chai": "^4.3.4",
39
- "@vaadin/checkbox": "^22.0.14",
40
- "@vaadin/grid": "^22.0.14",
41
- "@vaadin/grid-pro": "^22.0.14",
39
+ "@vaadin/checkbox": "^22.0.17",
40
+ "@vaadin/grid": "^22.0.17",
41
+ "@vaadin/grid-pro": "^22.0.17",
42
42
  "@vaadin/testing-helpers": "^0.3.2",
43
43
  "sinon": "^9.2.4"
44
44
  },
45
- "gitHead": "62419e3f8f41fe9dc4f0bce5e1717b16828459b6"
45
+ "gitHead": "4ba77c19889036fb954052cf1f32bc96089fcc25"
46
46
  }
@@ -101,7 +101,7 @@ function getAllThemes() {
101
101
  return {
102
102
  themeFor,
103
103
  moduleId,
104
- styles: module.__allStyles
104
+ styles: module.__allStyles,
105
105
  };
106
106
  });
107
107
  }
@@ -109,7 +109,7 @@ function getAllThemes() {
109
109
  window.Vaadin = window.Vaadin || {};
110
110
  window.Vaadin.styleModules = {
111
111
  getAllThemes,
112
- registerStyles
112
+ registerStyles,
113
113
  };
114
114
 
115
115
  // Convert any existing themes from the themable-mixin's themeRegistry to the style modules format
@@ -117,7 +117,7 @@ if (themeRegistry && themeRegistry.length > 0) {
117
117
  themeRegistry.forEach((theme) => {
118
118
  registerStyles(theme.themeFor, theme.styles, {
119
119
  moduleId: theme.moduleId,
120
- include: theme.include
120
+ include: theme.include,
121
121
  });
122
122
  });
123
123
  // Clear the themeRegistry
@@ -135,7 +135,7 @@ export class Templatizer extends PolymerElement {
135
135
  if (this[callback]) {
136
136
  this[callback](instance, path, value);
137
137
  }
138
- }
138
+ },
139
139
  });
140
140
  }
141
141
  }
@@ -42,7 +42,7 @@ function showTemplateWarning(component) {
42
42
  }
43
43
 
44
44
  console.warn(
45
- `WARNING: <template> inside <${component.localName}> is deprecated. Use a renderer function instead (see https://vaad.in/template-renderer)`
45
+ `WARNING: <template> inside <${component.localName}> is deprecated. Use a renderer function instead (see https://vaad.in/template-renderer)`,
46
46
  );
47
47
 
48
48
  component.__suppressTemplateWarning = true;