@vaadin/icon 23.0.9 → 23.0.10
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.0.
|
|
3
|
+
"version": "23.0.10",
|
|
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.0.
|
|
37
|
-
"@vaadin/vaadin-lumo-styles": "^23.0.
|
|
38
|
-
"@vaadin/vaadin-themable-mixin": "^23.0.
|
|
36
|
+
"@vaadin/component-base": "^23.0.10",
|
|
37
|
+
"@vaadin/vaadin-lumo-styles": "^23.0.10",
|
|
38
|
+
"@vaadin/vaadin-themable-mixin": "^23.0.10",
|
|
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": "e8402a55ce0e823ae6da5c97486998cfd931b1d3"
|
|
45
45
|
}
|
package/src/vaadin-icon.js
CHANGED
|
@@ -108,14 +108,14 @@ class Icon extends ThemableMixin(ElementMixin(PolymerElement)) {
|
|
|
108
108
|
*/
|
|
109
109
|
icon: {
|
|
110
110
|
type: String,
|
|
111
|
-
observer: '__iconChanged'
|
|
111
|
+
observer: '__iconChanged',
|
|
112
112
|
},
|
|
113
113
|
|
|
114
114
|
/**
|
|
115
115
|
* The SVG icon wrapped in a Lit template literal.
|
|
116
116
|
*/
|
|
117
117
|
svg: {
|
|
118
|
-
type: Object
|
|
118
|
+
type: Object,
|
|
119
119
|
},
|
|
120
120
|
|
|
121
121
|
/**
|
|
@@ -123,11 +123,11 @@ class Icon extends ThemableMixin(ElementMixin(PolymerElement)) {
|
|
|
123
123
|
*/
|
|
124
124
|
size: {
|
|
125
125
|
type: Number,
|
|
126
|
-
value: 24
|
|
126
|
+
value: 24,
|
|
127
127
|
},
|
|
128
128
|
|
|
129
129
|
/** @private */
|
|
130
|
-
__svgElement: Object
|
|
130
|
+
__svgElement: Object,
|
|
131
131
|
};
|
|
132
132
|
}
|
|
133
133
|
|
|
@@ -196,7 +196,7 @@ class Icon extends ThemableMixin(ElementMixin(PolymerElement)) {
|
|
|
196
196
|
'vaadin:funcion': 'vaadin:function',
|
|
197
197
|
'vaadin:megafone': 'vaadin:megaphone',
|
|
198
198
|
'vaadin:palete': 'vaadin:palette',
|
|
199
|
-
'vaadin:trendind-down': 'vaadin:trending-down'
|
|
199
|
+
'vaadin:trendind-down': 'vaadin:trending-down',
|
|
200
200
|
};
|
|
201
201
|
if (icon in deprecatedIcons) {
|
|
202
202
|
console.warn(`WARNING: The icon "${icon}" is deprecated. Use "${deprecatedIcons[icon]}" instead`);
|
package/src/vaadin-iconset.js
CHANGED
|
@@ -34,7 +34,7 @@ class Iconset extends ElementMixin(PolymerElement) {
|
|
|
34
34
|
*/
|
|
35
35
|
name: {
|
|
36
36
|
type: String,
|
|
37
|
-
observer: '__nameChanged'
|
|
37
|
+
observer: '__nameChanged',
|
|
38
38
|
},
|
|
39
39
|
|
|
40
40
|
/**
|
|
@@ -45,8 +45,8 @@ class Iconset extends ElementMixin(PolymerElement) {
|
|
|
45
45
|
*/
|
|
46
46
|
size: {
|
|
47
47
|
type: Number,
|
|
48
|
-
value: 24
|
|
49
|
-
}
|
|
48
|
+
value: 24,
|
|
49
|
+
},
|
|
50
50
|
};
|
|
51
51
|
}
|
|
52
52
|
|