@vaadin/icon 23.1.0-rc1 → 23.1.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 +5 -5
- package/src/vaadin-icon.js +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/icon",
|
|
3
|
-
"version": "23.1.0
|
|
3
|
+
"version": "23.1.0",
|
|
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
|
|
37
|
-
"@vaadin/vaadin-lumo-styles": "23.1.0
|
|
38
|
-
"@vaadin/vaadin-themable-mixin": "23.1.0
|
|
36
|
+
"@vaadin/component-base": "^23.1.0",
|
|
37
|
+
"@vaadin/vaadin-lumo-styles": "^23.1.0",
|
|
38
|
+
"@vaadin/vaadin-themable-mixin": "^23.1.0",
|
|
39
39
|
"lit": "^2.0.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@vaadin/testing-helpers": "^0.3.2"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "322bba42b83f908a78cd972b06acadc5da95a69d"
|
|
45
45
|
}
|
package/src/vaadin-icon.js
CHANGED
|
@@ -163,11 +163,13 @@ class Icon extends ThemableMixin(ElementMixin(PolymerElement)) {
|
|
|
163
163
|
}
|
|
164
164
|
}
|
|
165
165
|
|
|
166
|
+
/** @protected */
|
|
166
167
|
connectedCallback() {
|
|
167
168
|
super.connectedCallback();
|
|
168
169
|
document.addEventListener('vaadin-iconset-registered', this.__onIconsetRegistered);
|
|
169
170
|
}
|
|
170
171
|
|
|
172
|
+
/** @protected */
|
|
171
173
|
disconnectedCallback() {
|
|
172
174
|
super.disconnectedCallback();
|
|
173
175
|
document.removeEventListener('vaadin-iconset-registered', this.__onIconsetRegistered);
|