@vaadin/list-box 24.9.0-alpha1 → 24.9.0-beta1

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/list-box",
3
- "version": "24.9.0-alpha1",
3
+ "version": "24.9.0-beta1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -37,17 +37,17 @@
37
37
  "dependencies": {
38
38
  "@open-wc/dedupe-mixin": "^1.3.0",
39
39
  "@polymer/polymer": "^3.0.0",
40
- "@vaadin/a11y-base": "24.9.0-alpha1",
41
- "@vaadin/component-base": "24.9.0-alpha1",
42
- "@vaadin/item": "24.9.0-alpha1",
43
- "@vaadin/vaadin-lumo-styles": "24.9.0-alpha1",
44
- "@vaadin/vaadin-material-styles": "24.9.0-alpha1",
45
- "@vaadin/vaadin-themable-mixin": "24.9.0-alpha1",
40
+ "@vaadin/a11y-base": "24.9.0-beta1",
41
+ "@vaadin/component-base": "24.9.0-beta1",
42
+ "@vaadin/item": "24.9.0-beta1",
43
+ "@vaadin/vaadin-lumo-styles": "24.9.0-beta1",
44
+ "@vaadin/vaadin-material-styles": "24.9.0-beta1",
45
+ "@vaadin/vaadin-themable-mixin": "24.9.0-beta1",
46
46
  "lit": "^3.0.0"
47
47
  },
48
48
  "devDependencies": {
49
- "@vaadin/chai-plugins": "24.9.0-alpha1",
50
- "@vaadin/test-runner-commands": "24.9.0-alpha1",
49
+ "@vaadin/chai-plugins": "24.9.0-beta1",
50
+ "@vaadin/test-runner-commands": "24.9.0-beta1",
51
51
  "@vaadin/testing-helpers": "^1.1.0",
52
52
  "sinon": "^18.0.0"
53
53
  },
@@ -55,5 +55,5 @@
55
55
  "web-types.json",
56
56
  "web-types.lit.json"
57
57
  ],
58
- "gitHead": "cc13d59f0e3cd1a3b0c19c1a900a5308446fe7ac"
58
+ "gitHead": "5f6e6e33217fef06e5d5cc52baa4d760969ef1e4"
59
59
  }
@@ -53,6 +53,12 @@ export interface ListBoxEventMap extends HTMLElementEventMap, ListBoxCustomEvent
53
53
  * ------------------|------------------------
54
54
  * `items` | The items container
55
55
  *
56
+ * The following state attributes are available for styling:
57
+ *
58
+ * Attribute | Description
59
+ * ---------------|---------------------------------
60
+ * `has-tooltip` | Set when the element has a slotted tooltip
61
+ *
56
62
  * See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
57
63
  *
58
64
  * @fires {CustomEvent} items-changed - Fired when the `items` property changes.
@@ -34,6 +34,12 @@ registerStyles('vaadin-list-box', listBoxStyles, { moduleId: 'vaadin-list-box-st
34
34
  * ------------------|------------------------
35
35
  * `items` | The items container
36
36
  *
37
+ * The following state attributes are available for styling:
38
+ *
39
+ * Attribute | Description
40
+ * ---------------|---------------------------------
41
+ * `has-tooltip` | Set when the element has a slotted tooltip
42
+ *
37
43
  * See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
38
44
  *
39
45
  * @fires {CustomEvent} items-changed - Fired when the `items` property changes.
package/web-types.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/list-box",
4
- "version": "24.9.0-alpha1",
4
+ "version": "24.9.0-beta1",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "elements": [
9
9
  {
10
10
  "name": "vaadin-list-box",
11
- "description": "`<vaadin-list-box>` is a Web Component for creating menus.\n\n```\n <vaadin-list-box selected=\"2\">\n <vaadin-item>Item 1</vaadin-item>\n <vaadin-item>Item 2</vaadin-item>\n <vaadin-item>Item 3</vaadin-item>\n <vaadin-item>Item 4</vaadin-item>\n </vaadin-list-box>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n------------------|------------------------\n`items` | The items container\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
11
+ "description": "`<vaadin-list-box>` is a Web Component for creating menus.\n\n```\n <vaadin-list-box selected=\"2\">\n <vaadin-item>Item 1</vaadin-item>\n <vaadin-item>Item 2</vaadin-item>\n <vaadin-item>Item 3</vaadin-item>\n <vaadin-item>Item 4</vaadin-item>\n </vaadin-list-box>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n------------------|------------------------\n`items` | The items container\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n---------------|---------------------------------\n`has-tooltip` | Set when the element has a slotted tooltip\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
12
12
  "attributes": [
13
13
  {
14
14
  "name": "disabled",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/list-box",
4
- "version": "24.9.0-alpha1",
4
+ "version": "24.9.0-beta1",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {
@@ -16,7 +16,7 @@
16
16
  "elements": [
17
17
  {
18
18
  "name": "vaadin-list-box",
19
- "description": "`<vaadin-list-box>` is a Web Component for creating menus.\n\n```\n <vaadin-list-box selected=\"2\">\n <vaadin-item>Item 1</vaadin-item>\n <vaadin-item>Item 2</vaadin-item>\n <vaadin-item>Item 3</vaadin-item>\n <vaadin-item>Item 4</vaadin-item>\n </vaadin-list-box>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n------------------|------------------------\n`items` | The items container\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
19
+ "description": "`<vaadin-list-box>` is a Web Component for creating menus.\n\n```\n <vaadin-list-box selected=\"2\">\n <vaadin-item>Item 1</vaadin-item>\n <vaadin-item>Item 2</vaadin-item>\n <vaadin-item>Item 3</vaadin-item>\n <vaadin-item>Item 4</vaadin-item>\n </vaadin-list-box>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n------------------|------------------------\n`items` | The items container\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n---------------|---------------------------------\n`has-tooltip` | Set when the element has a slotted tooltip\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
20
20
  "extension": true,
21
21
  "attributes": [
22
22
  {