@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.
@@ -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;
@@ -240,3 +240,6 @@ export const timeDelayS = 125;
240
240
  export const timeDurationL = 1000;
241
241
  export const timeDurationM = 500;
242
242
  export const timeDurationS = 250;
243
+ export const zIndexBase = 0;
244
+ export const zIndexDropdown = 100;
245
+ export const zIndexTooltip = 200;
@@ -332,5 +332,10 @@
332
332
  "m": "500ms",
333
333
  "s": "250ms"
334
334
  }
335
+ },
336
+ "z-index": {
337
+ "base": 0,
338
+ "dropdown": 100,
339
+ "tooltip": 200
335
340
  }
336
341
  }
@@ -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.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.3.1",
21
+ "style-dictionary-utils": "^1.5.0",
22
22
  "tinycolor2": "^1.6.0"
23
23
  },
24
24
  "scripts": {