@trackunit/ui-design-tokens 0.0.102 → 0.0.103
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/index.cjs.js +2 -1
- package/index.esm.js +2 -1
- package/package.json +1 -1
- package/src/tokens/zIndex.d.ts +3 -2
package/index.cjs.js
CHANGED
package/index.esm.js
CHANGED
package/package.json
CHANGED
package/src/tokens/zIndex.d.ts
CHANGED
|
@@ -2,8 +2,9 @@ export declare const themeZIndex: {
|
|
|
2
2
|
readonly hidden: -1;
|
|
3
3
|
readonly default: 1;
|
|
4
4
|
readonly top: 5;
|
|
5
|
+
readonly sidebar: 9;
|
|
5
6
|
readonly overlay: 10;
|
|
6
|
-
readonly popover:
|
|
7
|
+
readonly popover: 21;
|
|
7
8
|
readonly toast: 100;
|
|
8
9
|
};
|
|
9
10
|
export declare const zIndex: {
|
|
@@ -11,7 +12,7 @@ export declare const zIndex: {
|
|
|
11
12
|
readonly default: 1;
|
|
12
13
|
readonly top: 5;
|
|
13
14
|
readonly overlay: 10;
|
|
14
|
-
readonly popover:
|
|
15
|
+
readonly popover: 21;
|
|
15
16
|
readonly toast: 100;
|
|
16
17
|
};
|
|
17
18
|
export type ZIndex = typeof zIndex;
|