@dolanske/vui 1.10.11 → 1.10.12
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/dist/shared/layerManager.d.ts +3 -2
- package/dist/vui.css +1 -1
- package/dist/vui.js +702 -703
- package/package.json +1 -1
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
2
|
interface UseLayer {
|
|
3
|
-
layerIndex:
|
|
3
|
+
layerIndex: Ref<number>;
|
|
4
4
|
openLayer: () => void;
|
|
5
5
|
closeLayer: () => void;
|
|
6
6
|
}
|
|
7
|
+
export declare function isTopLayer(z: number): boolean;
|
|
7
8
|
/**
|
|
8
9
|
* Provides a reactive z-index that participates in the global layer stack.
|
|
9
10
|
* Each floating element (Modal, Sheet, Popout, Tooltip, …) should call this
|