@vaadin/overlay 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 +9 -9
- package/src/vaadin-overlay.d.ts +4 -4
- package/src/vaadin-overlay.js +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/overlay",
|
|
3
|
-
"version": "24.9.0-
|
|
3
|
+
"version": "24.9.0-beta1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,18 +36,18 @@
|
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
38
38
|
"@polymer/polymer": "^3.0.0",
|
|
39
|
-
"@vaadin/a11y-base": "24.9.0-
|
|
40
|
-
"@vaadin/component-base": "24.9.0-
|
|
41
|
-
"@vaadin/vaadin-lumo-styles": "24.9.0-
|
|
42
|
-
"@vaadin/vaadin-material-styles": "24.9.0-
|
|
43
|
-
"@vaadin/vaadin-themable-mixin": "24.9.0-
|
|
39
|
+
"@vaadin/a11y-base": "24.9.0-beta1",
|
|
40
|
+
"@vaadin/component-base": "24.9.0-beta1",
|
|
41
|
+
"@vaadin/vaadin-lumo-styles": "24.9.0-beta1",
|
|
42
|
+
"@vaadin/vaadin-material-styles": "24.9.0-beta1",
|
|
43
|
+
"@vaadin/vaadin-themable-mixin": "24.9.0-beta1",
|
|
44
44
|
"lit": "^3.0.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@vaadin/chai-plugins": "24.9.0-
|
|
48
|
-
"@vaadin/test-runner-commands": "24.9.0-
|
|
47
|
+
"@vaadin/chai-plugins": "24.9.0-beta1",
|
|
48
|
+
"@vaadin/test-runner-commands": "24.9.0-beta1",
|
|
49
49
|
"@vaadin/testing-helpers": "^1.1.0",
|
|
50
50
|
"sinon": "^18.0.0"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "5f6e6e33217fef06e5d5cc52baa4d760969ef1e4"
|
|
53
53
|
}
|
package/src/vaadin-overlay.d.ts
CHANGED
|
@@ -98,10 +98,10 @@ export type OverlayEventMap = HTMLElementEventMap & OverlayCustomEventMap;
|
|
|
98
98
|
*
|
|
99
99
|
* The following state attributes are available for styling:
|
|
100
100
|
*
|
|
101
|
-
* Attribute | Description
|
|
102
|
-
*
|
|
103
|
-
* `opening` | Applied just after the overlay is
|
|
104
|
-
* `closing` | Applied just before the overlay is
|
|
101
|
+
* Attribute | Description
|
|
102
|
+
* ----------|------------
|
|
103
|
+
* `opening` | Applied just after the overlay is opened. You can apply a CSS animation for this state.
|
|
104
|
+
* `closing` | Applied just before the overlay is closed. You can apply a CSS animation for this state.
|
|
105
105
|
*
|
|
106
106
|
* The following custom CSS properties are available for styling:
|
|
107
107
|
*
|
package/src/vaadin-overlay.js
CHANGED
|
@@ -51,10 +51,10 @@ registerStyles('vaadin-overlay', overlayStyles, { moduleId: 'vaadin-overlay-styl
|
|
|
51
51
|
*
|
|
52
52
|
* The following state attributes are available for styling:
|
|
53
53
|
*
|
|
54
|
-
* Attribute | Description
|
|
55
|
-
*
|
|
56
|
-
* `opening` | Applied just after the overlay is
|
|
57
|
-
* `closing` | Applied just before the overlay is
|
|
54
|
+
* Attribute | Description
|
|
55
|
+
* ----------|------------
|
|
56
|
+
* `opening` | Applied just after the overlay is opened. You can apply a CSS animation for this state.
|
|
57
|
+
* `closing` | Applied just before the overlay is closed. You can apply a CSS animation for this state.
|
|
58
58
|
*
|
|
59
59
|
* The following custom CSS properties are available for styling:
|
|
60
60
|
*
|