@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.
Files changed (103) hide show
  1. package/CHANGELOG.md +16 -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/safe-area.js +87 -93
  21. package/dist/collection/tailwind/plugins/safe-area.js.map +1 -0
  22. package/dist/collection/tailwind/rotate.js +2 -3
  23. package/dist/collection/tailwind/rotate.js.map +1 -0
  24. package/dist/collection/tailwind/scale.js +2 -1
  25. package/dist/collection/tailwind/scale.js.map +1 -0
  26. package/dist/collection/tailwind/screens.js +15 -15
  27. package/dist/collection/tailwind/screens.js.map +1 -0
  28. package/dist/collection/tailwind/shadows.js +13 -12
  29. package/dist/collection/tailwind/shadows.js.map +1 -0
  30. package/dist/collection/tailwind/spacing.js +8 -9
  31. package/dist/collection/tailwind/spacing.js.map +1 -0
  32. package/dist/collection/tailwind/typography.js +22 -21
  33. package/dist/collection/tailwind/typography.js.map +1 -0
  34. package/dist/collection/tailwind/width.js +14 -15
  35. package/dist/collection/tailwind/width.js.map +1 -0
  36. package/dist/collection/tailwind/z-index.js +13 -18
  37. package/dist/collection/tailwind/z-index.js.map +1 -0
  38. package/dist/collection/tailwind.config.js +32 -41
  39. package/dist/collection/tailwind.config.js.map +1 -0
  40. package/dist/collection/utils/index.js +1 -0
  41. package/dist/collection/utils/index.js.map +1 -1
  42. package/dist/collection/utils/screens.js +26 -0
  43. package/dist/collection/utils/screens.js.map +1 -0
  44. package/dist/components/floating-menu-item.component.js.map +1 -1
  45. package/dist/components/index.js +42 -1
  46. package/dist/components/index.js.map +1 -1
  47. package/dist/esm/index.js +42 -1
  48. package/dist/esm/index.js.map +1 -1
  49. package/dist/esm/p-floating-menu-container_8.entry.js.map +1 -1
  50. package/dist/index.html +1 -1
  51. package/dist/paperless/index.esm.js +1 -1
  52. package/dist/paperless/index.esm.js.map +1 -1
  53. package/dist/paperless/p-1079ffc6.entry.js.map +1 -1
  54. package/dist/sw.js +1 -1
  55. package/dist/sw.js.map +1 -1
  56. package/dist/tailwind/animation.ts +87 -0
  57. package/dist/tailwind/backdrop-blur.ts +3 -0
  58. package/dist/tailwind/border-radius.ts +11 -0
  59. package/dist/tailwind/colors.ts +52 -0
  60. package/dist/tailwind/height.ts +5 -0
  61. package/dist/tailwind/plugins/safe-area.ts +98 -0
  62. package/dist/tailwind/rotate.ts +8 -0
  63. package/dist/tailwind/scale.ts +3 -0
  64. package/dist/tailwind/{screens.js → screens.ts} +1 -1
  65. package/dist/tailwind/shadows.ts +13 -0
  66. package/dist/tailwind/spacing.ts +10 -0
  67. package/dist/tailwind/typography.ts +21 -0
  68. package/dist/tailwind/{width.js → width.ts} +1 -1
  69. package/dist/tailwind/z-index.ts +19 -0
  70. package/dist/tailwind.config.ts +43 -0
  71. package/dist/types/components/atoms/floating-menu-item/floating-menu-item.component.d.ts +1 -1
  72. package/dist/types/components.d.ts +2 -2
  73. package/dist/types/tailwind/animation.d.ts +151 -0
  74. package/dist/types/tailwind/backdrop-blur.d.ts +4 -0
  75. package/dist/types/tailwind/border-radius.d.ts +12 -0
  76. package/dist/types/tailwind/colors.d.ts +53 -0
  77. package/dist/types/tailwind/height.d.ts +6 -0
  78. package/dist/types/tailwind/plugins/safe-area.d.ts +2 -0
  79. package/dist/types/tailwind/rotate.d.ts +2 -0
  80. package/dist/types/tailwind/scale.d.ts +4 -0
  81. package/dist/types/tailwind/screens.d.ts +15 -0
  82. package/dist/types/tailwind/shadows.d.ts +11 -0
  83. package/dist/types/tailwind/spacing.d.ts +8 -0
  84. package/dist/types/tailwind/typography.d.ts +22 -0
  85. package/dist/types/tailwind/width.d.ts +13 -0
  86. package/dist/types/tailwind/z-index.d.ts +14 -0
  87. package/dist/types/tailwind.config.d.ts +313 -0
  88. package/dist/types/utils/index.d.ts +1 -0
  89. package/dist/types/utils/screens.d.ts +12 -0
  90. package/package.json +2 -2
  91. package/dist/tailwind/animation.js +0 -87
  92. package/dist/tailwind/backdrop-blur.js +0 -3
  93. package/dist/tailwind/border-radius.js +0 -11
  94. package/dist/tailwind/colors.js +0 -52
  95. package/dist/tailwind/height.js +0 -5
  96. package/dist/tailwind/plugins/safe-area.js +0 -98
  97. package/dist/tailwind/rotate.js +0 -8
  98. package/dist/tailwind/scale.js +0 -3
  99. package/dist/tailwind/shadows.js +0 -13
  100. package/dist/tailwind/spacing.js +0 -10
  101. package/dist/tailwind/typography.js +0 -21
  102. package/dist/tailwind/z-index.js +0 -19
  103. package/dist/tailwind.config.js +0 -42
@@ -0,0 +1,87 @@
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
+
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
+ };
@@ -0,0 +1,3 @@
1
+ export default {
2
+ xs: '2px',
3
+ };
@@ -0,0 +1,11 @@
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
+ };
@@ -0,0 +1,52 @@
1
+ export default {
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
+ };
@@ -0,0 +1,5 @@
1
+ export default {
2
+ height: {
3
+ unset: 'unset',
4
+ },
5
+ };
@@ -0,0 +1,98 @@
1
+ // eslint-disable-next-line unicorn/prefer-module
2
+ const plugin = require('tailwindcss/plugin');
3
+
4
+ const safeArea = plugin(({ addUtilities }) => {
5
+ const utilities = {
6
+ '.m-safe': {
7
+ marginTop: 'env(safe-area-inset-top)',
8
+ marginRight: 'env(safe-area-inset-right)',
9
+ marginBottom: 'env(safe-area-inset-bottom)',
10
+ marginLeft: 'env(safe-area-inset-left)',
11
+ },
12
+ '.mx-safe': {
13
+ marginRight: 'env(safe-area-inset-right)',
14
+ marginLeft: 'env(safe-area-inset-left)',
15
+ },
16
+ '.my-safe': {
17
+ marginTop: 'env(safe-area-inset-top)',
18
+ marginBottom: 'env(safe-area-inset-bottom)',
19
+ },
20
+ '.mt-safe': {
21
+ marginTop: 'env(safe-area-inset-top)',
22
+ },
23
+ '.mr-safe': {
24
+ marginRight: 'env(safe-area-inset-right)',
25
+ },
26
+ '.mb-safe': {
27
+ marginBottom: 'env(safe-area-inset-bottom)',
28
+ },
29
+ '.ml-safe': {
30
+ marginLeft: 'env(safe-area-inset-left)',
31
+ },
32
+ '.p-safe': {
33
+ paddingTop: 'env(safe-area-inset-top)',
34
+ paddingRight: 'env(safe-area-inset-right)',
35
+ paddingBottom: 'env(safe-area-inset-bottom)',
36
+ paddingLeft: 'env(safe-area-inset-left)',
37
+ },
38
+ '.px-safe': {
39
+ paddingRight: 'env(safe-area-inset-right)',
40
+ paddingLeft: 'env(safe-area-inset-left)',
41
+ },
42
+ '.py-safe': {
43
+ paddingTop: 'env(safe-area-inset-top)',
44
+ paddingBottom: 'env(safe-area-inset-bottom)',
45
+ },
46
+ '.pt-safe': {
47
+ paddingTop: 'env(safe-area-inset-top)',
48
+ },
49
+ '.pr-safe': {
50
+ paddingRight: 'env(safe-area-inset-right)',
51
+ },
52
+ '.pb-safe': {
53
+ paddingBottom: 'env(safe-area-inset-bottom)',
54
+ },
55
+ '.pl-safe': {
56
+ paddingLeft: 'env(safe-area-inset-left)',
57
+ },
58
+ '.min-h-screen': {
59
+ minHeight: '100vh',
60
+ },
61
+ '.min-h-screen-safe': {
62
+ minHeight:
63
+ 'calc(100vh - (env(safe-area-inset-top) + env(safe-area-inset-bottom)))',
64
+ },
65
+ '.max-h-screen': {
66
+ maxHeight: '100vh',
67
+ },
68
+ '.max-h-screen-safe': {
69
+ maxHeight:
70
+ 'calc(100vh - (env(safe-area-inset-top) + env(safe-area-inset-bottom)))',
71
+ },
72
+ '.h-screen-safe': {
73
+ height: 'calc(100vh - (env(safe-area-inset-top) + env(safe-area-inset-bottom)))',
74
+ },
75
+ '.min-w-screen': {
76
+ minWidth: '100vw',
77
+ },
78
+ '.min-w-screen-safe': {
79
+ minWidth:
80
+ 'calc(100vw - (env(safe-area-inset-left) + env(safe-area-inset-right)))',
81
+ },
82
+ '.max-w-screen': {
83
+ maxWidth: '100vw',
84
+ },
85
+ '.max-w-screen-safe': {
86
+ maxWidth:
87
+ 'calc(100vw - (env(safe-area-inset-left) + env(safe-area-inset-right)))',
88
+ },
89
+ '.w-screen-safe': {
90
+ width: 'calc(100vw - (env(safe-area-inset-left) + env(safe-area-inset-right)))',
91
+ },
92
+ };
93
+
94
+ addUtilities(utilities);
95
+ });
96
+
97
+ // eslint-disable-next-line unicorn/prefer-module
98
+ export default safeArea;
@@ -0,0 +1,8 @@
1
+ const rotateNumbers = {};
2
+
3
+ for (let i = 1; i < 360; i++) {
4
+ rotateNumbers[`${i}`] = `${i}deg`;
5
+ rotateNumbers[`-${i}`] = `-${i}deg`;
6
+ }
7
+
8
+ export default rotateNumbers;
@@ -0,0 +1,3 @@
1
+ export default {
2
+ flip: '-1',
3
+ };
@@ -1,4 +1,4 @@
1
- module.exports = {
1
+ export default {
2
2
  tablet: '40rem', // 640 px
3
3
  'desktop-xs': '64rem', // 1024 px
4
4
  'desktop-sm': '80rem', // 1360 px
@@ -0,0 +1,13 @@
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
+ };
@@ -0,0 +1,10 @@
1
+ export default {
2
+ // default variant layout
3
+ 'content-mobile-x': '1rem',
4
+ 'content-mobile-y': '1.5rem',
5
+
6
+ 'content-desktop-x': '2rem',
7
+ 'content-desktop-y': '2rem',
8
+
9
+ 18: '4.5rem',
10
+ };
@@ -0,0 +1,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
+ };
@@ -1,4 +1,4 @@
1
- module.exports = {
1
+ export default {
2
2
  width: {
3
3
  unset: 'unset',
4
4
 
@@ -0,0 +1,19 @@
1
+ export default {
2
+ 'floating-menu': 190,
3
+ dropdown: 200,
4
+
5
+ 'navbar-topbar': 280,
6
+ 'navbar-backdrop': 290,
7
+ navbar: 300,
8
+
9
+ backdrop: 490,
10
+
11
+ drawer: 500,
12
+ 'drawer-header': 501,
13
+
14
+ modal: 600,
15
+
16
+ tooltip: 601,
17
+
18
+ toast: 700,
19
+ };
@@ -0,0 +1,43 @@
1
+ import colors from './tailwind/colors';
2
+ import shadows from './tailwind/shadows';
3
+ import borderRadius from './tailwind/border-radius';
4
+ import scale from './tailwind/scale';
5
+ import rotate from './tailwind/rotate';
6
+ import typeograhpy from './tailwind/typography';
7
+ import backdropBlur from './tailwind/backdrop-blur';
8
+ import zIndex from './tailwind/z-index';
9
+ import animation from './tailwind/animation';
10
+ import screens from './tailwind/screens';
11
+ import width from './tailwind/width';
12
+ import height from './tailwind/height';
13
+ import spacing from './tailwind/spacing';
14
+
15
+ import safeArea from './tailwind/plugins/safe-area';
16
+
17
+ export default {
18
+ important: true,
19
+ theme: {
20
+ colors,
21
+ boxShadow: shadows,
22
+ dropShadow: shadows,
23
+ borderRadius,
24
+ extend: {
25
+ ...animation,
26
+ scale,
27
+ rotate,
28
+ fontSize: typeograhpy.fontSize,
29
+ lineHeight: typeograhpy.lineHeight,
30
+ backdropBlur,
31
+ zIndex,
32
+ screens,
33
+ width: width.width,
34
+ height: height.height,
35
+ spacing,
36
+ },
37
+ },
38
+ plugins: [
39
+ require('@tailwindcss/aspect-ratio'),
40
+ require('tailwind-scrollbar-hide'),
41
+ safeArea,
42
+ ],
43
+ };
@@ -1,6 +1,6 @@
1
1
  export declare class FloatingMenuItem {
2
2
  /**
3
- * The variant of the modal body
3
+ * Wether it should have a hover effect
4
4
  */
5
5
  hover: boolean;
6
6
  render(): any;
@@ -503,7 +503,7 @@ export namespace Components {
503
503
  }
504
504
  interface PFloatingMenuItem {
505
505
  /**
506
- * The variant of the modal body
506
+ * Wether it should have a hover effect
507
507
  */
508
508
  "hover": boolean;
509
509
  }
@@ -2594,7 +2594,7 @@ declare namespace LocalJSX {
2594
2594
  }
2595
2595
  interface PFloatingMenuItem {
2596
2596
  /**
2597
- * The variant of the modal body
2597
+ * Wether it should have a hover effect
2598
2598
  */
2599
2599
  "hover"?: boolean;
2600
2600
  }
@@ -0,0 +1,151 @@
1
+ declare const _default: {
2
+ animation: {
3
+ 'fade-in': string;
4
+ 'fade-out': string;
5
+ 'slide-in-right': string;
6
+ 'slide-in-left': string;
7
+ 'slide-in-top': string;
8
+ 'slide-in-bottom': string;
9
+ 'slide-in-right-small': string;
10
+ 'slide-in-left-small': string;
11
+ 'slide-in-top-small': string;
12
+ 'slide-in-bottom-small': string;
13
+ 'slide-out-right': string;
14
+ 'slide-out-left': string;
15
+ 'slide-out-top': string;
16
+ 'slide-out-bottom': string;
17
+ 'slide-out-top-small': string;
18
+ 'slide-out-bottom-small': string;
19
+ };
20
+ keyframes: {
21
+ fadeIn: {
22
+ '0%': {
23
+ opacity: number;
24
+ };
25
+ '100%': {
26
+ opacity: number;
27
+ };
28
+ };
29
+ fadeOut: {
30
+ '0%': {
31
+ opacity: number;
32
+ };
33
+ '100%': {
34
+ opacity: number;
35
+ };
36
+ };
37
+ slideInRight: {
38
+ '0%': {
39
+ transform: string;
40
+ };
41
+ '100%': {
42
+ transform: string;
43
+ };
44
+ };
45
+ slideInLeft: {
46
+ '0%': {
47
+ transform: string;
48
+ };
49
+ '100%': {
50
+ transform: string;
51
+ };
52
+ };
53
+ slideInTop: {
54
+ '0%': {
55
+ transform: string;
56
+ };
57
+ '100%': {
58
+ transform: string;
59
+ };
60
+ };
61
+ slideInBottom: {
62
+ '0%': {
63
+ transform: string;
64
+ };
65
+ '100%': {
66
+ transform: string;
67
+ };
68
+ };
69
+ slideInRightSmall: {
70
+ '0%': {
71
+ transform: string;
72
+ };
73
+ '100%': {
74
+ transform: string;
75
+ };
76
+ };
77
+ slideInLeftSmall: {
78
+ '0%': {
79
+ transform: string;
80
+ };
81
+ '100%': {
82
+ transform: string;
83
+ };
84
+ };
85
+ slideInTopSmall: {
86
+ '0%': {
87
+ transform: string;
88
+ };
89
+ '100%': {
90
+ transform: string;
91
+ };
92
+ };
93
+ slideInBottomSmall: {
94
+ '0%': {
95
+ transform: string;
96
+ };
97
+ '100%': {
98
+ transform: string;
99
+ };
100
+ };
101
+ slideOutRight: {
102
+ '0%': {
103
+ transform: string;
104
+ };
105
+ '100%': {
106
+ transform: string;
107
+ };
108
+ };
109
+ slideOutLeft: {
110
+ '0%': {
111
+ transform: string;
112
+ };
113
+ '100%': {
114
+ transform: string;
115
+ };
116
+ };
117
+ slideOutTop: {
118
+ '0%': {
119
+ transform: string;
120
+ };
121
+ '100%': {
122
+ transform: string;
123
+ };
124
+ };
125
+ slideOutBottom: {
126
+ '0%': {
127
+ transform: string;
128
+ };
129
+ '100%': {
130
+ transform: string;
131
+ };
132
+ };
133
+ slideOutTopSmall: {
134
+ '0%': {
135
+ transform: string;
136
+ };
137
+ '100%': {
138
+ transform: string;
139
+ };
140
+ };
141
+ slideOutBottomSmall: {
142
+ '0%': {
143
+ transform: string;
144
+ };
145
+ '100%': {
146
+ transform: string;
147
+ };
148
+ };
149
+ };
150
+ };
151
+ export default _default;
@@ -0,0 +1,4 @@
1
+ declare const _default: {
2
+ xs: string;
3
+ };
4
+ export default _default;
@@ -0,0 +1,12 @@
1
+ declare const _default: {
2
+ xxxlarge: string;
3
+ xxlarge: string;
4
+ xlarge: string;
5
+ large: string;
6
+ DEFAULT: string;
7
+ medium: string;
8
+ small: string;
9
+ none: number;
10
+ round: string;
11
+ };
12
+ export default _default;
@@ -0,0 +1,53 @@
1
+ declare const _default: {
2
+ transparent: string;
3
+ current: string;
4
+ indigo: {
5
+ dark: string;
6
+ DEFAULT: string;
7
+ light: string;
8
+ };
9
+ sky: {
10
+ dark: string;
11
+ DEFAULT: string;
12
+ light: string;
13
+ vague: string;
14
+ };
15
+ mystic: {
16
+ blank: string;
17
+ dark: string;
18
+ DEFAULT: string;
19
+ light: string;
20
+ medium: string;
21
+ };
22
+ redberry: {
23
+ dark: string;
24
+ DEFAULT: string;
25
+ light: string;
26
+ medium: string;
27
+ };
28
+ storm: {
29
+ dark: string;
30
+ DEFAULT: string;
31
+ light: string;
32
+ medium: string;
33
+ vague: string;
34
+ };
35
+ negative: {
36
+ dark: string;
37
+ DEFAULT: string;
38
+ light: string;
39
+ };
40
+ positive: {
41
+ dark: string;
42
+ DEFAULT: string;
43
+ light: string;
44
+ };
45
+ unbiased: {
46
+ dark: string;
47
+ DEFAULT: string;
48
+ light: string;
49
+ };
50
+ white: string;
51
+ black: string;
52
+ };
53
+ export default _default;
@@ -0,0 +1,6 @@
1
+ declare const _default: {
2
+ height: {
3
+ unset: string;
4
+ };
5
+ };
6
+ 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;