@ndla/preset-panda 0.0.42 → 0.0.44
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 +6 -4
- package/es/zIndex.js +10 -4
- package/lib/zIndex.d.ts +6 -0
- package/lib/zIndex.js +10 -4
- package/package.json +2 -2
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-
|
|
640
|
-
--z-index-
|
|
641
|
-
--z-index-
|
|
642
|
-
--z-index-
|
|
639
|
+
--z-index-alert-modal-overlay: 1500;
|
|
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;
|
package/es/zIndex.js
CHANGED
|
@@ -32,16 +32,22 @@ export const zIndex = defineTokens.zIndex({
|
|
|
32
32
|
modal: {
|
|
33
33
|
value: 1400
|
|
34
34
|
},
|
|
35
|
-
|
|
35
|
+
alertModalOverlay: {
|
|
36
36
|
value: 1500
|
|
37
37
|
},
|
|
38
|
-
|
|
38
|
+
alertModal: {
|
|
39
39
|
value: 1600
|
|
40
40
|
},
|
|
41
|
-
|
|
41
|
+
popover: {
|
|
42
42
|
value: 1700
|
|
43
43
|
},
|
|
44
|
-
|
|
44
|
+
skipLink: {
|
|
45
45
|
value: 1800
|
|
46
|
+
},
|
|
47
|
+
toast: {
|
|
48
|
+
value: 1900
|
|
49
|
+
},
|
|
50
|
+
tooltip: {
|
|
51
|
+
value: 2000
|
|
46
52
|
}
|
|
47
53
|
});
|
package/lib/zIndex.d.ts
CHANGED
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
|
-
|
|
41
|
+
alertModalOverlay: {
|
|
42
42
|
value: 1500
|
|
43
43
|
},
|
|
44
|
-
|
|
44
|
+
alertModal: {
|
|
45
45
|
value: 1600
|
|
46
46
|
},
|
|
47
|
-
|
|
47
|
+
popover: {
|
|
48
48
|
value: 1700
|
|
49
49
|
},
|
|
50
|
-
|
|
50
|
+
skipLink: {
|
|
51
51
|
value: 1800
|
|
52
|
+
},
|
|
53
|
+
toast: {
|
|
54
|
+
value: 1900
|
|
55
|
+
},
|
|
56
|
+
tooltip: {
|
|
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.
|
|
3
|
+
"version": "0.0.44",
|
|
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": "
|
|
40
|
+
"gitHead": "120530c8f430ba550d50fbfbc788eac87dae1377"
|
|
41
41
|
}
|