@vaadin/item 23.0.9 → 23.0.12

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/item",
3
- "version": "23.0.9",
3
+ "version": "23.0.12",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,15 +35,15 @@
35
35
  "dependencies": {
36
36
  "@open-wc/dedupe-mixin": "^1.3.0",
37
37
  "@polymer/polymer": "^3.0.0",
38
- "@vaadin/component-base": "^23.0.9",
39
- "@vaadin/vaadin-lumo-styles": "^23.0.9",
40
- "@vaadin/vaadin-material-styles": "^23.0.9",
41
- "@vaadin/vaadin-themable-mixin": "^23.0.9"
38
+ "@vaadin/component-base": "^23.0.12",
39
+ "@vaadin/vaadin-lumo-styles": "^23.0.12",
40
+ "@vaadin/vaadin-material-styles": "^23.0.12",
41
+ "@vaadin/vaadin-themable-mixin": "^23.0.12"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@esm-bundle/chai": "^4.3.4",
45
45
  "@vaadin/testing-helpers": "^0.3.2",
46
46
  "sinon": "^9.2.1"
47
47
  },
48
- "gitHead": "4d687bdd48ba78d55f3371a78b70818e4dfca1a3"
48
+ "gitHead": "717908c222c1e241259e30b4144cd5ba32734819"
49
49
  }
@@ -14,7 +14,7 @@ import { FocusMixinClass } from '@vaadin/component-base/src/focus-mixin.js';
14
14
  * `focused`, `active` and `focus-ring` are set as only as attributes.
15
15
  */
16
16
  export declare function ItemMixin<T extends Constructor<HTMLElement>>(
17
- base: T
17
+ base: T,
18
18
  ): T &
19
19
  Constructor<ItemMixinClass> &
20
20
  Constructor<ActiveMixinClass> &
@@ -23,7 +23,7 @@ export const ItemMixin = (superClass) =>
23
23
  * @type {boolean}
24
24
  */
25
25
  _hasVaadinItemMixin: {
26
- value: true
26
+ value: true,
27
27
  },
28
28
 
29
29
  /**
@@ -34,11 +34,11 @@ export const ItemMixin = (superClass) =>
34
34
  type: Boolean,
35
35
  value: false,
36
36
  reflectToAttribute: true,
37
- observer: '_selectedChanged'
37
+ observer: '_selectedChanged',
38
38
  },
39
39
 
40
40
  /** @private */
41
- _value: String
41
+ _value: String,
42
42
  };
43
43
  }
44
44