@vaadin/details 23.1.0-rc2 → 23.1.1
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 +7 -7
- package/src/vaadin-details.js +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/details",
|
|
3
|
-
"version": "23.1.
|
|
3
|
+
"version": "23.1.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,16 +34,16 @@
|
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@polymer/polymer": "^3.0.0",
|
|
37
|
-
"@vaadin/component-base": "23.1.
|
|
38
|
-
"@vaadin/field-base": "23.1.
|
|
39
|
-
"@vaadin/vaadin-lumo-styles": "23.1.
|
|
40
|
-
"@vaadin/vaadin-material-styles": "23.1.
|
|
41
|
-
"@vaadin/vaadin-themable-mixin": "23.1.
|
|
37
|
+
"@vaadin/component-base": "^23.1.1",
|
|
38
|
+
"@vaadin/field-base": "^23.1.1",
|
|
39
|
+
"@vaadin/vaadin-lumo-styles": "^23.1.1",
|
|
40
|
+
"@vaadin/vaadin-material-styles": "^23.1.1",
|
|
41
|
+
"@vaadin/vaadin-themable-mixin": "^23.1.1"
|
|
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": "
|
|
48
|
+
"gitHead": "390458d6519433a2dd502cef90da48e84573a275"
|
|
49
49
|
}
|
package/src/vaadin-details.js
CHANGED
|
@@ -131,6 +131,7 @@ class Details extends ShadowFocusMixin(ElementMixin(ThemableMixin(PolymerElement
|
|
|
131
131
|
return this.shadowRoot.querySelector('[part="summary"]');
|
|
132
132
|
}
|
|
133
133
|
|
|
134
|
+
/** @protected */
|
|
134
135
|
ready() {
|
|
135
136
|
super.ready();
|
|
136
137
|
const uniqueId = (Details._uniqueId = 1 + Details._uniqueId || 0);
|