@vaadin/item 23.1.0-beta4 → 23.1.0-rc1

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.1.0-beta4",
3
+ "version": "23.1.0-rc1",
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.1.0-beta4",
39
- "@vaadin/vaadin-lumo-styles": "23.1.0-beta4",
40
- "@vaadin/vaadin-material-styles": "23.1.0-beta4",
41
- "@vaadin/vaadin-themable-mixin": "23.1.0-beta4"
38
+ "@vaadin/component-base": "23.1.0-rc1",
39
+ "@vaadin/vaadin-lumo-styles": "23.1.0-rc1",
40
+ "@vaadin/vaadin-material-styles": "23.1.0-rc1",
41
+ "@vaadin/vaadin-themable-mixin": "23.1.0-rc1"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@esm-bundle/chai": "^4.3.4",
45
45
  "@vaadin/testing-helpers": "^0.3.2",
46
46
  "sinon": "^13.0.2"
47
47
  },
48
- "gitHead": "06e283473964ecb3085aacf3eddb5333d052a045"
48
+ "gitHead": "5ecb85e16e938df827fefca4bd2a665a1e29913e"
49
49
  }
@@ -24,15 +24,15 @@ export declare function ItemMixin<T extends Constructor<HTMLElement>>(
24
24
  export declare class ItemMixinClass {
25
25
  value: string;
26
26
 
27
+ /**
28
+ * If true, the item is in selected state.
29
+ */
30
+ selected: boolean;
31
+
27
32
  /**
28
33
  * Used for mixin detection because `instanceof` does not work with mixins.
29
34
  * e.g. in VaadinListMixin it filters items by using the
30
35
  * `element._hasVaadinItemMixin` condition.
31
36
  */
32
37
  protected _hasVaadinItemMixin: boolean;
33
-
34
- /**
35
- * If true, the item is in selected state.
36
- */
37
- selected: boolean;
38
38
  }