@vaadin/popover 25.2.0-alpha10 → 25.2.0-alpha11
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 +11 -11
- package/src/vaadin-popover-overlay-mixin.js +0 -4
- package/src/vaadin-popover-overlay.js +0 -3
- package/src/vaadin-popover-position-mixin.js +0 -2
- package/src/vaadin-popover-target-mixin.js +0 -2
- package/src/vaadin-popover.js +0 -4
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/popover",
|
|
3
|
-
"version": "25.2.0-
|
|
3
|
+
"version": "25.2.0-alpha11",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -37,19 +37,19 @@
|
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
40
|
-
"@vaadin/a11y-base": "25.2.0-
|
|
41
|
-
"@vaadin/component-base": "25.2.0-
|
|
42
|
-
"@vaadin/lit-renderer": "25.2.0-
|
|
43
|
-
"@vaadin/overlay": "25.2.0-
|
|
44
|
-
"@vaadin/vaadin-themable-mixin": "25.2.0-
|
|
40
|
+
"@vaadin/a11y-base": "25.2.0-alpha11",
|
|
41
|
+
"@vaadin/component-base": "25.2.0-alpha11",
|
|
42
|
+
"@vaadin/lit-renderer": "25.2.0-alpha11",
|
|
43
|
+
"@vaadin/overlay": "25.2.0-alpha11",
|
|
44
|
+
"@vaadin/vaadin-themable-mixin": "25.2.0-alpha11",
|
|
45
45
|
"lit": "^3.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@vaadin/aura": "25.2.0-
|
|
49
|
-
"@vaadin/chai-plugins": "25.2.0-
|
|
50
|
-
"@vaadin/test-runner-commands": "25.2.0-
|
|
48
|
+
"@vaadin/aura": "25.2.0-alpha11",
|
|
49
|
+
"@vaadin/chai-plugins": "25.2.0-alpha11",
|
|
50
|
+
"@vaadin/test-runner-commands": "25.2.0-alpha11",
|
|
51
51
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
52
|
-
"@vaadin/vaadin-lumo-styles": "25.2.0-
|
|
52
|
+
"@vaadin/vaadin-lumo-styles": "25.2.0-alpha11",
|
|
53
53
|
"sinon": "^21.0.2"
|
|
54
54
|
},
|
|
55
55
|
"customElements": "custom-elements.json",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"web-types.json",
|
|
58
58
|
"web-types.lit.json"
|
|
59
59
|
],
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "fdc37e932709f95491a027aeb2090911cb7528c6"
|
|
61
61
|
}
|
|
@@ -8,10 +8,6 @@ import { PositionMixin } from '@vaadin/overlay/src/vaadin-overlay-position-mixin
|
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
10
|
* A mixin providing common popover overlay functionality.
|
|
11
|
-
*
|
|
12
|
-
* @polymerMixin
|
|
13
|
-
* @mixes PositionMixin
|
|
14
|
-
* @mixes OverlayMixin
|
|
15
11
|
*/
|
|
16
12
|
export const PopoverOverlayMixin = (superClass) =>
|
|
17
13
|
class PopoverOverlayMixinClass extends PositionMixin(OverlayMixin(superClass)) {
|
|
@@ -18,9 +18,6 @@ import { PopoverOverlayMixin } from './vaadin-popover-overlay-mixin.js';
|
|
|
18
18
|
*
|
|
19
19
|
* @customElement vaadin-popover-overlay
|
|
20
20
|
* @extends HTMLElement
|
|
21
|
-
* @mixes DirMixin
|
|
22
|
-
* @mixes PopoverOverlayMixin
|
|
23
|
-
* @mixes ThemableMixin
|
|
24
21
|
* @private
|
|
25
22
|
*/
|
|
26
23
|
class PopoverOverlay extends PopoverOverlayMixin(
|
|
@@ -8,8 +8,6 @@ import { Debouncer } from '@vaadin/component-base/src/debounce.js';
|
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
10
|
* A mixin providing popover target functionality.
|
|
11
|
-
*
|
|
12
|
-
* @polymerMixin
|
|
13
11
|
*/
|
|
14
12
|
export const PopoverTargetMixin = (superClass) =>
|
|
15
13
|
class PopoverTargetMixinClass extends superClass {
|
package/src/vaadin-popover.js
CHANGED
|
@@ -209,10 +209,6 @@ const isLastOverlay = (overlay) => {
|
|
|
209
209
|
*
|
|
210
210
|
* @customElement vaadin-popover
|
|
211
211
|
* @extends HTMLElement
|
|
212
|
-
* @mixes ElementMixin
|
|
213
|
-
* @mixes PopoverPositionMixin
|
|
214
|
-
* @mixes PopoverTargetMixin
|
|
215
|
-
* @mixes ThemePropertyMixin
|
|
216
212
|
*/
|
|
217
213
|
class Popover extends PopoverPositionMixin(
|
|
218
214
|
PopoverTargetMixin(ThemePropertyMixin(ElementMixin(PolylitMixin(LitElement)))),
|
package/web-types.json
CHANGED