@paperless/core 1.40.0 → 1.42.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.
Files changed (107) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist/build/index.esm.js +1 -1
  3. package/dist/build/index.esm.js.map +1 -1
  4. package/dist/build/p-1079ffc6.entry.js.map +1 -1
  5. package/dist/cjs/index.cjs.js +51 -0
  6. package/dist/cjs/index.cjs.js.map +1 -1
  7. package/dist/cjs/p-floating-menu-container_8.cjs.entry.js.map +1 -1
  8. package/dist/collection/components/atoms/floating-menu-item/floating-menu-item.component.js +1 -1
  9. package/dist/collection/components/atoms/floating-menu-item/floating-menu-item.component.js.map +1 -1
  10. package/dist/collection/tailwind/animation.js +85 -85
  11. package/dist/collection/tailwind/animation.js.map +1 -0
  12. package/dist/collection/tailwind/backdrop-blur.js +3 -2
  13. package/dist/collection/tailwind/backdrop-blur.js.map +1 -0
  14. package/dist/collection/tailwind/border-radius.js +11 -10
  15. package/dist/collection/tailwind/border-radius.js.map +1 -0
  16. package/dist/collection/tailwind/colors.js +2 -1
  17. package/dist/collection/tailwind/colors.js.map +1 -0
  18. package/dist/collection/tailwind/height.js +5 -4
  19. package/dist/collection/tailwind/height.js.map +1 -0
  20. package/dist/collection/tailwind/plugins/hover.js +30 -0
  21. package/dist/collection/tailwind/plugins/hover.js.map +1 -0
  22. package/dist/collection/tailwind/plugins/safe-area.js +87 -93
  23. package/dist/collection/tailwind/plugins/safe-area.js.map +1 -0
  24. package/dist/collection/tailwind/rotate.js +2 -3
  25. package/dist/collection/tailwind/rotate.js.map +1 -0
  26. package/dist/collection/tailwind/scale.js +2 -1
  27. package/dist/collection/tailwind/scale.js.map +1 -0
  28. package/dist/collection/tailwind/screens.js +15 -15
  29. package/dist/collection/tailwind/screens.js.map +1 -0
  30. package/dist/collection/tailwind/shadows.js +13 -12
  31. package/dist/collection/tailwind/shadows.js.map +1 -0
  32. package/dist/collection/tailwind/spacing.js +8 -9
  33. package/dist/collection/tailwind/spacing.js.map +1 -0
  34. package/dist/collection/tailwind/typography.js +22 -21
  35. package/dist/collection/tailwind/typography.js.map +1 -0
  36. package/dist/collection/tailwind/width.js +14 -15
  37. package/dist/collection/tailwind/width.js.map +1 -0
  38. package/dist/collection/tailwind/z-index.js +13 -18
  39. package/dist/collection/tailwind/z-index.js.map +1 -0
  40. package/dist/collection/tailwind.config.js +34 -41
  41. package/dist/collection/tailwind.config.js.map +1 -0
  42. package/dist/collection/utils/index.js +1 -0
  43. package/dist/collection/utils/index.js.map +1 -1
  44. package/dist/collection/utils/screens.js +26 -0
  45. package/dist/collection/utils/screens.js.map +1 -0
  46. package/dist/components/floating-menu-item.component.js.map +1 -1
  47. package/dist/components/index.js +42 -1
  48. package/dist/components/index.js.map +1 -1
  49. package/dist/esm/index.js +42 -1
  50. package/dist/esm/index.js.map +1 -1
  51. package/dist/esm/p-floating-menu-container_8.entry.js.map +1 -1
  52. package/dist/index.html +1 -1
  53. package/dist/paperless/index.esm.js +1 -1
  54. package/dist/paperless/index.esm.js.map +1 -1
  55. package/dist/paperless/p-1079ffc6.entry.js.map +1 -1
  56. package/dist/sw.js +1 -1
  57. package/dist/sw.js.map +1 -1
  58. package/dist/tailwind/animation.ts +87 -0
  59. package/dist/tailwind/backdrop-blur.ts +3 -0
  60. package/dist/tailwind/border-radius.ts +11 -0
  61. package/dist/tailwind/colors.ts +52 -0
  62. package/dist/tailwind/height.ts +5 -0
  63. package/dist/tailwind/plugins/hover.ts +36 -0
  64. package/dist/tailwind/plugins/safe-area.ts +98 -0
  65. package/dist/tailwind/rotate.ts +8 -0
  66. package/dist/tailwind/scale.ts +3 -0
  67. package/dist/tailwind/{screens.js → screens.ts} +1 -1
  68. package/dist/tailwind/shadows.ts +13 -0
  69. package/dist/tailwind/spacing.ts +10 -0
  70. package/dist/tailwind/typography.ts +21 -0
  71. package/dist/tailwind/{width.js → width.ts} +1 -1
  72. package/dist/tailwind/z-index.ts +19 -0
  73. package/dist/tailwind.config.ts +45 -0
  74. package/dist/types/components/atoms/floating-menu-item/floating-menu-item.component.d.ts +1 -1
  75. package/dist/types/components.d.ts +2 -2
  76. package/dist/types/tailwind/animation.d.ts +151 -0
  77. package/dist/types/tailwind/backdrop-blur.d.ts +4 -0
  78. package/dist/types/tailwind/border-radius.d.ts +12 -0
  79. package/dist/types/tailwind/colors.d.ts +53 -0
  80. package/dist/types/tailwind/height.d.ts +6 -0
  81. package/dist/types/tailwind/plugins/hover.d.ts +7 -0
  82. package/dist/types/tailwind/plugins/safe-area.d.ts +2 -0
  83. package/dist/types/tailwind/rotate.d.ts +2 -0
  84. package/dist/types/tailwind/scale.d.ts +4 -0
  85. package/dist/types/tailwind/screens.d.ts +15 -0
  86. package/dist/types/tailwind/shadows.d.ts +11 -0
  87. package/dist/types/tailwind/spacing.d.ts +8 -0
  88. package/dist/types/tailwind/typography.d.ts +22 -0
  89. package/dist/types/tailwind/width.d.ts +13 -0
  90. package/dist/types/tailwind/z-index.d.ts +14 -0
  91. package/dist/types/tailwind.config.d.ts +313 -0
  92. package/dist/types/utils/index.d.ts +1 -0
  93. package/dist/types/utils/screens.d.ts +12 -0
  94. package/package.json +2 -2
  95. package/dist/tailwind/animation.js +0 -87
  96. package/dist/tailwind/backdrop-blur.js +0 -3
  97. package/dist/tailwind/border-radius.js +0 -11
  98. package/dist/tailwind/colors.js +0 -52
  99. package/dist/tailwind/height.js +0 -5
  100. package/dist/tailwind/plugins/safe-area.js +0 -98
  101. package/dist/tailwind/rotate.js +0 -8
  102. package/dist/tailwind/scale.js +0 -3
  103. package/dist/tailwind/shadows.js +0 -13
  104. package/dist/tailwind/spacing.js +0 -10
  105. package/dist/tailwind/typography.js +0 -21
  106. package/dist/tailwind/z-index.js +0 -19
  107. package/dist/tailwind.config.js +0 -42
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ height: {
3
+ unset: string;
4
+ };
5
+ };
6
+ export default _default;
@@ -0,0 +1,7 @@
1
+ declare const _default: {
2
+ plugins: {
3
+ handler: import("tailwindcss/types/config").PluginCreator;
4
+ config?: Partial<import("tailwindcss/types/config").Config>;
5
+ }[];
6
+ };
7
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const safeArea: any;
2
+ export default safeArea;
@@ -0,0 +1,2 @@
1
+ declare const rotateNumbers: {};
2
+ export default rotateNumbers;
@@ -0,0 +1,4 @@
1
+ declare const _default: {
2
+ flip: string;
3
+ };
4
+ export default _default;
@@ -0,0 +1,15 @@
1
+ declare const _default: {
2
+ tablet: string;
3
+ 'desktop-xs': string;
4
+ 'desktop-sm': string;
5
+ desktop: string;
6
+ 'desktop-lg': string;
7
+ 'desktop-xl': string;
8
+ 'layout-1280': string;
9
+ 'layout-1440': string;
10
+ 'layout-1536': string;
11
+ 'layout-1680': string;
12
+ 'layout-1920': string;
13
+ 'layout-2560': string;
14
+ };
15
+ export default _default;
@@ -0,0 +1,11 @@
1
+ declare const _default: {
2
+ 1: string;
3
+ 2: string;
4
+ 3: string;
5
+ 4: string[];
6
+ 5: string;
7
+ transparent: string;
8
+ 'button-primary-hover': string;
9
+ 'button-secondary-hover': string;
10
+ };
11
+ export default _default;
@@ -0,0 +1,8 @@
1
+ declare const _default: {
2
+ 'content-mobile-x': string;
3
+ 'content-mobile-y': string;
4
+ 'content-desktop-x': string;
5
+ 'content-desktop-y': string;
6
+ 18: string;
7
+ };
8
+ export default _default;
@@ -0,0 +1,22 @@
1
+ declare const _default: {
2
+ fontSize: {
3
+ h1: string;
4
+ h2: string;
5
+ h3: string;
6
+ h4: string;
7
+ h5: string;
8
+ body: string;
9
+ 'body-2': string;
10
+ xxs: string;
11
+ };
12
+ lineHeight: {
13
+ h1: string;
14
+ h2: string;
15
+ h3: string;
16
+ h4: string;
17
+ h5: string;
18
+ body: string;
19
+ 'body-2': string;
20
+ };
21
+ };
22
+ export default _default;
@@ -0,0 +1,13 @@
1
+ declare const _default: {
2
+ width: {
3
+ unset: string;
4
+ 'content-mobile': string;
5
+ 'content-1280': string;
6
+ 'content-1440': string;
7
+ 'content-1536': string;
8
+ 'content-1680': string;
9
+ 'sidebar-desktop-login': string;
10
+ 'content-desktop-login': string;
11
+ };
12
+ };
13
+ export default _default;
@@ -0,0 +1,14 @@
1
+ declare const _default: {
2
+ 'floating-menu': number;
3
+ dropdown: number;
4
+ 'navbar-topbar': number;
5
+ 'navbar-backdrop': number;
6
+ navbar: number;
7
+ backdrop: number;
8
+ drawer: number;
9
+ 'drawer-header': number;
10
+ modal: number;
11
+ tooltip: number;
12
+ toast: number;
13
+ };
14
+ export default _default;
@@ -0,0 +1,313 @@
1
+ declare const _default: {
2
+ important: boolean;
3
+ theme: {
4
+ colors: {
5
+ transparent: string;
6
+ current: string;
7
+ indigo: {
8
+ dark: string;
9
+ DEFAULT: string;
10
+ light: string;
11
+ };
12
+ sky: {
13
+ dark: string;
14
+ DEFAULT: string;
15
+ light: string;
16
+ vague: string;
17
+ };
18
+ mystic: {
19
+ blank: string;
20
+ dark: string;
21
+ DEFAULT: string;
22
+ light: string;
23
+ medium: string;
24
+ };
25
+ redberry: {
26
+ dark: string;
27
+ DEFAULT: string;
28
+ light: string;
29
+ medium: string;
30
+ };
31
+ storm: {
32
+ dark: string;
33
+ DEFAULT: string;
34
+ light: string;
35
+ medium: string;
36
+ vague: string;
37
+ };
38
+ negative: {
39
+ dark: string;
40
+ DEFAULT: string;
41
+ light: string;
42
+ };
43
+ positive: {
44
+ dark: string;
45
+ DEFAULT: string;
46
+ light: string;
47
+ };
48
+ unbiased: {
49
+ dark: string;
50
+ DEFAULT: string;
51
+ light: string;
52
+ };
53
+ white: string;
54
+ black: string;
55
+ };
56
+ boxShadow: {
57
+ 1: string;
58
+ 2: string;
59
+ 3: string;
60
+ 4: string[];
61
+ 5: string;
62
+ transparent: string;
63
+ 'button-primary-hover': string;
64
+ 'button-secondary-hover': string;
65
+ };
66
+ dropShadow: {
67
+ 1: string;
68
+ 2: string;
69
+ 3: string;
70
+ 4: string[];
71
+ 5: string;
72
+ transparent: string;
73
+ 'button-primary-hover': string;
74
+ 'button-secondary-hover': string;
75
+ };
76
+ borderRadius: {
77
+ xxxlarge: string;
78
+ xxlarge: string;
79
+ xlarge: string;
80
+ large: string;
81
+ DEFAULT: string;
82
+ medium: string;
83
+ small: string;
84
+ none: number;
85
+ round: string;
86
+ };
87
+ extend: {
88
+ scale: {
89
+ flip: string;
90
+ };
91
+ rotate: {};
92
+ fontSize: {
93
+ h1: string;
94
+ h2: string;
95
+ h3: string;
96
+ h4: string;
97
+ h5: string;
98
+ body: string;
99
+ 'body-2': string;
100
+ xxs: string;
101
+ };
102
+ lineHeight: {
103
+ h1: string;
104
+ h2: string;
105
+ h3: string;
106
+ h4: string;
107
+ h5: string;
108
+ body: string;
109
+ 'body-2': string;
110
+ };
111
+ backdropBlur: {
112
+ xs: string;
113
+ };
114
+ zIndex: {
115
+ 'floating-menu': number;
116
+ dropdown: number;
117
+ 'navbar-topbar': number;
118
+ 'navbar-backdrop': number;
119
+ navbar: number;
120
+ backdrop: number;
121
+ drawer: number;
122
+ 'drawer-header': number;
123
+ modal: number;
124
+ tooltip: number;
125
+ toast: number;
126
+ };
127
+ screens: {
128
+ tablet: string;
129
+ 'desktop-xs': string;
130
+ 'desktop-sm': string;
131
+ desktop: string;
132
+ 'desktop-lg': string;
133
+ 'desktop-xl': string;
134
+ 'layout-1280': string;
135
+ 'layout-1440': string;
136
+ 'layout-1536': string;
137
+ 'layout-1680': string;
138
+ 'layout-1920': string;
139
+ 'layout-2560': string;
140
+ };
141
+ width: {
142
+ unset: string;
143
+ 'content-mobile': string;
144
+ 'content-1280': string;
145
+ 'content-1440': string;
146
+ 'content-1536': string;
147
+ 'content-1680': string;
148
+ 'sidebar-desktop-login': string;
149
+ 'content-desktop-login': string;
150
+ };
151
+ height: {
152
+ unset: string;
153
+ };
154
+ spacing: {
155
+ 'content-mobile-x': string;
156
+ 'content-mobile-y': string;
157
+ 'content-desktop-x': string;
158
+ 'content-desktop-y': string;
159
+ 18: string;
160
+ };
161
+ animation: {
162
+ 'fade-in': string;
163
+ 'fade-out': string;
164
+ 'slide-in-right': string;
165
+ 'slide-in-left': string;
166
+ 'slide-in-top': string;
167
+ 'slide-in-bottom': string;
168
+ 'slide-in-right-small': string;
169
+ 'slide-in-left-small': string;
170
+ 'slide-in-top-small': string;
171
+ 'slide-in-bottom-small': string;
172
+ 'slide-out-right': string;
173
+ 'slide-out-left': string;
174
+ 'slide-out-top': string;
175
+ 'slide-out-bottom': string;
176
+ 'slide-out-top-small': string;
177
+ 'slide-out-bottom-small': string;
178
+ };
179
+ keyframes: {
180
+ fadeIn: {
181
+ '0%': {
182
+ opacity: number;
183
+ };
184
+ '100%': {
185
+ opacity: number;
186
+ };
187
+ };
188
+ fadeOut: {
189
+ '0%': {
190
+ opacity: number;
191
+ };
192
+ '100%': {
193
+ opacity: number;
194
+ };
195
+ };
196
+ slideInRight: {
197
+ '0%': {
198
+ transform: string;
199
+ };
200
+ '100%': {
201
+ transform: string;
202
+ };
203
+ };
204
+ slideInLeft: {
205
+ '0%': {
206
+ transform: string;
207
+ };
208
+ '100%': {
209
+ transform: string;
210
+ };
211
+ };
212
+ slideInTop: {
213
+ '0%': {
214
+ transform: string;
215
+ };
216
+ '100%': {
217
+ transform: string;
218
+ };
219
+ };
220
+ slideInBottom: {
221
+ '0%': {
222
+ transform: string;
223
+ };
224
+ '100%': {
225
+ transform: string;
226
+ };
227
+ };
228
+ slideInRightSmall: {
229
+ '0%': {
230
+ transform: string;
231
+ };
232
+ '100%': {
233
+ transform: string;
234
+ };
235
+ };
236
+ slideInLeftSmall: {
237
+ '0%': {
238
+ transform: string;
239
+ };
240
+ '100%': {
241
+ transform: string;
242
+ };
243
+ };
244
+ slideInTopSmall: {
245
+ '0%': {
246
+ transform: string;
247
+ };
248
+ '100%': {
249
+ transform: string;
250
+ };
251
+ };
252
+ slideInBottomSmall: {
253
+ '0%': {
254
+ transform: string;
255
+ };
256
+ '100%': {
257
+ transform: string;
258
+ };
259
+ };
260
+ slideOutRight: {
261
+ '0%': {
262
+ transform: string;
263
+ };
264
+ '100%': {
265
+ transform: string;
266
+ };
267
+ };
268
+ slideOutLeft: {
269
+ '0%': {
270
+ transform: string;
271
+ };
272
+ '100%': {
273
+ transform: string;
274
+ };
275
+ };
276
+ slideOutTop: {
277
+ '0%': {
278
+ transform: string;
279
+ };
280
+ '100%': {
281
+ transform: string;
282
+ };
283
+ };
284
+ slideOutBottom: {
285
+ '0%': {
286
+ transform: string;
287
+ };
288
+ '100%': {
289
+ transform: string;
290
+ };
291
+ };
292
+ slideOutTopSmall: {
293
+ '0%': {
294
+ transform: string;
295
+ };
296
+ '100%': {
297
+ transform: string;
298
+ };
299
+ };
300
+ slideOutBottomSmall: {
301
+ '0%': {
302
+ transform: string;
303
+ };
304
+ '100%': {
305
+ transform: string;
306
+ };
307
+ };
308
+ };
309
+ };
310
+ };
311
+ plugins: any[];
312
+ };
313
+ export default _default;
@@ -4,3 +4,4 @@ export * from './illustrations';
4
4
  export * from './localization';
5
5
  export * from './object-get-by-path';
6
6
  export * from './transformers';
7
+ export * from './screens';
@@ -0,0 +1,12 @@
1
+ import screens from '../tailwind/screens';
2
+ export type ScreenSize = keyof typeof screens;
3
+ export declare const getScreenSize: (size: ScreenSize) => string;
4
+ export declare const getScreenSizeInRem: (size: ScreenSize) => number;
5
+ export declare const getScreenSizeInPixels: (size: ScreenSize) => number;
6
+ export declare const isBiggerThanScreen: (size: ScreenSize) => boolean;
7
+ export declare const isSmallerThanScreen: (size: ScreenSize) => boolean;
8
+ export declare const isBetweenScreens: (smallSize: ScreenSize, bigSize: ScreenSize) => boolean;
9
+ export declare const isTouchDevice: () => boolean;
10
+ export declare const isMobile: () => boolean;
11
+ export declare const isTablet: () => boolean;
12
+ export declare const isDesktop: () => boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paperless/core",
3
- "version": "1.40.0",
3
+ "version": "1.42.0",
4
4
  "description": "Stencil Component Starter",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",
@@ -27,7 +27,7 @@
27
27
  "build:prod": "stencil build",
28
28
  "postbuild": "yarn tailwind:process",
29
29
  "postbuild:prod": "yarn tailwind:process",
30
- "tailwind:process": "tailwindcss -c ./src/tailwind.config.js -i dist/paperless/paperless.css -o dist/paperless/paperless.css",
30
+ "tailwind:process": "tailwindcss -c ./src/tailwind.config.ts -i dist/paperless/paperless.css -o dist/paperless/paperless.css",
31
31
  "tailwind:process:watch": "yarn tailwind:process --watch",
32
32
  "watch": "stencil build --watch",
33
33
  "watch:both": "concurrently \"yarn watch\" \"yarn tailwind:process:watch\"",
@@ -1,87 +0,0 @@
1
- module.exports = {
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
-
21
- keyframes: {
22
- fadeIn: {
23
- '0%': { opacity: 0 },
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
- },
86
- },
87
- };
@@ -1,3 +0,0 @@
1
- module.exports = {
2
- xs: '2px',
3
- };
@@ -1,11 +0,0 @@
1
- module.exports = {
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
- };
@@ -1,52 +0,0 @@
1
- module.exports = {
2
- transparent: 'transparent',
3
- current: 'currentColor',
4
- indigo: {
5
- dark: '#2C4BA9',
6
- DEFAULT: '#528AFA',
7
- light: '#F1F6FF',
8
- },
9
- sky: {
10
- dark: '#30C2C9',
11
- DEFAULT: '#1EDAE3',
12
- light: '#F5FEFF',
13
- vague: '#BBF4F6',
14
- },
15
- mystic: {
16
- blank: '#FFF',
17
- dark: '#DAE6F0',
18
- DEFAULT: '#F7FAFC',
19
- light: '#FCFDFE',
20
- medium: '#E3ECF3',
21
- },
22
- redberry: {
23
- dark: '#BD0F1E',
24
- DEFAULT: '#E63241',
25
- light: '#FFE8EA',
26
- medium: '#FF7D88',
27
- },
28
- storm: {
29
- dark: '#272838',
30
- DEFAULT: '#51536B',
31
- light: '#B0B2CB',
32
- medium: '#80829E',
33
- vague: '#989AB7',
34
- },
35
- negative: {
36
- dark: '#8A0F1D',
37
- DEFAULT: '#B91E28',
38
- light: '#FFCCD3',
39
- },
40
- positive: {
41
- dark: '#1DA360',
42
- DEFAULT: '#28D17C',
43
- light: '#E5FFF2',
44
- },
45
- unbiased: {
46
- dark: '#FFA231',
47
- DEFAULT: '#FFC72D',
48
- light: '#FFF6DC',
49
- },
50
- white: '#FFF',
51
- black: '#000',
52
- };
@@ -1,5 +0,0 @@
1
- module.exports = {
2
- height: {
3
- unset: 'unset',
4
- },
5
- };