@vaadin/details 24.9.0-alpha2 → 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/details",
3
- "version": "24.9.0-alpha2",
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-alpha2",
41
- "@vaadin/button": "24.9.0-alpha2",
42
- "@vaadin/component-base": "24.9.0-alpha2",
43
- "@vaadin/vaadin-lumo-styles": "24.9.0-alpha2",
44
- "@vaadin/vaadin-material-styles": "24.9.0-alpha2",
45
- "@vaadin/vaadin-themable-mixin": "24.9.0-alpha2",
40
+ "@vaadin/a11y-base": "24.9.0-beta1",
41
+ "@vaadin/button": "24.9.0-beta1",
42
+ "@vaadin/component-base": "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-alpha2",
50
- "@vaadin/test-runner-commands": "24.9.0-alpha2",
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": "dd99dece1b54942ab0e421892b089e506822c5f5"
58
+ "gitHead": "5f6e6e33217fef06e5d5cc52baa4d760969ef1e4"
59
59
  }
@@ -40,14 +40,15 @@ export type DetailsEventMap = DetailsCustomEventMap & HTMLElementEventMap;
40
40
  * -----------------|----------------
41
41
  * `content` | The wrapper for the collapsible details content.
42
42
  *
43
- * The following attributes are exposed for styling:
43
+ * The following state attributes are available for styling:
44
44
  *
45
- * Attribute | Description
46
- * -------------| -----------
47
- * `opened` | Set when the collapsible content is expanded and visible.
48
- * `disabled` | Set when the element is disabled.
49
- * `focus-ring` | Set when the element is focused using the keyboard.
50
- * `focused` | Set when the element is focused.
45
+ * Attribute | Description
46
+ * ---------------|------------
47
+ * `opened` | Set when the collapsible content is expanded and visible
48
+ * `disabled` | Set when the element is disabled
49
+ * `focus-ring` | Set when the element is focused using the keyboard
50
+ * `focused` | Set when the element is focused
51
+ * `has-tooltip` | Set when the element has a slotted tooltip
51
52
  *
52
53
  * See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
53
54
  *
@@ -32,14 +32,15 @@ import { DetailsBaseMixin } from './vaadin-details-base-mixin.js';
32
32
  * -----------------|----------------
33
33
  * `content` | The wrapper for the collapsible details content.
34
34
  *
35
- * The following attributes are exposed for styling:
35
+ * The following state attributes are available for styling:
36
36
  *
37
- * Attribute | Description
38
- * -------------| -----------
39
- * `opened` | Set when the collapsible content is expanded and visible.
40
- * `disabled` | Set when the element is disabled.
41
- * `focus-ring` | Set when the element is focused using the keyboard.
42
- * `focused` | Set when the element is focused.
37
+ * Attribute | Description
38
+ * ---------------|------------
39
+ * `opened` | Set when the collapsible content is expanded and visible
40
+ * `disabled` | Set when the element is disabled
41
+ * `focus-ring` | Set when the element is focused using the keyboard
42
+ * `focused` | Set when the element is focused
43
+ * `has-tooltip` | Set when the element has a slotted tooltip
43
44
  *
44
45
  * See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
45
46
  *
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/details",
4
- "version": "24.9.0-alpha2",
4
+ "version": "24.9.0-beta1",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -74,7 +74,7 @@
74
74
  },
75
75
  {
76
76
  "name": "vaadin-details",
77
- "description": "`<vaadin-details>` is a Web Component which the creates an\nexpandable panel similar to `<details>` HTML element.\n\n```\n<vaadin-details>\n <vaadin-details-summary slot=\"summary\">Expandable Details</vaadin-details-summary>\n <div>\n Toggle using mouse, Enter and Space keys.\n </div>\n</vaadin-details>\n```\n\n### Styling\n\nThe following shadow DOM parts are exposed for styling:\n\nPart name | Description\n-----------------|----------------\n`content` | The wrapper for the collapsible details content.\n\nThe following attributes are exposed for styling:\n\nAttribute | Description\n-------------| -----------\n`opened` | Set when the collapsible content is expanded and visible.\n`disabled` | Set when the element is disabled.\n`focus-ring` | Set when the element is focused using the keyboard.\n`focused` | Set when the element is focused.\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
77
+ "description": "`<vaadin-details>` is a Web Component which the creates an\nexpandable panel similar to `<details>` HTML element.\n\n```\n<vaadin-details>\n <vaadin-details-summary slot=\"summary\">Expandable Details</vaadin-details-summary>\n <div>\n Toggle using mouse, Enter and Space keys.\n </div>\n</vaadin-details>\n```\n\n### Styling\n\nThe following shadow DOM parts are exposed for styling:\n\nPart name | Description\n-----------------|----------------\n`content` | The wrapper for the collapsible details content.\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n---------------|------------\n`opened` | Set when the collapsible content is expanded and visible\n`disabled` | Set when the element is disabled\n`focus-ring` | Set when the element is focused using the keyboard\n`focused` | Set when the element is focused\n`has-tooltip` | Set when the element has a slotted tooltip\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
78
78
  "attributes": [
79
79
  {
80
80
  "name": "disabled",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/details",
4
- "version": "24.9.0-alpha2",
4
+ "version": "24.9.0-beta1",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {
@@ -37,7 +37,7 @@
37
37
  },
38
38
  {
39
39
  "name": "vaadin-details",
40
- "description": "`<vaadin-details>` is a Web Component which the creates an\nexpandable panel similar to `<details>` HTML element.\n\n```\n<vaadin-details>\n <vaadin-details-summary slot=\"summary\">Expandable Details</vaadin-details-summary>\n <div>\n Toggle using mouse, Enter and Space keys.\n </div>\n</vaadin-details>\n```\n\n### Styling\n\nThe following shadow DOM parts are exposed for styling:\n\nPart name | Description\n-----------------|----------------\n`content` | The wrapper for the collapsible details content.\n\nThe following attributes are exposed for styling:\n\nAttribute | Description\n-------------| -----------\n`opened` | Set when the collapsible content is expanded and visible.\n`disabled` | Set when the element is disabled.\n`focus-ring` | Set when the element is focused using the keyboard.\n`focused` | Set when the element is focused.\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
40
+ "description": "`<vaadin-details>` is a Web Component which the creates an\nexpandable panel similar to `<details>` HTML element.\n\n```\n<vaadin-details>\n <vaadin-details-summary slot=\"summary\">Expandable Details</vaadin-details-summary>\n <div>\n Toggle using mouse, Enter and Space keys.\n </div>\n</vaadin-details>\n```\n\n### Styling\n\nThe following shadow DOM parts are exposed for styling:\n\nPart name | Description\n-----------------|----------------\n`content` | The wrapper for the collapsible details content.\n\nThe following state attributes are available for styling:\n\nAttribute | Description\n---------------|------------\n`opened` | Set when the collapsible content is expanded and visible\n`disabled` | Set when the element is disabled\n`focus-ring` | Set when the element is focused using the keyboard\n`focused` | Set when the element is focused\n`has-tooltip` | Set when the element has a slotted tooltip\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
41
41
  "extension": true,
42
42
  "attributes": [
43
43
  {