@paperless/core 1.40.0 → 1.41.0
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/CHANGELOG.md +16 -0
- package/dist/build/index.esm.js +1 -1
- package/dist/build/index.esm.js.map +1 -1
- package/dist/build/p-1079ffc6.entry.js.map +1 -1
- package/dist/cjs/index.cjs.js +51 -0
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/cjs/p-floating-menu-container_8.cjs.entry.js.map +1 -1
- package/dist/collection/components/atoms/floating-menu-item/floating-menu-item.component.js +1 -1
- package/dist/collection/components/atoms/floating-menu-item/floating-menu-item.component.js.map +1 -1
- package/dist/collection/tailwind/animation.js +85 -85
- package/dist/collection/tailwind/animation.js.map +1 -0
- package/dist/collection/tailwind/backdrop-blur.js +3 -2
- package/dist/collection/tailwind/backdrop-blur.js.map +1 -0
- package/dist/collection/tailwind/border-radius.js +11 -10
- package/dist/collection/tailwind/border-radius.js.map +1 -0
- package/dist/collection/tailwind/colors.js +2 -1
- package/dist/collection/tailwind/colors.js.map +1 -0
- package/dist/collection/tailwind/height.js +5 -4
- package/dist/collection/tailwind/height.js.map +1 -0
- package/dist/collection/tailwind/plugins/safe-area.js +87 -93
- package/dist/collection/tailwind/plugins/safe-area.js.map +1 -0
- package/dist/collection/tailwind/rotate.js +2 -3
- package/dist/collection/tailwind/rotate.js.map +1 -0
- package/dist/collection/tailwind/scale.js +2 -1
- package/dist/collection/tailwind/scale.js.map +1 -0
- package/dist/collection/tailwind/screens.js +15 -15
- package/dist/collection/tailwind/screens.js.map +1 -0
- package/dist/collection/tailwind/shadows.js +13 -12
- package/dist/collection/tailwind/shadows.js.map +1 -0
- package/dist/collection/tailwind/spacing.js +8 -9
- package/dist/collection/tailwind/spacing.js.map +1 -0
- package/dist/collection/tailwind/typography.js +22 -21
- package/dist/collection/tailwind/typography.js.map +1 -0
- package/dist/collection/tailwind/width.js +14 -15
- package/dist/collection/tailwind/width.js.map +1 -0
- package/dist/collection/tailwind/z-index.js +13 -18
- package/dist/collection/tailwind/z-index.js.map +1 -0
- package/dist/collection/tailwind.config.js +32 -41
- package/dist/collection/tailwind.config.js.map +1 -0
- package/dist/collection/utils/index.js +1 -0
- package/dist/collection/utils/index.js.map +1 -1
- package/dist/collection/utils/screens.js +26 -0
- package/dist/collection/utils/screens.js.map +1 -0
- package/dist/components/floating-menu-item.component.js.map +1 -1
- package/dist/components/index.js +42 -1
- package/dist/components/index.js.map +1 -1
- package/dist/esm/index.js +42 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/p-floating-menu-container_8.entry.js.map +1 -1
- package/dist/index.html +1 -1
- package/dist/paperless/index.esm.js +1 -1
- package/dist/paperless/index.esm.js.map +1 -1
- package/dist/paperless/p-1079ffc6.entry.js.map +1 -1
- package/dist/sw.js +1 -1
- package/dist/sw.js.map +1 -1
- package/dist/tailwind/animation.ts +87 -0
- package/dist/tailwind/backdrop-blur.ts +3 -0
- package/dist/tailwind/border-radius.ts +11 -0
- package/dist/tailwind/colors.ts +52 -0
- package/dist/tailwind/height.ts +5 -0
- package/dist/tailwind/plugins/safe-area.ts +98 -0
- package/dist/tailwind/rotate.ts +8 -0
- package/dist/tailwind/scale.ts +3 -0
- package/dist/tailwind/{screens.js → screens.ts} +1 -1
- package/dist/tailwind/shadows.ts +13 -0
- package/dist/tailwind/spacing.ts +10 -0
- package/dist/tailwind/typography.ts +21 -0
- package/dist/tailwind/{width.js → width.ts} +1 -1
- package/dist/tailwind/z-index.ts +19 -0
- package/dist/tailwind.config.ts +43 -0
- package/dist/types/components/atoms/floating-menu-item/floating-menu-item.component.d.ts +1 -1
- package/dist/types/components.d.ts +2 -2
- package/dist/types/tailwind/animation.d.ts +151 -0
- package/dist/types/tailwind/backdrop-blur.d.ts +4 -0
- package/dist/types/tailwind/border-radius.d.ts +12 -0
- package/dist/types/tailwind/colors.d.ts +53 -0
- package/dist/types/tailwind/height.d.ts +6 -0
- package/dist/types/tailwind/plugins/safe-area.d.ts +2 -0
- package/dist/types/tailwind/rotate.d.ts +2 -0
- package/dist/types/tailwind/scale.d.ts +4 -0
- package/dist/types/tailwind/screens.d.ts +15 -0
- package/dist/types/tailwind/shadows.d.ts +11 -0
- package/dist/types/tailwind/spacing.d.ts +8 -0
- package/dist/types/tailwind/typography.d.ts +22 -0
- package/dist/types/tailwind/width.d.ts +13 -0
- package/dist/types/tailwind/z-index.d.ts +14 -0
- package/dist/types/tailwind.config.d.ts +313 -0
- package/dist/types/utils/index.d.ts +1 -0
- package/dist/types/utils/screens.d.ts +12 -0
- package/package.json +2 -2
- package/dist/tailwind/animation.js +0 -87
- package/dist/tailwind/backdrop-blur.js +0 -3
- package/dist/tailwind/border-radius.js +0 -11
- package/dist/tailwind/colors.js +0 -52
- package/dist/tailwind/height.js +0 -5
- package/dist/tailwind/plugins/safe-area.js +0 -98
- package/dist/tailwind/rotate.js +0 -8
- package/dist/tailwind/scale.js +0 -3
- package/dist/tailwind/shadows.js +0 -13
- package/dist/tailwind/spacing.js +0 -10
- package/dist/tailwind/typography.js +0 -21
- package/dist/tailwind/z-index.js +0 -19
- package/dist/tailwind.config.js +0 -42
|
@@ -1,87 +1,87 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
'100%': { opacity: 100 },
|
|
25
|
-
},
|
|
26
|
-
fadeOut: {
|
|
27
|
-
'0%': { opacity: 100 },
|
|
28
|
-
'100%': { opacity: 0 },
|
|
29
|
-
},
|
|
30
|
-
slideInRight: {
|
|
31
|
-
'0%': { transform: 'translateX(100%)' },
|
|
32
|
-
'100%': { transform: 'translateX(0)' },
|
|
33
|
-
},
|
|
34
|
-
slideInLeft: {
|
|
35
|
-
'0%': { transform: 'translateX(-100%)' },
|
|
36
|
-
'100%': { transform: 'translateX(0)' },
|
|
37
|
-
},
|
|
38
|
-
slideInTop: {
|
|
39
|
-
'0%': { transform: 'translateY(-100%)' },
|
|
40
|
-
'100%': { transform: 'translateY(0)' },
|
|
41
|
-
},
|
|
42
|
-
slideInBottom: {
|
|
43
|
-
'0%': { transform: 'translateY(100%)' },
|
|
44
|
-
'100%': { transform: 'translateY(0)' },
|
|
45
|
-
},
|
|
46
|
-
slideInRightSmall: {
|
|
47
|
-
'0%': { transform: 'translateX(20%)' },
|
|
48
|
-
'100%': { transform: 'translateX(0)' },
|
|
49
|
-
},
|
|
50
|
-
slideInLeftSmall: {
|
|
51
|
-
'0%': { transform: 'translateX(-20%)' },
|
|
52
|
-
'100%': { transform: 'translateX(0)' },
|
|
53
|
-
},
|
|
54
|
-
slideInTopSmall: {
|
|
55
|
-
'0%': { transform: 'translateY(-20%)' },
|
|
56
|
-
'100%': { transform: 'translateY(0)' },
|
|
57
|
-
},
|
|
58
|
-
slideInBottomSmall: {
|
|
59
|
-
'0%': { transform: 'translateY(20%)' },
|
|
60
|
-
'100%': { transform: 'translateY(0)' },
|
|
61
|
-
},
|
|
62
|
-
slideOutRight: {
|
|
63
|
-
'0%': { transform: 'translateX(0)' },
|
|
64
|
-
'100%': { transform: 'translateX(100%)' },
|
|
65
|
-
},
|
|
66
|
-
slideOutLeft: {
|
|
67
|
-
'0%': { transform: 'translateX(0)' },
|
|
68
|
-
'100%': { transform: 'translateX(-100%)' },
|
|
69
|
-
},
|
|
70
|
-
slideOutTop: {
|
|
71
|
-
'0%': { transform: 'translateY(0)' },
|
|
72
|
-
'100%': { transform: 'translateY(-100%)' },
|
|
73
|
-
},
|
|
74
|
-
slideOutBottom: {
|
|
75
|
-
'0%': { transform: 'translateY(0)' },
|
|
76
|
-
'100%': { transform: 'translateY(100%)' },
|
|
77
|
-
},
|
|
78
|
-
slideOutTopSmall: {
|
|
79
|
-
'0%': { transform: 'translateY(0)' },
|
|
80
|
-
'100%': { transform: 'translateY(-20%)' },
|
|
81
|
-
},
|
|
82
|
-
slideOutBottomSmall: {
|
|
83
|
-
'0%': { transform: 'translateY(0)' },
|
|
84
|
-
'100%': { transform: 'translateY(20%)' },
|
|
85
|
-
},
|
|
1
|
+
export default {
|
|
2
|
+
animation: {
|
|
3
|
+
'fade-in': 'forwards fadeIn .2s ease',
|
|
4
|
+
'fade-out': 'forwards fadeOut .2s ease',
|
|
5
|
+
'slide-in-right': 'forwards slideInRight .5s ease',
|
|
6
|
+
'slide-in-left': 'forwards slideInLeft .5s ease',
|
|
7
|
+
'slide-in-top': 'forwards slideInTop .25 ease',
|
|
8
|
+
'slide-in-bottom': 'forwards slideInBottom .5s ease',
|
|
9
|
+
'slide-in-right-small': 'forwards slideInRightSmall .5s ease',
|
|
10
|
+
'slide-in-left-small': 'forwards slideInLeftSmall .5s ease',
|
|
11
|
+
'slide-in-top-small': 'forwards slideInTopSmall .5s ease',
|
|
12
|
+
'slide-in-bottom-small': 'forwards slideInBottomSmall .5s ease',
|
|
13
|
+
'slide-out-right': 'forwards slideOutRight .2s ease',
|
|
14
|
+
'slide-out-left': 'forwards slideOutLeft .2s ease',
|
|
15
|
+
'slide-out-top': 'forwards slideOutTop .2s ease',
|
|
16
|
+
'slide-out-bottom': 'forwards slideOutBottom .5s ease',
|
|
17
|
+
'slide-out-top-small': 'forwards slideOutTopSmall .5s ease',
|
|
18
|
+
'slide-out-bottom-small': 'forwards slideOutBottomSmall .5s ease',
|
|
19
|
+
},
|
|
20
|
+
keyframes: {
|
|
21
|
+
fadeIn: {
|
|
22
|
+
'0%': { opacity: 0 },
|
|
23
|
+
'100%': { opacity: 100 },
|
|
86
24
|
},
|
|
25
|
+
fadeOut: {
|
|
26
|
+
'0%': { opacity: 100 },
|
|
27
|
+
'100%': { opacity: 0 },
|
|
28
|
+
},
|
|
29
|
+
slideInRight: {
|
|
30
|
+
'0%': { transform: 'translateX(100%)' },
|
|
31
|
+
'100%': { transform: 'translateX(0)' },
|
|
32
|
+
},
|
|
33
|
+
slideInLeft: {
|
|
34
|
+
'0%': { transform: 'translateX(-100%)' },
|
|
35
|
+
'100%': { transform: 'translateX(0)' },
|
|
36
|
+
},
|
|
37
|
+
slideInTop: {
|
|
38
|
+
'0%': { transform: 'translateY(-100%)' },
|
|
39
|
+
'100%': { transform: 'translateY(0)' },
|
|
40
|
+
},
|
|
41
|
+
slideInBottom: {
|
|
42
|
+
'0%': { transform: 'translateY(100%)' },
|
|
43
|
+
'100%': { transform: 'translateY(0)' },
|
|
44
|
+
},
|
|
45
|
+
slideInRightSmall: {
|
|
46
|
+
'0%': { transform: 'translateX(20%)' },
|
|
47
|
+
'100%': { transform: 'translateX(0)' },
|
|
48
|
+
},
|
|
49
|
+
slideInLeftSmall: {
|
|
50
|
+
'0%': { transform: 'translateX(-20%)' },
|
|
51
|
+
'100%': { transform: 'translateX(0)' },
|
|
52
|
+
},
|
|
53
|
+
slideInTopSmall: {
|
|
54
|
+
'0%': { transform: 'translateY(-20%)' },
|
|
55
|
+
'100%': { transform: 'translateY(0)' },
|
|
56
|
+
},
|
|
57
|
+
slideInBottomSmall: {
|
|
58
|
+
'0%': { transform: 'translateY(20%)' },
|
|
59
|
+
'100%': { transform: 'translateY(0)' },
|
|
60
|
+
},
|
|
61
|
+
slideOutRight: {
|
|
62
|
+
'0%': { transform: 'translateX(0)' },
|
|
63
|
+
'100%': { transform: 'translateX(100%)' },
|
|
64
|
+
},
|
|
65
|
+
slideOutLeft: {
|
|
66
|
+
'0%': { transform: 'translateX(0)' },
|
|
67
|
+
'100%': { transform: 'translateX(-100%)' },
|
|
68
|
+
},
|
|
69
|
+
slideOutTop: {
|
|
70
|
+
'0%': { transform: 'translateY(0)' },
|
|
71
|
+
'100%': { transform: 'translateY(-100%)' },
|
|
72
|
+
},
|
|
73
|
+
slideOutBottom: {
|
|
74
|
+
'0%': { transform: 'translateY(0)' },
|
|
75
|
+
'100%': { transform: 'translateY(100%)' },
|
|
76
|
+
},
|
|
77
|
+
slideOutTopSmall: {
|
|
78
|
+
'0%': { transform: 'translateY(0)' },
|
|
79
|
+
'100%': { transform: 'translateY(-20%)' },
|
|
80
|
+
},
|
|
81
|
+
slideOutBottomSmall: {
|
|
82
|
+
'0%': { transform: 'translateY(0)' },
|
|
83
|
+
'100%': { transform: 'translateY(20%)' },
|
|
84
|
+
},
|
|
85
|
+
},
|
|
87
86
|
};
|
|
87
|
+
//# sourceMappingURL=animation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"animation.js","sourceRoot":"","sources":["../../src/tailwind/animation.ts"],"names":[],"mappings":"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","sourcesContent":["export default {\n\tanimation: {\n\t\t'fade-in': 'forwards fadeIn .2s ease',\n\t\t'fade-out': 'forwards fadeOut .2s ease',\n\t\t'slide-in-right': 'forwards slideInRight .5s ease',\n\t\t'slide-in-left': 'forwards slideInLeft .5s ease',\n\t\t'slide-in-top': 'forwards slideInTop .25 ease',\n\t\t'slide-in-bottom': 'forwards slideInBottom .5s ease',\n\t\t'slide-in-right-small': 'forwards slideInRightSmall .5s ease',\n\t\t'slide-in-left-small': 'forwards slideInLeftSmall .5s ease',\n\t\t'slide-in-top-small': 'forwards slideInTopSmall .5s ease',\n\t\t'slide-in-bottom-small': 'forwards slideInBottomSmall .5s ease',\n\t\t'slide-out-right': 'forwards slideOutRight .2s ease',\n\t\t'slide-out-left': 'forwards slideOutLeft .2s ease',\n\t\t'slide-out-top': 'forwards slideOutTop .2s ease',\n\t\t'slide-out-bottom': 'forwards slideOutBottom .5s ease',\n\t\t'slide-out-top-small': 'forwards slideOutTopSmall .5s ease',\n\t\t'slide-out-bottom-small': 'forwards slideOutBottomSmall .5s ease',\n\t},\n\n\tkeyframes: {\n\t\tfadeIn: {\n\t\t\t'0%': { opacity: 0 },\n\t\t\t'100%': { opacity: 100 },\n\t\t},\n\t\tfadeOut: {\n\t\t\t'0%': { opacity: 100 },\n\t\t\t'100%': { opacity: 0 },\n\t\t},\n\t\tslideInRight: {\n\t\t\t'0%': { transform: 'translateX(100%)' },\n\t\t\t'100%': { transform: 'translateX(0)' },\n\t\t},\n\t\tslideInLeft: {\n\t\t\t'0%': { transform: 'translateX(-100%)' },\n\t\t\t'100%': { transform: 'translateX(0)' },\n\t\t},\n\t\tslideInTop: {\n\t\t\t'0%': { transform: 'translateY(-100%)' },\n\t\t\t'100%': { transform: 'translateY(0)' },\n\t\t},\n\t\tslideInBottom: {\n\t\t\t'0%': { transform: 'translateY(100%)' },\n\t\t\t'100%': { transform: 'translateY(0)' },\n\t\t},\n\t\tslideInRightSmall: {\n\t\t\t'0%': { transform: 'translateX(20%)' },\n\t\t\t'100%': { transform: 'translateX(0)' },\n\t\t},\n\t\tslideInLeftSmall: {\n\t\t\t'0%': { transform: 'translateX(-20%)' },\n\t\t\t'100%': { transform: 'translateX(0)' },\n\t\t},\n\t\tslideInTopSmall: {\n\t\t\t'0%': { transform: 'translateY(-20%)' },\n\t\t\t'100%': { transform: 'translateY(0)' },\n\t\t},\n\t\tslideInBottomSmall: {\n\t\t\t'0%': { transform: 'translateY(20%)' },\n\t\t\t'100%': { transform: 'translateY(0)' },\n\t\t},\n\t\tslideOutRight: {\n\t\t\t'0%': { transform: 'translateX(0)' },\n\t\t\t'100%': { transform: 'translateX(100%)' },\n\t\t},\n\t\tslideOutLeft: {\n\t\t\t'0%': { transform: 'translateX(0)' },\n\t\t\t'100%': { transform: 'translateX(-100%)' },\n\t\t},\n\t\tslideOutTop: {\n\t\t\t'0%': { transform: 'translateY(0)' },\n\t\t\t'100%': { transform: 'translateY(-100%)' },\n\t\t},\n\t\tslideOutBottom: {\n\t\t\t'0%': { transform: 'translateY(0)' },\n\t\t\t'100%': { transform: 'translateY(100%)' },\n\t\t},\n\t\tslideOutTopSmall: {\n\t\t\t'0%': { transform: 'translateY(0)' },\n\t\t\t'100%': { transform: 'translateY(-20%)' },\n\t\t},\n\t\tslideOutBottomSmall: {\n\t\t\t'0%': { transform: 'translateY(0)' },\n\t\t\t'100%': { transform: 'translateY(20%)' },\n\t\t},\n\t},\n};\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"backdrop-blur.js","sourceRoot":"","sources":["../../src/tailwind/backdrop-blur.ts"],"names":[],"mappings":"AAAA,eAAe;EACd,EAAE,EAAE,KAAK;CACT,CAAC","sourcesContent":["export default {\n\txs: '2px',\n};\n"]}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
export default {
|
|
2
|
+
xxxlarge: '1.5625rem',
|
|
3
|
+
xxlarge: '0.75rem',
|
|
4
|
+
xlarge: '0.5625rem',
|
|
5
|
+
large: '0.375rem',
|
|
6
|
+
DEFAULT: '0.25rem',
|
|
7
|
+
medium: '0.25rem',
|
|
8
|
+
small: '0.125rem',
|
|
9
|
+
none: 0,
|
|
10
|
+
round: '100%',
|
|
11
11
|
};
|
|
12
|
+
//# sourceMappingURL=border-radius.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"border-radius.js","sourceRoot":"","sources":["../../src/tailwind/border-radius.ts"],"names":[],"mappings":"AAAA,eAAe;EACd,QAAQ,EAAE,WAAW;EACrB,OAAO,EAAE,SAAS;EAClB,MAAM,EAAE,WAAW;EACnB,KAAK,EAAE,UAAU;EACjB,OAAO,EAAE,SAAS;EAClB,MAAM,EAAE,SAAS;EACjB,KAAK,EAAE,UAAU;EACjB,IAAI,EAAE,CAAC;EACP,KAAK,EAAE,MAAM;CACb,CAAC","sourcesContent":["export default {\n\txxxlarge: '1.5625rem',\n\txxlarge: '0.75rem',\n\txlarge: '0.5625rem',\n\tlarge: '0.375rem',\n\tDEFAULT: '0.25rem',\n\tmedium: '0.25rem',\n\tsmall: '0.125rem',\n\tnone: 0,\n\tround: '100%',\n};\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"colors.js","sourceRoot":"","sources":["../../src/tailwind/colors.ts"],"names":[],"mappings":"AAAA,eAAe;EACd,WAAW,EAAE,aAAa;EAC1B,OAAO,EAAE,cAAc;EACvB,MAAM,EAAE;IACP,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,SAAS;GAChB;EACD,GAAG,EAAE;IACJ,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,SAAS;IAChB,KAAK,EAAE,SAAS;GAChB;EACD,MAAM,EAAE;IACP,KAAK,EAAE,MAAM;IACb,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,SAAS;IAChB,MAAM,EAAE,SAAS;GACjB;EACD,QAAQ,EAAE;IACT,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,SAAS;IAChB,MAAM,EAAE,SAAS;GACjB;EACD,KAAK,EAAE;IACN,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,SAAS;IAChB,MAAM,EAAE,SAAS;IACjB,KAAK,EAAE,SAAS;GAChB;EACD,QAAQ,EAAE;IACT,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,SAAS;GAChB;EACD,QAAQ,EAAE;IACT,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,SAAS;GAChB;EACD,QAAQ,EAAE;IACT,IAAI,EAAE,SAAS;IACf,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,SAAS;GAChB;EACD,KAAK,EAAE,MAAM;EACb,KAAK,EAAE,MAAM;CACb,CAAC","sourcesContent":["export default {\n\ttransparent: 'transparent',\n\tcurrent: 'currentColor',\n\tindigo: {\n\t\tdark: '#2C4BA9',\n\t\tDEFAULT: '#528AFA',\n\t\tlight: '#F1F6FF',\n\t},\n\tsky: {\n\t\tdark: '#30C2C9',\n\t\tDEFAULT: '#1EDAE3',\n\t\tlight: '#F5FEFF',\n\t\tvague: '#BBF4F6',\n\t},\n\tmystic: {\n\t\tblank: '#FFF',\n\t\tdark: '#DAE6F0',\n\t\tDEFAULT: '#F7FAFC',\n\t\tlight: '#FCFDFE',\n\t\tmedium: '#E3ECF3',\n\t},\n\tredberry: {\n\t\tdark: '#BD0F1E',\n\t\tDEFAULT: '#E63241',\n\t\tlight: '#FFE8EA',\n\t\tmedium: '#FF7D88',\n\t},\n\tstorm: {\n\t\tdark: '#272838',\n\t\tDEFAULT: '#51536B',\n\t\tlight: '#B0B2CB',\n\t\tmedium: '#80829E',\n\t\tvague: '#989AB7',\n\t},\n\tnegative: {\n\t\tdark: '#8A0F1D',\n\t\tDEFAULT: '#B91E28',\n\t\tlight: '#FFCCD3',\n\t},\n\tpositive: {\n\t\tdark: '#1DA360',\n\t\tDEFAULT: '#28D17C',\n\t\tlight: '#E5FFF2',\n\t},\n\tunbiased: {\n\t\tdark: '#FFA231',\n\t\tDEFAULT: '#FFC72D',\n\t\tlight: '#FFF6DC',\n\t},\n\twhite: '#FFF',\n\tblack: '#000',\n};\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"height.js","sourceRoot":"","sources":["../../src/tailwind/height.ts"],"names":[],"mappings":"AAAA,eAAe;EACd,MAAM,EAAE;IACP,KAAK,EAAE,OAAO;GACd;CACD,CAAC","sourcesContent":["export default {\n\theight: {\n\t\tunset: 'unset',\n\t},\n};\n"]}
|
|
@@ -1,98 +1,92 @@
|
|
|
1
1
|
// eslint-disable-next-line unicorn/prefer-module
|
|
2
2
|
const plugin = require('tailwindcss/plugin');
|
|
3
|
-
|
|
4
3
|
const safeArea = plugin(({ addUtilities }) => {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
width: 'calc(100vw - (env(safe-area-inset-left) + env(safe-area-inset-right)))',
|
|
91
|
-
},
|
|
92
|
-
};
|
|
93
|
-
|
|
94
|
-
addUtilities(utilities);
|
|
4
|
+
const utilities = {
|
|
5
|
+
'.m-safe': {
|
|
6
|
+
marginTop: 'env(safe-area-inset-top)',
|
|
7
|
+
marginRight: 'env(safe-area-inset-right)',
|
|
8
|
+
marginBottom: 'env(safe-area-inset-bottom)',
|
|
9
|
+
marginLeft: 'env(safe-area-inset-left)',
|
|
10
|
+
},
|
|
11
|
+
'.mx-safe': {
|
|
12
|
+
marginRight: 'env(safe-area-inset-right)',
|
|
13
|
+
marginLeft: 'env(safe-area-inset-left)',
|
|
14
|
+
},
|
|
15
|
+
'.my-safe': {
|
|
16
|
+
marginTop: 'env(safe-area-inset-top)',
|
|
17
|
+
marginBottom: 'env(safe-area-inset-bottom)',
|
|
18
|
+
},
|
|
19
|
+
'.mt-safe': {
|
|
20
|
+
marginTop: 'env(safe-area-inset-top)',
|
|
21
|
+
},
|
|
22
|
+
'.mr-safe': {
|
|
23
|
+
marginRight: 'env(safe-area-inset-right)',
|
|
24
|
+
},
|
|
25
|
+
'.mb-safe': {
|
|
26
|
+
marginBottom: 'env(safe-area-inset-bottom)',
|
|
27
|
+
},
|
|
28
|
+
'.ml-safe': {
|
|
29
|
+
marginLeft: 'env(safe-area-inset-left)',
|
|
30
|
+
},
|
|
31
|
+
'.p-safe': {
|
|
32
|
+
paddingTop: 'env(safe-area-inset-top)',
|
|
33
|
+
paddingRight: 'env(safe-area-inset-right)',
|
|
34
|
+
paddingBottom: 'env(safe-area-inset-bottom)',
|
|
35
|
+
paddingLeft: 'env(safe-area-inset-left)',
|
|
36
|
+
},
|
|
37
|
+
'.px-safe': {
|
|
38
|
+
paddingRight: 'env(safe-area-inset-right)',
|
|
39
|
+
paddingLeft: 'env(safe-area-inset-left)',
|
|
40
|
+
},
|
|
41
|
+
'.py-safe': {
|
|
42
|
+
paddingTop: 'env(safe-area-inset-top)',
|
|
43
|
+
paddingBottom: 'env(safe-area-inset-bottom)',
|
|
44
|
+
},
|
|
45
|
+
'.pt-safe': {
|
|
46
|
+
paddingTop: 'env(safe-area-inset-top)',
|
|
47
|
+
},
|
|
48
|
+
'.pr-safe': {
|
|
49
|
+
paddingRight: 'env(safe-area-inset-right)',
|
|
50
|
+
},
|
|
51
|
+
'.pb-safe': {
|
|
52
|
+
paddingBottom: 'env(safe-area-inset-bottom)',
|
|
53
|
+
},
|
|
54
|
+
'.pl-safe': {
|
|
55
|
+
paddingLeft: 'env(safe-area-inset-left)',
|
|
56
|
+
},
|
|
57
|
+
'.min-h-screen': {
|
|
58
|
+
minHeight: '100vh',
|
|
59
|
+
},
|
|
60
|
+
'.min-h-screen-safe': {
|
|
61
|
+
minHeight: 'calc(100vh - (env(safe-area-inset-top) + env(safe-area-inset-bottom)))',
|
|
62
|
+
},
|
|
63
|
+
'.max-h-screen': {
|
|
64
|
+
maxHeight: '100vh',
|
|
65
|
+
},
|
|
66
|
+
'.max-h-screen-safe': {
|
|
67
|
+
maxHeight: 'calc(100vh - (env(safe-area-inset-top) + env(safe-area-inset-bottom)))',
|
|
68
|
+
},
|
|
69
|
+
'.h-screen-safe': {
|
|
70
|
+
height: 'calc(100vh - (env(safe-area-inset-top) + env(safe-area-inset-bottom)))',
|
|
71
|
+
},
|
|
72
|
+
'.min-w-screen': {
|
|
73
|
+
minWidth: '100vw',
|
|
74
|
+
},
|
|
75
|
+
'.min-w-screen-safe': {
|
|
76
|
+
minWidth: 'calc(100vw - (env(safe-area-inset-left) + env(safe-area-inset-right)))',
|
|
77
|
+
},
|
|
78
|
+
'.max-w-screen': {
|
|
79
|
+
maxWidth: '100vw',
|
|
80
|
+
},
|
|
81
|
+
'.max-w-screen-safe': {
|
|
82
|
+
maxWidth: 'calc(100vw - (env(safe-area-inset-left) + env(safe-area-inset-right)))',
|
|
83
|
+
},
|
|
84
|
+
'.w-screen-safe': {
|
|
85
|
+
width: 'calc(100vw - (env(safe-area-inset-left) + env(safe-area-inset-right)))',
|
|
86
|
+
},
|
|
87
|
+
};
|
|
88
|
+
addUtilities(utilities);
|
|
95
89
|
});
|
|
96
|
-
|
|
97
90
|
// eslint-disable-next-line unicorn/prefer-module
|
|
98
|
-
|
|
91
|
+
export default safeArea;
|
|
92
|
+
//# sourceMappingURL=safe-area.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"safe-area.js","sourceRoot":"","sources":["../../../src/tailwind/plugins/safe-area.ts"],"names":[],"mappings":"AAAA,iDAAiD;AACjD,MAAM,MAAM,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC;AAE7C,MAAM,QAAQ,GAAG,MAAM,CAAC,CAAC,EAAE,YAAY,EAAE,EAAE,EAAE;EAC5C,MAAM,SAAS,GAAG;IACjB,SAAS,EAAE;MACV,SAAS,EAAE,0BAA0B;MACrC,WAAW,EAAE,4BAA4B;MACzC,YAAY,EAAE,6BAA6B;MAC3C,UAAU,EAAE,2BAA2B;KACvC;IACD,UAAU,EAAE;MACX,WAAW,EAAE,4BAA4B;MACzC,UAAU,EAAE,2BAA2B;KACvC;IACD,UAAU,EAAE;MACX,SAAS,EAAE,0BAA0B;MACrC,YAAY,EAAE,6BAA6B;KAC3C;IACD,UAAU,EAAE;MACX,SAAS,EAAE,0BAA0B;KACrC;IACD,UAAU,EAAE;MACX,WAAW,EAAE,4BAA4B;KACzC;IACD,UAAU,EAAE;MACX,YAAY,EAAE,6BAA6B;KAC3C;IACD,UAAU,EAAE;MACX,UAAU,EAAE,2BAA2B;KACvC;IACD,SAAS,EAAE;MACV,UAAU,EAAE,0BAA0B;MACtC,YAAY,EAAE,4BAA4B;MAC1C,aAAa,EAAE,6BAA6B;MAC5C,WAAW,EAAE,2BAA2B;KACxC;IACD,UAAU,EAAE;MACX,YAAY,EAAE,4BAA4B;MAC1C,WAAW,EAAE,2BAA2B;KACxC;IACD,UAAU,EAAE;MACX,UAAU,EAAE,0BAA0B;MACtC,aAAa,EAAE,6BAA6B;KAC5C;IACD,UAAU,EAAE;MACX,UAAU,EAAE,0BAA0B;KACtC;IACD,UAAU,EAAE;MACX,YAAY,EAAE,4BAA4B;KAC1C;IACD,UAAU,EAAE;MACX,aAAa,EAAE,6BAA6B;KAC5C;IACD,UAAU,EAAE;MACX,WAAW,EAAE,2BAA2B;KACxC;IACD,eAAe,EAAE;MAChB,SAAS,EAAE,OAAO;KAClB;IACD,oBAAoB,EAAE;MACrB,SAAS,EACR,wEAAwE;KACzE;IACD,eAAe,EAAE;MAChB,SAAS,EAAE,OAAO;KAClB;IACD,oBAAoB,EAAE;MACrB,SAAS,EACR,wEAAwE;KACzE;IACD,gBAAgB,EAAE;MACjB,MAAM,EAAE,wEAAwE;KAChF;IACD,eAAe,EAAE;MAChB,QAAQ,EAAE,OAAO;KACjB;IACD,oBAAoB,EAAE;MACrB,QAAQ,EACP,wEAAwE;KACzE;IACD,eAAe,EAAE;MAChB,QAAQ,EAAE,OAAO;KACjB;IACD,oBAAoB,EAAE;MACrB,QAAQ,EACP,wEAAwE;KACzE;IACD,gBAAgB,EAAE;MACjB,KAAK,EAAE,wEAAwE;KAC/E;GACD,CAAC;EAEF,YAAY,CAAC,SAAS,CAAC,CAAC;AACzB,CAAC,CAAC,CAAC;AAEH,iDAAiD;AACjD,eAAe,QAAQ,CAAC","sourcesContent":["// eslint-disable-next-line unicorn/prefer-module\nconst plugin = require('tailwindcss/plugin');\n\nconst safeArea = plugin(({ addUtilities }) => {\n\tconst utilities = {\n\t\t'.m-safe': {\n\t\t\tmarginTop: 'env(safe-area-inset-top)',\n\t\t\tmarginRight: 'env(safe-area-inset-right)',\n\t\t\tmarginBottom: 'env(safe-area-inset-bottom)',\n\t\t\tmarginLeft: 'env(safe-area-inset-left)',\n\t\t},\n\t\t'.mx-safe': {\n\t\t\tmarginRight: 'env(safe-area-inset-right)',\n\t\t\tmarginLeft: 'env(safe-area-inset-left)',\n\t\t},\n\t\t'.my-safe': {\n\t\t\tmarginTop: 'env(safe-area-inset-top)',\n\t\t\tmarginBottom: 'env(safe-area-inset-bottom)',\n\t\t},\n\t\t'.mt-safe': {\n\t\t\tmarginTop: 'env(safe-area-inset-top)',\n\t\t},\n\t\t'.mr-safe': {\n\t\t\tmarginRight: 'env(safe-area-inset-right)',\n\t\t},\n\t\t'.mb-safe': {\n\t\t\tmarginBottom: 'env(safe-area-inset-bottom)',\n\t\t},\n\t\t'.ml-safe': {\n\t\t\tmarginLeft: 'env(safe-area-inset-left)',\n\t\t},\n\t\t'.p-safe': {\n\t\t\tpaddingTop: 'env(safe-area-inset-top)',\n\t\t\tpaddingRight: 'env(safe-area-inset-right)',\n\t\t\tpaddingBottom: 'env(safe-area-inset-bottom)',\n\t\t\tpaddingLeft: 'env(safe-area-inset-left)',\n\t\t},\n\t\t'.px-safe': {\n\t\t\tpaddingRight: 'env(safe-area-inset-right)',\n\t\t\tpaddingLeft: 'env(safe-area-inset-left)',\n\t\t},\n\t\t'.py-safe': {\n\t\t\tpaddingTop: 'env(safe-area-inset-top)',\n\t\t\tpaddingBottom: 'env(safe-area-inset-bottom)',\n\t\t},\n\t\t'.pt-safe': {\n\t\t\tpaddingTop: 'env(safe-area-inset-top)',\n\t\t},\n\t\t'.pr-safe': {\n\t\t\tpaddingRight: 'env(safe-area-inset-right)',\n\t\t},\n\t\t'.pb-safe': {\n\t\t\tpaddingBottom: 'env(safe-area-inset-bottom)',\n\t\t},\n\t\t'.pl-safe': {\n\t\t\tpaddingLeft: 'env(safe-area-inset-left)',\n\t\t},\n\t\t'.min-h-screen': {\n\t\t\tminHeight: '100vh',\n\t\t},\n\t\t'.min-h-screen-safe': {\n\t\t\tminHeight:\n\t\t\t\t'calc(100vh - (env(safe-area-inset-top) + env(safe-area-inset-bottom)))',\n\t\t},\n\t\t'.max-h-screen': {\n\t\t\tmaxHeight: '100vh',\n\t\t},\n\t\t'.max-h-screen-safe': {\n\t\t\tmaxHeight:\n\t\t\t\t'calc(100vh - (env(safe-area-inset-top) + env(safe-area-inset-bottom)))',\n\t\t},\n\t\t'.h-screen-safe': {\n\t\t\theight: 'calc(100vh - (env(safe-area-inset-top) + env(safe-area-inset-bottom)))',\n\t\t},\n\t\t'.min-w-screen': {\n\t\t\tminWidth: '100vw',\n\t\t},\n\t\t'.min-w-screen-safe': {\n\t\t\tminWidth:\n\t\t\t\t'calc(100vw - (env(safe-area-inset-left) + env(safe-area-inset-right)))',\n\t\t},\n\t\t'.max-w-screen': {\n\t\t\tmaxWidth: '100vw',\n\t\t},\n\t\t'.max-w-screen-safe': {\n\t\t\tmaxWidth:\n\t\t\t\t'calc(100vw - (env(safe-area-inset-left) + env(safe-area-inset-right)))',\n\t\t},\n\t\t'.w-screen-safe': {\n\t\t\twidth: 'calc(100vw - (env(safe-area-inset-left) + env(safe-area-inset-right)))',\n\t\t},\n\t};\n\n\taddUtilities(utilities);\n});\n\n// eslint-disable-next-line unicorn/prefer-module\nexport default safeArea;\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rotate.js","sourceRoot":"","sources":["../../src/tailwind/rotate.ts"],"names":[],"mappings":"AAAA,MAAM,aAAa,GAAG,EAAE,CAAC;AAEzB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,EAAE,CAAC,EAAE,EAAE;EAC7B,aAAa,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,GAAG,CAAC,KAAK,CAAC;EAClC,aAAa,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC;CACpC;AAED,eAAe,aAAa,CAAC","sourcesContent":["const rotateNumbers = {};\n\nfor (let i = 1; i < 360; i++) {\n\trotateNumbers[`${i}`] = `${i}deg`;\n\trotateNumbers[`-${i}`] = `-${i}deg`;\n}\n\nexport default rotateNumbers;\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scale.js","sourceRoot":"","sources":["../../src/tailwind/scale.ts"],"names":[],"mappings":"AAAA,eAAe;EACd,IAAI,EAAE,IAAI;CACV,CAAC","sourcesContent":["export default {\n\tflip: '-1',\n};\n"]}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
'layout-2560': '160rem',
|
|
1
|
+
export default {
|
|
2
|
+
tablet: '40rem',
|
|
3
|
+
'desktop-xs': '64rem',
|
|
4
|
+
'desktop-sm': '80rem',
|
|
5
|
+
desktop: '85.375rem',
|
|
6
|
+
'desktop-lg': '90rem',
|
|
7
|
+
'desktop-xl': '120rem',
|
|
8
|
+
// layout sizes
|
|
9
|
+
'layout-1280': '80rem',
|
|
10
|
+
'layout-1440': '90rem',
|
|
11
|
+
'layout-1536': '96rem',
|
|
12
|
+
'layout-1680': '105rem',
|
|
13
|
+
'layout-1920': '120rem',
|
|
14
|
+
'layout-2560': '160rem',
|
|
16
15
|
};
|
|
16
|
+
//# sourceMappingURL=screens.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"screens.js","sourceRoot":"","sources":["../../src/tailwind/screens.ts"],"names":[],"mappings":"AAAA,eAAe;EACd,MAAM,EAAE,OAAO;EACf,YAAY,EAAE,OAAO;EACrB,YAAY,EAAE,OAAO;EACrB,OAAO,EAAE,WAAW;EACpB,YAAY,EAAE,OAAO;EACrB,YAAY,EAAE,QAAQ;EAEtB,eAAe;EACf,aAAa,EAAE,OAAO;EACtB,aAAa,EAAE,OAAO;EACtB,aAAa,EAAE,OAAO;EACtB,aAAa,EAAE,QAAQ;EACvB,aAAa,EAAE,QAAQ;EACvB,aAAa,EAAE,QAAQ;CACvB,CAAC","sourcesContent":["export default {\n\ttablet: '40rem', // 640 px\n\t'desktop-xs': '64rem', // 1024 px\n\t'desktop-sm': '80rem', // 1360 px\n\tdesktop: '85.375rem', // 1366\n\t'desktop-lg': '90rem', // 1440\n\t'desktop-xl': '120rem', // 1920\n\n\t// layout sizes\n\t'layout-1280': '80rem',\n\t'layout-1440': '90rem',\n\t'layout-1536': '96rem',\n\t'layout-1680': '105rem',\n\t'layout-1920': '120rem',\n\t'layout-2560': '160rem',\n};\n"]}
|
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
export default {
|
|
2
|
+
1: '0px 0.0625rem 0.05rem rgba(0,0,0, 0.5)',
|
|
3
|
+
2: '0px 0.0625rem 0.1125rem rgba(0,0,0, 0.65)',
|
|
4
|
+
3: '0px 0.0625rem 0.125rem rgba(0,0,0, 0.65)',
|
|
5
|
+
4: [
|
|
6
|
+
'0px 0.3125rem 1rem rgba(0,24,98, 0.08)',
|
|
7
|
+
'0px 0.0625rem 0.1875rem rgba(0,24,98, 0.13)',
|
|
8
|
+
],
|
|
9
|
+
5: '0px 0.1875rem 1rem rgba(0,24,98, 0.3)',
|
|
10
|
+
transparent: 'transparent',
|
|
11
|
+
'button-primary-hover': '0px 2px 4px rgba(44,75,169, 0.4)',
|
|
12
|
+
'button-secondary-hover': '0px 2px 4px rgba(176,178,203, 0.4)',
|
|
13
13
|
};
|
|
14
|
+
//# sourceMappingURL=shadows.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shadows.js","sourceRoot":"","sources":["../../src/tailwind/shadows.ts"],"names":[],"mappings":"AAAA,eAAe;EACd,CAAC,EAAE,wCAAwC;EAC3C,CAAC,EAAE,2CAA2C;EAC9C,CAAC,EAAE,0CAA0C;EAC7C,CAAC,EAAE;IACF,wCAAwC;IACxC,6CAA6C;GAC7C;EACD,CAAC,EAAE,uCAAuC;EAC1C,WAAW,EAAE,aAAa;EAC1B,sBAAsB,EAAE,kCAAkC;EAC1D,wBAAwB,EAAE,oCAAoC;CAC9D,CAAC","sourcesContent":["export default {\n\t1: '0px 0.0625rem 0.05rem rgba(0,0,0, 0.5)',\n\t2: '0px 0.0625rem 0.1125rem rgba(0,0,0, 0.65)',\n\t3: '0px 0.0625rem 0.125rem rgba(0,0,0, 0.65)',\n\t4: [\n\t\t'0px 0.3125rem 1rem rgba(0,24,98, 0.08)',\n\t\t'0px 0.0625rem 0.1875rem rgba(0,24,98, 0.13)',\n\t],\n\t5: '0px 0.1875rem 1rem rgba(0,24,98, 0.3)',\n\ttransparent: 'transparent',\n\t'button-primary-hover': '0px 2px 4px rgba(44,75,169, 0.4)',\n\t'button-secondary-hover': '0px 2px 4px rgba(176,178,203, 0.4)',\n};\n"]}
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
18: '4.5rem',
|
|
1
|
+
export default {
|
|
2
|
+
// default variant layout
|
|
3
|
+
'content-mobile-x': '1rem',
|
|
4
|
+
'content-mobile-y': '1.5rem',
|
|
5
|
+
'content-desktop-x': '2rem',
|
|
6
|
+
'content-desktop-y': '2rem',
|
|
7
|
+
18: '4.5rem',
|
|
10
8
|
};
|
|
9
|
+
//# sourceMappingURL=spacing.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"spacing.js","sourceRoot":"","sources":["../../src/tailwind/spacing.ts"],"names":[],"mappings":"AAAA,eAAe;EACd,yBAAyB;EACzB,kBAAkB,EAAE,MAAM;EAC1B,kBAAkB,EAAE,QAAQ;EAE5B,mBAAmB,EAAE,MAAM;EAC3B,mBAAmB,EAAE,MAAM;EAE3B,EAAE,EAAE,QAAQ;CACZ,CAAC","sourcesContent":["export default {\n\t// default variant layout\n\t'content-mobile-x': '1rem',\n\t'content-mobile-y': '1.5rem',\n\n\t'content-desktop-x': '2rem',\n\t'content-desktop-y': '2rem',\n\n\t18: '4.5rem',\n};\n"]}
|
|
@@ -1,21 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
}
|
|
1
|
+
export default {
|
|
2
|
+
fontSize: {
|
|
3
|
+
h1: '2.5rem',
|
|
4
|
+
h2: '2rem',
|
|
5
|
+
h3: '1.5rem',
|
|
6
|
+
h4: '1.25rem',
|
|
7
|
+
h5: '1.125rem',
|
|
8
|
+
body: '1rem',
|
|
9
|
+
'body-2': '1.125rem',
|
|
10
|
+
xxs: '0.6875rem',
|
|
11
|
+
},
|
|
12
|
+
lineHeight: {
|
|
13
|
+
h1: '3rem',
|
|
14
|
+
h2: '2.5rem',
|
|
15
|
+
h3: '1.875rem',
|
|
16
|
+
h4: '1.625rem',
|
|
17
|
+
h5: '1.375rem',
|
|
18
|
+
body: '1.75rem',
|
|
19
|
+
'body-2': '1.875rem',
|
|
20
|
+
},
|
|
21
|
+
};
|
|
22
|
+
//# sourceMappingURL=typography.js.map
|