@vaadin/overlay 25.1.0-alpha9 → 25.1.0-beta2

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.
@@ -531,43 +531,6 @@
531
531
  "kind": "javascript-module",
532
532
  "path": "src/vaadin-overlay-stack-mixin.js",
533
533
  "declarations": [
534
- {
535
- "kind": "function",
536
- "name": "hasOnlyNestedOverlays",
537
- "parameters": [
538
- {
539
- "name": "overlay"
540
- }
541
- ],
542
- "description": "Returns true if all the instances on top of the overlay are nested overlays.",
543
- "privacy": "private"
544
- },
545
- {
546
- "kind": "function",
547
- "name": "isLastOverlay",
548
- "parameters": [
549
- {
550
- "name": "overlay",
551
- "type": {
552
- "text": "HTMLElement"
553
- }
554
- },
555
- {
556
- "name": "filter",
557
- "default": "(_overlay) => true",
558
- "type": {
559
- "text": "function(HTMLElement): boolean"
560
- }
561
- }
562
- ],
563
- "description": "Returns true if the overlay is the last one in the opened overlays stack.",
564
- "return": {
565
- "type": {
566
- "text": "boolean"
567
- }
568
- },
569
- "privacy": "protected"
570
- },
571
534
  {
572
535
  "kind": "mixin",
573
536
  "description": "",
@@ -587,22 +550,6 @@
587
550
  }
588
551
  ],
589
552
  "exports": [
590
- {
591
- "kind": "js",
592
- "name": "hasOnlyNestedOverlays",
593
- "declaration": {
594
- "name": "hasOnlyNestedOverlays",
595
- "module": "src/vaadin-overlay-stack-mixin.js"
596
- }
597
- },
598
- {
599
- "kind": "js",
600
- "name": "isLastOverlay",
601
- "declaration": {
602
- "name": "isLastOverlay",
603
- "module": "src/vaadin-overlay-stack-mixin.js"
604
- }
605
- },
606
553
  {
607
554
  "kind": "js",
608
555
  "name": "OverlayStackMixin",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/overlay",
3
- "version": "25.1.0-alpha9",
3
+ "version": "25.1.0-beta2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,19 +34,19 @@
34
34
  ],
35
35
  "dependencies": {
36
36
  "@open-wc/dedupe-mixin": "^1.3.0",
37
- "@vaadin/a11y-base": "25.1.0-alpha9",
38
- "@vaadin/component-base": "25.1.0-alpha9",
39
- "@vaadin/vaadin-themable-mixin": "25.1.0-alpha9",
37
+ "@vaadin/a11y-base": "25.1.0-beta2",
38
+ "@vaadin/component-base": "25.1.0-beta2",
39
+ "@vaadin/vaadin-themable-mixin": "25.1.0-beta2",
40
40
  "lit": "^3.0.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@vaadin/aura": "25.1.0-alpha9",
44
- "@vaadin/chai-plugins": "25.1.0-alpha9",
45
- "@vaadin/test-runner-commands": "25.1.0-alpha9",
43
+ "@vaadin/aura": "25.1.0-beta2",
44
+ "@vaadin/chai-plugins": "25.1.0-beta2",
45
+ "@vaadin/test-runner-commands": "25.1.0-beta2",
46
46
  "@vaadin/testing-helpers": "^2.0.0",
47
- "@vaadin/vaadin-lumo-styles": "25.1.0-alpha9",
47
+ "@vaadin/vaadin-lumo-styles": "25.1.0-beta2",
48
48
  "sinon": "^21.0.0"
49
49
  },
50
50
  "customElements": "custom-elements.json",
51
- "gitHead": "ef432311376ba3dac4233cb23d393a49a425e0a4"
51
+ "gitHead": "ffbedbae08a5160d13bcd1c6fcaa328df5103a05"
52
52
  }
@@ -62,7 +62,6 @@ export const OverlayMixin = (superClass) =>
62
62
  /**
63
63
  * When true the overlay won't disable the main content, showing
64
64
  * it doesn't change the functionality of the user interface.
65
- * @type {boolean}
66
65
  */
67
66
  modeless: {
68
67
  type: Boolean,
@@ -75,7 +74,6 @@ export const OverlayMixin = (superClass) =>
75
74
  /**
76
75
  * When set to true, the overlay is hidden. This also closes the overlay
77
76
  * immediately in case there is a closing animation in progress.
78
- * @type {boolean}
79
77
  */
80
78
  hidden: {
81
79
  type: Boolean,
@@ -86,7 +84,6 @@ export const OverlayMixin = (superClass) =>
86
84
 
87
85
  /**
88
86
  * When true the overlay has backdrop on top of content when opened.
89
- * @type {boolean}
90
87
  */
91
88
  withBackdrop: {
92
89
  type: Boolean,