@ndla/preset-panda 0.0.41 → 0.0.43

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/styles.css CHANGED
@@ -636,10 +636,12 @@
636
636
  --z-index-banner: 1200;
637
637
  --z-index-overlay: 1300;
638
638
  --z-index-modal: 1400;
639
- --z-index-popover: 1500;
640
- --z-index-skip-link: 1600;
641
- --z-index-toast: 1700;
642
- --z-index-tooltip: 1800;
639
+ --z-index-alert-modal-overlay: 1400;
640
+ --z-index-alert-modal: 1600;
641
+ --z-index-popover: 1700;
642
+ --z-index-skip-link: 1800;
643
+ --z-index-toast: 1900;
644
+ --z-index-tooltip: 2000;
643
645
  --breakpoints-mobile: 20em;
644
646
  --breakpoints-mobile-wide: 29.75em;
645
647
  --breakpoints-tablet: 37.5625em;
@@ -714,6 +716,7 @@
714
716
  --colors-icon-default: var(--colors-grey-950);
715
717
  --colors-icon-strong: var(--colors-primary);
716
718
  --colors-icon-on-action: var(--colors-white);
719
+ --colors-icon-subtle: var(--colors-grey-700);
717
720
  --colors-surface-brand-1: var(--colors-purple-500);
718
721
  --colors-surface-brand-1-subtle: var(--colors-purple-100);
719
722
  --colors-surface-brand-1-moderate: var(--colors-purple-300);
@@ -222,6 +222,9 @@ export const semanticTokens = defineSemanticTokens({
222
222
  },
223
223
  onAction: {
224
224
  value: "{colors.white}"
225
+ },
226
+ subtle: {
227
+ value: "{colors.grey.700}"
225
228
  }
226
229
  },
227
230
  surface: {
package/es/zIndex.js CHANGED
@@ -32,16 +32,22 @@ export const zIndex = defineTokens.zIndex({
32
32
  modal: {
33
33
  value: 1400
34
34
  },
35
+ alertModalOverlay: {
36
+ value: 1400
37
+ },
38
+ alertModal: {
39
+ value: 1600
40
+ },
35
41
  popover: {
36
- value: 1500
42
+ value: 1700
37
43
  },
38
44
  skipLink: {
39
- value: 1600
45
+ value: 1800
40
46
  },
41
47
  toast: {
42
- value: 1700
48
+ value: 1900
43
49
  },
44
50
  tooltip: {
45
- value: 1800
51
+ value: 2000
46
52
  }
47
53
  });
@@ -221,6 +221,9 @@ export declare const semanticTokens: {
221
221
  onAction: {
222
222
  value: string;
223
223
  };
224
+ subtle: {
225
+ value: string;
226
+ };
224
227
  };
225
228
  surface: {
226
229
  brand: {
@@ -228,6 +228,9 @@ const semanticTokens = exports.semanticTokens = (0, _dev.defineSemanticTokens)({
228
228
  },
229
229
  onAction: {
230
230
  value: "{colors.white}"
231
+ },
232
+ subtle: {
233
+ value: "{colors.grey.700}"
231
234
  }
232
235
  },
233
236
  surface: {
package/lib/zIndex.d.ts CHANGED
@@ -30,6 +30,12 @@ export declare const zIndex: {
30
30
  modal: {
31
31
  value: number;
32
32
  };
33
+ alertModalOverlay: {
34
+ value: number;
35
+ };
36
+ alertModal: {
37
+ value: number;
38
+ };
33
39
  popover: {
34
40
  value: number;
35
41
  };
package/lib/zIndex.js CHANGED
@@ -38,16 +38,22 @@ const zIndex = exports.zIndex = _dev.defineTokens.zIndex({
38
38
  modal: {
39
39
  value: 1400
40
40
  },
41
+ alertModalOverlay: {
42
+ value: 1400
43
+ },
44
+ alertModal: {
45
+ value: 1600
46
+ },
41
47
  popover: {
42
- value: 1500
48
+ value: 1700
43
49
  },
44
50
  skipLink: {
45
- value: 1600
51
+ value: 1800
46
52
  },
47
53
  toast: {
48
- value: 1700
54
+ value: 1900
49
55
  },
50
56
  tooltip: {
51
- value: 1800
57
+ value: 2000
52
58
  }
53
59
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ndla/preset-panda",
3
- "version": "0.0.41",
3
+ "version": "0.0.43",
4
4
  "description": "Panda preset for NDLA.",
5
5
  "license": "GPL-3.0",
6
6
  "main": "lib/index.js",
@@ -37,5 +37,5 @@
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "1566b12dac651e40b3300afe8f41080649a9eed5"
40
+ "gitHead": "8810ca6acc9306d1f4dc3b2f658cbbd7090e84c5"
41
41
  }