@vaadin/icon 23.1.0-beta1 → 23.1.0-beta4

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/icon",
3
- "version": "23.1.0-beta1",
3
+ "version": "23.1.0-beta4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -33,13 +33,13 @@
33
33
  ],
34
34
  "dependencies": {
35
35
  "@polymer/polymer": "^3.0.0",
36
- "@vaadin/component-base": "23.1.0-beta1",
37
- "@vaadin/vaadin-lumo-styles": "23.1.0-beta1",
38
- "@vaadin/vaadin-themable-mixin": "23.1.0-beta1",
36
+ "@vaadin/component-base": "23.1.0-beta4",
37
+ "@vaadin/vaadin-lumo-styles": "23.1.0-beta4",
38
+ "@vaadin/vaadin-themable-mixin": "23.1.0-beta4",
39
39
  "lit": "^2.0.0"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@vaadin/testing-helpers": "^0.3.2"
43
43
  },
44
- "gitHead": "8be43cf83102a6b9ccf309687446e590ce0164e8"
44
+ "gitHead": "06e283473964ecb3085aacf3eddb5333d052a045"
45
45
  }
@@ -79,7 +79,7 @@ class Iconset extends ElementMixin(PolymerElement) {
79
79
  * @param {string} name
80
80
  */
81
81
  applyIcon(name) {
82
- // create the icon map on-demand, since the iconset itself has no discrete
82
+ // Create the icon map on-demand, since the iconset itself has no discrete
83
83
  // signal to know when it's children are fully parsed
84
84
  this._icons = this._icons || this.__createIconMap();
85
85
  return { svg: cloneSvgNode(this._icons[this.__getIconId(name)]), size: this.size };