@spectrum-web-components/overlay 1.11.2 → 1.11.3-next.20260216102310
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 +6 -6
- package/src/Overlay.d.ts +1 -1
- package/src/overlay-trigger.css.d.ts +1 -1
- package/src/overlay.css.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spectrum-web-components/overlay",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.3-next.20260216102310",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -166,11 +166,11 @@
|
|
|
166
166
|
"dependencies": {
|
|
167
167
|
"@floating-ui/dom": "1.7.4",
|
|
168
168
|
"@floating-ui/utils": "0.2.10",
|
|
169
|
-
"@spectrum-web-components/action-button": "1.11.
|
|
170
|
-
"@spectrum-web-components/base": "1.11.
|
|
171
|
-
"@spectrum-web-components/reactive-controllers": "1.11.
|
|
172
|
-
"@spectrum-web-components/shared": "1.11.
|
|
173
|
-
"@spectrum-web-components/theme": "1.11.
|
|
169
|
+
"@spectrum-web-components/action-button": "1.11.3-next.20260216102310",
|
|
170
|
+
"@spectrum-web-components/base": "1.11.3-next.20260216102310",
|
|
171
|
+
"@spectrum-web-components/reactive-controllers": "1.11.3-next.20260216102310",
|
|
172
|
+
"@spectrum-web-components/shared": "1.11.3-next.20260216102310",
|
|
173
|
+
"@spectrum-web-components/theme": "1.11.3-next.20260216102310",
|
|
174
174
|
"focus-trap": "7.6.5"
|
|
175
175
|
},
|
|
176
176
|
"types": "./src/index.d.ts",
|
package/src/Overlay.d.ts
CHANGED
|
@@ -38,7 +38,7 @@ declare let ComputedOverlayBase: typeof AbstractOverlay & import("./overlay-type
|
|
|
38
38
|
* @attr {boolean} allow-outside-click - @deprecated Whether clicks outside the overlay should close it (not recommended for accessibility)
|
|
39
39
|
*/
|
|
40
40
|
export declare class Overlay extends ComputedOverlayBase {
|
|
41
|
-
static styles: import("
|
|
41
|
+
static styles: import("lit").CSSResult[];
|
|
42
42
|
/**
|
|
43
43
|
* An Overlay that is `delayed` will wait until a warm-up period of 1000ms
|
|
44
44
|
* has completed before opening. Once the warm-up period has completed, all
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const styles: import("
|
|
1
|
+
declare const styles: import("lit").CSSResult;
|
|
2
2
|
export default styles;
|
package/src/overlay.css.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const styles: import("
|
|
1
|
+
declare const styles: import("lit").CSSResult;
|
|
2
2
|
export default styles;
|