@vaadin/avatar 22.0.14 → 22.0.15

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/avatar",
3
- "version": "22.0.14",
3
+ "version": "22.0.15",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -36,18 +36,18 @@
36
36
  "@polymer/iron-a11y-announcer": "^3.0.0",
37
37
  "@polymer/iron-resizable-behavior": "^3.0.0",
38
38
  "@polymer/polymer": "^3.0.0",
39
- "@vaadin/component-base": "^22.0.14",
40
- "@vaadin/item": "^22.0.14",
41
- "@vaadin/list-box": "^22.0.14",
42
- "@vaadin/vaadin-lumo-styles": "^22.0.14",
43
- "@vaadin/vaadin-material-styles": "^22.0.14",
44
- "@vaadin/vaadin-overlay": "^22.0.14",
45
- "@vaadin/vaadin-themable-mixin": "^22.0.14"
39
+ "@vaadin/component-base": "^22.0.15",
40
+ "@vaadin/item": "^22.0.15",
41
+ "@vaadin/list-box": "^22.0.15",
42
+ "@vaadin/vaadin-lumo-styles": "^22.0.15",
43
+ "@vaadin/vaadin-material-styles": "^22.0.15",
44
+ "@vaadin/vaadin-overlay": "^22.0.15",
45
+ "@vaadin/vaadin-themable-mixin": "^22.0.15"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@esm-bundle/chai": "^4.3.4",
49
49
  "@vaadin/testing-helpers": "^0.3.2",
50
50
  "sinon": "^9.2.1"
51
51
  },
52
- "gitHead": "62419e3f8f41fe9dc4f0bce5e1717b16828459b6"
52
+ "gitHead": "bba021b56ba45da93d2bb980242956ad929ecfe2"
53
53
  }
@@ -136,7 +136,7 @@ class Avatar extends FocusMixin(ElementMixin(ThemableMixin(PolymerElement))) {
136
136
  img: {
137
137
  type: String,
138
138
  reflectToAttribute: true,
139
- observer: '__imgChanged'
139
+ observer: '__imgChanged',
140
140
  },
141
141
 
142
142
  /**
@@ -145,7 +145,7 @@ class Avatar extends FocusMixin(ElementMixin(ThemableMixin(PolymerElement))) {
145
145
  */
146
146
  abbr: {
147
147
  type: String,
148
- reflectToAttribute: true
148
+ reflectToAttribute: true,
149
149
  },
150
150
 
151
151
  /**
@@ -154,7 +154,7 @@ class Avatar extends FocusMixin(ElementMixin(ThemableMixin(PolymerElement))) {
154
154
  */
155
155
  name: {
156
156
  type: String,
157
- reflectToAttribute: true
157
+ reflectToAttribute: true,
158
158
  },
159
159
 
160
160
  /**
@@ -162,7 +162,7 @@ class Avatar extends FocusMixin(ElementMixin(ThemableMixin(PolymerElement))) {
162
162
  */
163
163
  colorIndex: {
164
164
  type: Number,
165
- observer: '__colorIndexChanged'
165
+ observer: '__colorIndexChanged',
166
166
  },
167
167
 
168
168
  /**
@@ -182,9 +182,9 @@ class Avatar extends FocusMixin(ElementMixin(ThemableMixin(PolymerElement))) {
182
182
  type: Object,
183
183
  value: () => {
184
184
  return {
185
- anonymous: 'anonymous'
185
+ anonymous: 'anonymous',
186
186
  };
187
- }
187
+ },
188
188
  },
189
189
 
190
190
  /** @private */
@@ -194,7 +194,7 @@ class Avatar extends FocusMixin(ElementMixin(ThemableMixin(PolymerElement))) {
194
194
  __iconVisible: Boolean,
195
195
 
196
196
  /** @private */
197
- __abbrVisible: Boolean
197
+ __abbrVisible: Boolean,
198
198
  };
199
199
  }
200
200
 
@@ -72,5 +72,5 @@ registerStyles(
72
72
  --vaadin-avatar-size: var(--lumo-size-xs);
73
73
  }
74
74
  `,
75
- { moduleId: 'lumo-avatar' }
75
+ { moduleId: 'lumo-avatar' },
76
76
  );
@@ -37,5 +37,5 @@ registerStyles(
37
37
  font-weight: 500;
38
38
  }
39
39
  `,
40
- { moduleId: 'material-avatar' }
40
+ { moduleId: 'material-avatar' },
41
41
  );