@haiilo/catalyst-tokens 6.2.2 → 6.2.3
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/css/variables.css +3 -0
- package/dist/export/figma.json +900 -0
- package/dist/export/theme.json +306 -0
- package/dist/export/zeroheight.json +1064 -0
- package/dist/js/variables.d.ts +3 -0
- package/dist/js/variables.js +3 -0
- package/dist/json/variables.json +5 -0
- package/dist/scss/_variables.scss +8 -0
- package/package.json +2 -2
package/dist/js/variables.d.ts
CHANGED
|
@@ -240,3 +240,6 @@ export const timeDelayS : number;
|
|
|
240
240
|
export const timeDurationL : number;
|
|
241
241
|
export const timeDurationM : number;
|
|
242
242
|
export const timeDurationS : number;
|
|
243
|
+
export const zIndexBase : number;
|
|
244
|
+
export const zIndexDropdown : number;
|
|
245
|
+
export const zIndexTooltip : number;
|
package/dist/js/variables.js
CHANGED
package/dist/json/variables.json
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
* Auto-generated file. Do not edit directly.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
+
$cat-z-index-tooltip: 200 !default;
|
|
7
|
+
$cat-z-index-dropdown: 100 !default;
|
|
8
|
+
$cat-z-index-base: var(--cat-z-index, 0) !default;
|
|
6
9
|
$cat-time-duration-s: 250ms !default;
|
|
7
10
|
$cat-time-duration-m: 500ms !default;
|
|
8
11
|
$cat-time-duration-l: 1000ms !default;
|
|
@@ -576,5 +579,10 @@ $tokens: (
|
|
|
576
579
|
'm': $cat-time-duration-m,
|
|
577
580
|
's': $cat-time-duration-s
|
|
578
581
|
)
|
|
582
|
+
),
|
|
583
|
+
'z-index': (
|
|
584
|
+
'base': $cat-z-index-base,
|
|
585
|
+
'dropdown': $cat-z-index-dropdown,
|
|
586
|
+
'tooltip': $cat-z-index-tooltip
|
|
579
587
|
)
|
|
580
588
|
);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@haiilo/catalyst-tokens",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.3",
|
|
4
4
|
"description": "Design tokens for Catalyst Design System",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"style-dictionary": "^3.8.0",
|
|
21
|
-
"style-dictionary-utils": "^1.
|
|
21
|
+
"style-dictionary-utils": "^1.5.0",
|
|
22
22
|
"tinycolor2": "^1.6.0"
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|