@grupalia/rn-ui-kit 0.0.41 → 0.2.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 (141) hide show
  1. package/lib/commonjs/components/BaseAlert.js +149 -0
  2. package/lib/commonjs/components/BaseAlert.js.map +1 -0
  3. package/lib/commonjs/components/BaseBadge.js +40 -19
  4. package/lib/commonjs/components/BaseBadge.js.map +1 -1
  5. package/lib/commonjs/components/BaseButton.js +71 -38
  6. package/lib/commonjs/components/BaseButton.js.map +1 -1
  7. package/lib/commonjs/components/BaseIcon.js +31 -0
  8. package/lib/commonjs/components/BaseIcon.js.map +1 -0
  9. package/lib/commonjs/components/BaseSpinner.js +21 -0
  10. package/lib/commonjs/components/BaseSpinner.js.map +1 -0
  11. package/lib/commonjs/components/BaseStackedList.js +108 -0
  12. package/lib/commonjs/components/BaseStackedList.js.map +1 -0
  13. package/lib/commonjs/components/index.js +28 -0
  14. package/lib/commonjs/components/index.js.map +1 -1
  15. package/lib/commonjs/hoc-components.js +40 -0
  16. package/lib/commonjs/hoc-components.js.map +1 -0
  17. package/lib/commonjs/hooks/useBreakpoints.js +25 -0
  18. package/lib/commonjs/hooks/useBreakpoints.js.map +1 -0
  19. package/lib/commonjs/hooks/useIsAboveBreakpoint.js +15 -0
  20. package/lib/commonjs/hooks/useIsAboveBreakpoint.js.map +1 -0
  21. package/lib/commonjs/index.js +17 -1
  22. package/lib/commonjs/index.js.map +1 -1
  23. package/lib/commonjs/preset.js +6 -2
  24. package/lib/commonjs/preset.js.map +1 -1
  25. package/lib/commonjs/styles/background-colors.js +1 -1
  26. package/lib/commonjs/styles/background-colors.js.map +1 -1
  27. package/lib/commonjs/styles/border-colors.js +1 -1
  28. package/lib/commonjs/styles/border-colors.js.map +1 -1
  29. package/lib/commonjs/styles/foreground-colors.js +0 -12
  30. package/lib/commonjs/styles/foreground-colors.js.map +1 -1
  31. package/lib/commonjs/styles/text-colors.js +1 -1
  32. package/lib/commonjs/styles/text-colors.js.map +1 -1
  33. package/lib/commonjs/styles/utility-colors.js +124 -124
  34. package/lib/commonjs/styles/utility-colors.js.map +1 -1
  35. package/lib/module/components/BaseAlert.js +144 -0
  36. package/lib/module/components/BaseAlert.js.map +1 -0
  37. package/lib/module/components/BaseBadge.js +39 -18
  38. package/lib/module/components/BaseBadge.js.map +1 -1
  39. package/lib/module/components/BaseButton.js +68 -35
  40. package/lib/module/components/BaseButton.js.map +1 -1
  41. package/lib/module/components/BaseIcon.js +26 -0
  42. package/lib/module/components/BaseIcon.js.map +1 -0
  43. package/lib/module/components/BaseSpinner.js +16 -0
  44. package/lib/module/components/BaseSpinner.js.map +1 -0
  45. package/lib/module/components/BaseStackedList.js +102 -0
  46. package/lib/module/components/BaseStackedList.js.map +1 -0
  47. package/lib/module/components/index.js +4 -0
  48. package/lib/module/components/index.js.map +1 -1
  49. package/lib/module/hoc-components.js +37 -0
  50. package/lib/module/hoc-components.js.map +1 -0
  51. package/lib/module/hooks/useBreakpoints.js +20 -0
  52. package/lib/module/hooks/useBreakpoints.js.map +1 -0
  53. package/lib/module/hooks/useIsAboveBreakpoint.js +11 -0
  54. package/lib/module/hooks/useIsAboveBreakpoint.js.map +1 -0
  55. package/lib/module/index.js +2 -0
  56. package/lib/module/index.js.map +1 -1
  57. package/lib/module/preset.js +6 -2
  58. package/lib/module/preset.js.map +1 -1
  59. package/lib/module/styles/background-colors.js +1 -1
  60. package/lib/module/styles/background-colors.js.map +1 -1
  61. package/lib/module/styles/border-colors.js +1 -1
  62. package/lib/module/styles/border-colors.js.map +1 -1
  63. package/lib/module/styles/foreground-colors.js +0 -12
  64. package/lib/module/styles/foreground-colors.js.map +1 -1
  65. package/lib/module/styles/text-colors.js +1 -1
  66. package/lib/module/styles/text-colors.js.map +1 -1
  67. package/lib/module/styles/utility-colors.js +124 -124
  68. package/lib/module/styles/utility-colors.js.map +1 -1
  69. package/lib/typescript/commonjs/components/BaseAlert.d.ts +11 -0
  70. package/lib/typescript/commonjs/components/BaseAlert.d.ts.map +1 -0
  71. package/lib/typescript/commonjs/components/BaseBadge.d.ts +11 -5
  72. package/lib/typescript/commonjs/components/BaseBadge.d.ts.map +1 -1
  73. package/lib/typescript/commonjs/components/BaseButton.d.ts +9 -4
  74. package/lib/typescript/commonjs/components/BaseButton.d.ts.map +1 -1
  75. package/lib/typescript/commonjs/components/BaseIcon.d.ts +19 -0
  76. package/lib/typescript/commonjs/components/BaseIcon.d.ts.map +1 -0
  77. package/lib/typescript/commonjs/components/BaseSpinner.d.ts +8 -0
  78. package/lib/typescript/commonjs/components/BaseSpinner.d.ts.map +1 -0
  79. package/lib/typescript/commonjs/components/BaseStackedList.d.ts +23 -0
  80. package/lib/typescript/commonjs/components/BaseStackedList.d.ts.map +1 -0
  81. package/lib/typescript/commonjs/components/index.d.ts +4 -0
  82. package/lib/typescript/commonjs/components/index.d.ts.map +1 -1
  83. package/lib/typescript/commonjs/hoc-components.d.ts +139 -0
  84. package/lib/typescript/commonjs/hoc-components.d.ts.map +1 -0
  85. package/lib/typescript/commonjs/hooks/useBreakpoints.d.ts +8 -0
  86. package/lib/typescript/commonjs/hooks/useBreakpoints.d.ts.map +1 -0
  87. package/lib/typescript/commonjs/hooks/useIsAboveBreakpoint.d.ts +3 -0
  88. package/lib/typescript/commonjs/hooks/useIsAboveBreakpoint.d.ts.map +1 -0
  89. package/lib/typescript/commonjs/index.d.ts +2 -0
  90. package/lib/typescript/commonjs/index.d.ts.map +1 -1
  91. package/lib/typescript/commonjs/preset.d.ts.map +1 -1
  92. package/lib/typescript/commonjs/styles/foreground-colors.d.ts +1 -12
  93. package/lib/typescript/commonjs/styles/foreground-colors.d.ts.map +1 -1
  94. package/lib/typescript/commonjs/styles/utility-colors.d.ts +125 -124
  95. package/lib/typescript/commonjs/styles/utility-colors.d.ts.map +1 -1
  96. package/lib/typescript/commonjs/types/heroicons.d.ts +2 -2
  97. package/lib/typescript/commonjs/types/heroicons.d.ts.map +1 -1
  98. package/lib/typescript/module/components/BaseAlert.d.ts +11 -0
  99. package/lib/typescript/module/components/BaseAlert.d.ts.map +1 -0
  100. package/lib/typescript/module/components/BaseBadge.d.ts +11 -5
  101. package/lib/typescript/module/components/BaseBadge.d.ts.map +1 -1
  102. package/lib/typescript/module/components/BaseButton.d.ts +9 -4
  103. package/lib/typescript/module/components/BaseButton.d.ts.map +1 -1
  104. package/lib/typescript/module/components/BaseIcon.d.ts +19 -0
  105. package/lib/typescript/module/components/BaseIcon.d.ts.map +1 -0
  106. package/lib/typescript/module/components/BaseSpinner.d.ts +8 -0
  107. package/lib/typescript/module/components/BaseSpinner.d.ts.map +1 -0
  108. package/lib/typescript/module/components/BaseStackedList.d.ts +23 -0
  109. package/lib/typescript/module/components/BaseStackedList.d.ts.map +1 -0
  110. package/lib/typescript/module/components/index.d.ts +4 -0
  111. package/lib/typescript/module/components/index.d.ts.map +1 -1
  112. package/lib/typescript/module/hoc-components.d.ts +139 -0
  113. package/lib/typescript/module/hoc-components.d.ts.map +1 -0
  114. package/lib/typescript/module/hooks/useBreakpoints.d.ts +8 -0
  115. package/lib/typescript/module/hooks/useBreakpoints.d.ts.map +1 -0
  116. package/lib/typescript/module/hooks/useIsAboveBreakpoint.d.ts +3 -0
  117. package/lib/typescript/module/hooks/useIsAboveBreakpoint.d.ts.map +1 -0
  118. package/lib/typescript/module/index.d.ts +2 -0
  119. package/lib/typescript/module/index.d.ts.map +1 -1
  120. package/lib/typescript/module/preset.d.ts.map +1 -1
  121. package/lib/typescript/module/styles/foreground-colors.d.ts +1 -12
  122. package/lib/typescript/module/styles/foreground-colors.d.ts.map +1 -1
  123. package/lib/typescript/module/styles/utility-colors.d.ts +125 -124
  124. package/lib/typescript/module/styles/utility-colors.d.ts.map +1 -1
  125. package/lib/typescript/module/types/heroicons.d.ts +2 -2
  126. package/lib/typescript/module/types/heroicons.d.ts.map +1 -1
  127. package/package.json +8 -4
  128. package/src/components/BaseAlert.tsx +175 -0
  129. package/src/components/BaseBadge.tsx +191 -0
  130. package/src/components/BaseButton.tsx +288 -0
  131. package/src/components/BaseIcon.tsx +41 -0
  132. package/src/components/BaseSpinner.tsx +18 -0
  133. package/src/components/BaseStackedList.tsx +137 -0
  134. package/src/components/index.ts +6 -0
  135. package/src/preset.cjs +1 -1
  136. package/src/preset.ts +7 -1
  137. package/src/styles/background-colors.ts +1 -1
  138. package/src/styles/border-colors.ts +1 -1
  139. package/src/styles/foreground-colors.ts +19 -12
  140. package/src/styles/text-colors.ts +1 -1
  141. package/src/styles/utility-colors.ts +250 -124
@@ -1,497 +1,498 @@
1
+ export type Color = 'utility-gray-50' | 'utility-gray-100' | 'utility-gray-200' | 'utility-gray-300' | 'utility-gray-400' | 'utility-gray-500' | 'utility-gray-600' | 'utility-gray-700' | 'utility-gray-800' | 'utility-gray-900' | 'utility-brand-50' | 'utility-brand-100' | 'utility-brand-200' | 'utility-brand-300' | 'utility-brand-400' | 'utility-brand-500' | 'utility-brand-600' | 'utility-brand-700' | 'utility-brand-800' | 'utility-brand-900' | 'utility-error-50' | 'utility-error-100' | 'utility-error-200' | 'utility-error-300' | 'utility-error-400' | 'utility-error-500' | 'utility-error-600' | 'utility-error-700' | 'utility-warning-50' | 'utility-warning-100' | 'utility-warning-200' | 'utility-warning-300' | 'utility-warning-400' | 'utility-warning-500' | 'utility-warning-600' | 'utility-warning-700' | 'utility-success-50' | 'utility-success-100' | 'utility-success-200' | 'utility-success-300' | 'utility-success-400' | 'utility-success-500' | 'utility-success-600' | 'utility-success-700' | 'utility-gray_blue-50' | 'utility-gray_blue-100' | 'utility-gray_blue-200' | 'utility-gray_blue-300' | 'utility-gray_blue-400' | 'utility-gray_blue-500' | 'utility-gray_blue-600' | 'utility-gray_blue-700' | 'utility-blue_light-50' | 'utility-blue_light-100' | 'utility-blue_light-200' | 'utility-blue_light-300' | 'utility-blue_light-400' | 'utility-blue_light-500' | 'utility-blue_light-600' | 'utility-blue_light-700' | 'utility-blue-50' | 'utility-blue-100' | 'utility-blue-200' | 'utility-blue-300' | 'utility-blue-400' | 'utility-blue-500' | 'utility-blue-600' | 'utility-blue-700' | 'utility-blue_dark-50' | 'utility-blue_dark-100' | 'utility-blue_dark-200' | 'utility-blue_dark-300' | 'utility-blue_dark-400' | 'utility-blue_dark-500' | 'utility-blue_dark-600' | 'utility-blue_dark-700' | 'utility-indigo-50' | 'utility-indigo-100' | 'utility-indigo-200' | 'utility-indigo-300' | 'utility-indigo-400' | 'utility-indigo-500' | 'utility-indigo-600' | 'utility-indigo-700' | 'utility-purple-50' | 'utility-purple-100' | 'utility-purple-200' | 'utility-purple-300' | 'utility-purple-400' | 'utility-purple-500' | 'utility-purple-600' | 'utility-purple-700' | 'utility-fuchsia-50' | 'utility-fuchsia-100' | 'utility-fuchsia-200' | 'utility-fuchsia-300' | 'utility-fuchsia-400' | 'utility-fuchsia-500' | 'utility-fuchsia-600' | 'utility-fuchsia-700' | 'utility-pink-50' | 'utility-pink-100' | 'utility-pink-200' | 'utility-pink-300' | 'utility-pink-400' | 'utility-pink-500' | 'utility-pink-600' | 'utility-pink-700' | 'utility-orange_dark-50' | 'utility-orange_dark-100' | 'utility-orange_dark-200' | 'utility-orange_dark-300' | 'utility-orange_dark-400' | 'utility-orange_dark-500' | 'utility-orange_dark-600' | 'utility-orange_dark-700' | 'utility-orange-50' | 'utility-orange-100' | 'utility-orange-200' | 'utility-orange-300' | 'utility-orange-400' | 'utility-orange-500' | 'utility-orange-600' | 'utility-orange-700';
1
2
  declare const _default: {
2
- 'gray-50': {
3
+ 'utility-gray-50': {
3
4
  light: string;
4
5
  dark: string;
5
6
  };
6
- 'gray-100': {
7
+ 'utility-gray-100': {
7
8
  light: string;
8
9
  dark: string;
9
10
  };
10
- 'gray-200': {
11
+ 'utility-gray-200': {
11
12
  light: string;
12
13
  dark: string;
13
14
  };
14
- 'gray-300': {
15
+ 'utility-gray-300': {
15
16
  light: string;
16
17
  dark: string;
17
18
  };
18
- 'gray-400': {
19
+ 'utility-gray-400': {
19
20
  light: string;
20
21
  dark: string;
21
22
  };
22
- 'gray-500': {
23
+ 'utility-gray-500': {
23
24
  light: string;
24
25
  dark: string;
25
26
  };
26
- 'gray-600': {
27
+ 'utility-gray-600': {
27
28
  light: string;
28
29
  dark: string;
29
30
  };
30
- 'gray-700': {
31
+ 'utility-gray-700': {
31
32
  light: string;
32
33
  dark: string;
33
34
  };
34
- 'gray-800': {
35
+ 'utility-gray-800': {
35
36
  light: string;
36
37
  dark: string;
37
38
  };
38
- 'gray-900': {
39
+ 'utility-gray-900': {
39
40
  light: string;
40
41
  dark: string;
41
42
  };
42
- 'brand-50': {
43
+ 'utility-brand-50': {
43
44
  light: string;
44
45
  dark: string;
45
46
  };
46
- 'brand-100': {
47
+ 'utility-brand-100': {
47
48
  light: string;
48
49
  dark: string;
49
50
  };
50
- 'brand-200': {
51
+ 'utility-brand-200': {
51
52
  light: string;
52
53
  dark: string;
53
54
  };
54
- 'brand-300': {
55
+ 'utility-brand-300': {
55
56
  light: string;
56
57
  dark: string;
57
58
  };
58
- 'brand-400': {
59
+ 'utility-brand-400': {
59
60
  light: string;
60
61
  dark: string;
61
62
  };
62
- 'brand-500': {
63
+ 'utility-brand-500': {
63
64
  light: string;
64
65
  dark: string;
65
66
  };
66
- 'brand-600': {
67
+ 'utility-brand-600': {
67
68
  light: string;
68
69
  dark: string;
69
70
  };
70
- 'brand-700': {
71
+ 'utility-brand-700': {
71
72
  light: string;
72
73
  dark: string;
73
74
  };
74
- 'brand-800': {
75
+ 'utility-brand-800': {
75
76
  light: string;
76
77
  dark: string;
77
78
  };
78
- 'brand-900': {
79
+ 'utility-brand-900': {
79
80
  light: string;
80
81
  dark: string;
81
82
  };
82
- 'error-50': {
83
+ 'utility-error-50': {
83
84
  light: string;
84
85
  dark: string;
85
86
  };
86
- 'error-100': {
87
+ 'utility-error-100': {
87
88
  light: string;
88
89
  dark: string;
89
90
  };
90
- 'error-200': {
91
+ 'utility-error-200': {
91
92
  light: string;
92
93
  dark: string;
93
94
  };
94
- 'error-300': {
95
+ 'utility-error-300': {
95
96
  light: string;
96
97
  dark: string;
97
98
  };
98
- 'error-400': {
99
+ 'utility-error-400': {
99
100
  light: string;
100
101
  dark: string;
101
102
  };
102
- 'error-500': {
103
+ 'utility-error-500': {
103
104
  light: string;
104
105
  dark: string;
105
106
  };
106
- 'error-600': {
107
+ 'utility-error-600': {
107
108
  light: string;
108
109
  dark: string;
109
110
  };
110
- 'error-700': {
111
+ 'utility-error-700': {
111
112
  light: string;
112
113
  dark: string;
113
114
  };
114
- 'warning-50': {
115
+ 'utility-warning-50': {
115
116
  light: string;
116
117
  dark: string;
117
118
  };
118
- 'warning-100': {
119
+ 'utility-warning-100': {
119
120
  light: string;
120
121
  dark: string;
121
122
  };
122
- 'warning-200': {
123
+ 'utility-warning-200': {
123
124
  light: string;
124
125
  dark: string;
125
126
  };
126
- 'warning-300': {
127
+ 'utility-warning-300': {
127
128
  light: string;
128
129
  dark: string;
129
130
  };
130
- 'warning-400': {
131
+ 'utility-warning-400': {
131
132
  light: string;
132
133
  dark: string;
133
134
  };
134
- 'warning-500': {
135
+ 'utility-warning-500': {
135
136
  light: string;
136
137
  dark: string;
137
138
  };
138
- 'warning-600': {
139
+ 'utility-warning-600': {
139
140
  light: string;
140
141
  dark: string;
141
142
  };
142
- 'warning-700': {
143
+ 'utility-warning-700': {
143
144
  light: string;
144
145
  dark: string;
145
146
  };
146
- 'success-50': {
147
+ 'utility-success-50': {
147
148
  light: string;
148
149
  dark: string;
149
150
  };
150
- 'success-100': {
151
+ 'utility-success-100': {
151
152
  light: string;
152
153
  dark: string;
153
154
  };
154
- 'success-200': {
155
+ 'utility-success-200': {
155
156
  light: string;
156
157
  dark: string;
157
158
  };
158
- 'success-300': {
159
+ 'utility-success-300': {
159
160
  light: string;
160
161
  dark: string;
161
162
  };
162
- 'success-400': {
163
+ 'utility-success-400': {
163
164
  light: string;
164
165
  dark: string;
165
166
  };
166
- 'success-500': {
167
+ 'utility-success-500': {
167
168
  light: string;
168
169
  dark: string;
169
170
  };
170
- 'success-600': {
171
+ 'utility-success-600': {
171
172
  light: string;
172
173
  dark: string;
173
174
  };
174
- 'success-700': {
175
+ 'utility-success-700': {
175
176
  light: string;
176
177
  dark: string;
177
178
  };
178
- 'gray_blue-50': {
179
+ 'utility-gray_blue-50': {
179
180
  light: string;
180
181
  dark: string;
181
182
  };
182
- 'gray_blue-100': {
183
+ 'utility-gray_blue-100': {
183
184
  light: string;
184
185
  dark: string;
185
186
  };
186
- 'gray_blue-200': {
187
+ 'utility-gray_blue-200': {
187
188
  light: string;
188
189
  dark: string;
189
190
  };
190
- 'gray_blue-300': {
191
+ 'utility-gray_blue-300': {
191
192
  light: string;
192
193
  dark: string;
193
194
  };
194
- 'gray_blue-400': {
195
+ 'utility-gray_blue-400': {
195
196
  light: string;
196
197
  dark: string;
197
198
  };
198
- 'gray_blue-500': {
199
+ 'utility-gray_blue-500': {
199
200
  light: string;
200
201
  dark: string;
201
202
  };
202
- 'gray_blue-600': {
203
+ 'utility-gray_blue-600': {
203
204
  light: string;
204
205
  dark: string;
205
206
  };
206
- 'gray_blue-700': {
207
+ 'utility-gray_blue-700': {
207
208
  light: string;
208
209
  dark: string;
209
210
  };
210
- 'blue_light-50': {
211
+ 'utility-blue_light-50': {
211
212
  light: string;
212
213
  dark: string;
213
214
  };
214
- 'blue_light-100': {
215
+ 'utility-blue_light-100': {
215
216
  light: string;
216
217
  dark: string;
217
218
  };
218
- 'blue_light-200': {
219
+ 'utility-blue_light-200': {
219
220
  light: string;
220
221
  dark: string;
221
222
  };
222
- 'blue_light-300': {
223
+ 'utility-blue_light-300': {
223
224
  light: string;
224
225
  dark: string;
225
226
  };
226
- 'blue_light-400': {
227
+ 'utility-blue_light-400': {
227
228
  light: string;
228
229
  dark: string;
229
230
  };
230
- 'blue_light-500': {
231
+ 'utility-blue_light-500': {
231
232
  light: string;
232
233
  dark: string;
233
234
  };
234
- 'blue_light-600': {
235
+ 'utility-blue_light-600': {
235
236
  light: string;
236
237
  dark: string;
237
238
  };
238
- 'blue_light-700': {
239
+ 'utility-blue_light-700': {
239
240
  light: string;
240
241
  dark: string;
241
242
  };
242
- 'blue-50': {
243
+ 'utility-blue-50': {
243
244
  light: string;
244
245
  dark: string;
245
246
  };
246
- 'blue-100': {
247
+ 'utility-blue-100': {
247
248
  light: string;
248
249
  dark: string;
249
250
  };
250
- 'blue-200': {
251
+ 'utility-blue-200': {
251
252
  light: string;
252
253
  dark: string;
253
254
  };
254
- 'blue-300': {
255
+ 'utility-blue-300': {
255
256
  light: string;
256
257
  dark: string;
257
258
  };
258
- 'blue-400': {
259
+ 'utility-blue-400': {
259
260
  light: string;
260
261
  dark: string;
261
262
  };
262
- 'blue-500': {
263
+ 'utility-blue-500': {
263
264
  light: string;
264
265
  dark: string;
265
266
  };
266
- 'blue-600': {
267
+ 'utility-blue-600': {
267
268
  light: string;
268
269
  dark: string;
269
270
  };
270
- 'blue-700': {
271
+ 'utility-blue-700': {
271
272
  light: string;
272
273
  dark: string;
273
274
  };
274
- 'blue_dark-50': {
275
+ 'utility-blue_dark-50': {
275
276
  light: string;
276
277
  dark: string;
277
278
  };
278
- 'blue_dark-100': {
279
+ 'utility-blue_dark-100': {
279
280
  light: string;
280
281
  dark: string;
281
282
  };
282
- 'blue_dark-200': {
283
+ 'utility-blue_dark-200': {
283
284
  light: string;
284
285
  dark: string;
285
286
  };
286
- 'blue_dark-300': {
287
+ 'utility-blue_dark-300': {
287
288
  light: string;
288
289
  dark: string;
289
290
  };
290
- 'blue_dark-400': {
291
+ 'utility-blue_dark-400': {
291
292
  light: string;
292
293
  dark: string;
293
294
  };
294
- 'blue_dark-500': {
295
+ 'utility-blue_dark-500': {
295
296
  light: string;
296
297
  dark: string;
297
298
  };
298
- 'blue_dark-600': {
299
+ 'utility-blue_dark-600': {
299
300
  light: string;
300
301
  dark: string;
301
302
  };
302
- 'blue_dark-700': {
303
+ 'utility-blue_dark-700': {
303
304
  light: string;
304
305
  dark: string;
305
306
  };
306
- 'indigo-50': {
307
+ 'utility-indigo-50': {
307
308
  light: string;
308
309
  dark: string;
309
310
  };
310
- 'indigo-100': {
311
+ 'utility-indigo-100': {
311
312
  light: string;
312
313
  dark: string;
313
314
  };
314
- 'indigo-200': {
315
+ 'utility-indigo-200': {
315
316
  light: string;
316
317
  dark: string;
317
318
  };
318
- 'indigo-300': {
319
+ 'utility-indigo-300': {
319
320
  light: string;
320
321
  dark: string;
321
322
  };
322
- 'indigo-400': {
323
+ 'utility-indigo-400': {
323
324
  light: string;
324
325
  dark: string;
325
326
  };
326
- 'indigo-500': {
327
+ 'utility-indigo-500': {
327
328
  light: string;
328
329
  dark: string;
329
330
  };
330
- 'indigo-600': {
331
+ 'utility-indigo-600': {
331
332
  light: string;
332
333
  dark: string;
333
334
  };
334
- 'indigo-700': {
335
+ 'utility-indigo-700': {
335
336
  light: string;
336
337
  dark: string;
337
338
  };
338
- 'purple-50': {
339
+ 'utility-purple-50': {
339
340
  light: string;
340
341
  dark: string;
341
342
  };
342
- 'purple-100': {
343
+ 'utility-purple-100': {
343
344
  light: string;
344
345
  dark: string;
345
346
  };
346
- 'purple-200': {
347
+ 'utility-purple-200': {
347
348
  light: string;
348
349
  dark: string;
349
350
  };
350
- 'purple-300': {
351
+ 'utility-purple-300': {
351
352
  light: string;
352
353
  dark: string;
353
354
  };
354
- 'purple-400': {
355
+ 'utility-purple-400': {
355
356
  light: string;
356
357
  dark: string;
357
358
  };
358
- 'purple-500': {
359
+ 'utility-purple-500': {
359
360
  light: string;
360
361
  dark: string;
361
362
  };
362
- 'purple-600': {
363
+ 'utility-purple-600': {
363
364
  light: string;
364
365
  dark: string;
365
366
  };
366
- 'purple-700': {
367
+ 'utility-purple-700': {
367
368
  light: string;
368
369
  dark: string;
369
370
  };
370
- 'fuchsia-50': {
371
+ 'utility-fuchsia-50': {
371
372
  light: string;
372
373
  dark: string;
373
374
  };
374
- 'fuchsia-100': {
375
+ 'utility-fuchsia-100': {
375
376
  light: string;
376
377
  dark: string;
377
378
  };
378
- 'fuchsia-200': {
379
+ 'utility-fuchsia-200': {
379
380
  light: string;
380
381
  dark: string;
381
382
  };
382
- 'fuchsia-300': {
383
+ 'utility-fuchsia-300': {
383
384
  light: string;
384
385
  dark: string;
385
386
  };
386
- 'fuchsia-400': {
387
+ 'utility-fuchsia-400': {
387
388
  light: string;
388
389
  dark: string;
389
390
  };
390
- 'fuchsia-500': {
391
+ 'utility-fuchsia-500': {
391
392
  light: string;
392
393
  dark: string;
393
394
  };
394
- 'fuchsia-600': {
395
+ 'utility-fuchsia-600': {
395
396
  light: string;
396
397
  dark: string;
397
398
  };
398
- 'fuchsia-700': {
399
+ 'utility-fuchsia-700': {
399
400
  light: string;
400
401
  dark: string;
401
402
  };
402
- 'pink-50': {
403
+ 'utility-pink-50': {
403
404
  light: string;
404
405
  dark: string;
405
406
  };
406
- 'pink-100': {
407
+ 'utility-pink-100': {
407
408
  light: string;
408
409
  dark: string;
409
410
  };
410
- 'pink-200': {
411
+ 'utility-pink-200': {
411
412
  light: string;
412
413
  dark: string;
413
414
  };
414
- 'pink-300': {
415
+ 'utility-pink-300': {
415
416
  light: string;
416
417
  dark: string;
417
418
  };
418
- 'pink-400': {
419
+ 'utility-pink-400': {
419
420
  light: string;
420
421
  dark: string;
421
422
  };
422
- 'pink-500': {
423
+ 'utility-pink-500': {
423
424
  light: string;
424
425
  dark: string;
425
426
  };
426
- 'pink-600': {
427
+ 'utility-pink-600': {
427
428
  light: string;
428
429
  dark: string;
429
430
  };
430
- 'pink-700': {
431
+ 'utility-pink-700': {
431
432
  light: string;
432
433
  dark: string;
433
434
  };
434
- 'orange_dark-50': {
435
+ 'utility-orange_dark-50': {
435
436
  light: string;
436
437
  dark: string;
437
438
  };
438
- 'orange_dark-100': {
439
+ 'utility-orange_dark-100': {
439
440
  light: string;
440
441
  dark: string;
441
442
  };
442
- 'orange_dark-200': {
443
+ 'utility-orange_dark-200': {
443
444
  light: string;
444
445
  dark: string;
445
446
  };
446
- 'orange_dark-300': {
447
+ 'utility-orange_dark-300': {
447
448
  light: string;
448
449
  dark: string;
449
450
  };
450
- 'orange_dark-400': {
451
+ 'utility-orange_dark-400': {
451
452
  light: string;
452
453
  dark: string;
453
454
  };
454
- 'orange_dark-500': {
455
+ 'utility-orange_dark-500': {
455
456
  light: string;
456
457
  dark: string;
457
458
  };
458
- 'orange_dark-600': {
459
+ 'utility-orange_dark-600': {
459
460
  light: string;
460
461
  dark: string;
461
462
  };
462
- 'orange_dark-700': {
463
+ 'utility-orange_dark-700': {
463
464
  light: string;
464
465
  dark: string;
465
466
  };
466
- 'orange-50': {
467
+ 'utility-orange-50': {
467
468
  light: string;
468
469
  dark: string;
469
470
  };
470
- 'orange-100': {
471
+ 'utility-orange-100': {
471
472
  light: string;
472
473
  dark: string;
473
474
  };
474
- 'orange-200': {
475
+ 'utility-orange-200': {
475
476
  light: string;
476
477
  dark: string;
477
478
  };
478
- 'orange-300': {
479
+ 'utility-orange-300': {
479
480
  light: string;
480
481
  dark: string;
481
482
  };
482
- 'orange-400': {
483
+ 'utility-orange-400': {
483
484
  light: string;
484
485
  dark: string;
485
486
  };
486
- 'orange-500': {
487
+ 'utility-orange-500': {
487
488
  light: string;
488
489
  dark: string;
489
490
  };
490
- 'orange-600': {
491
+ 'utility-orange-600': {
491
492
  light: string;
492
493
  dark: string;
493
494
  };
494
- 'orange-700': {
495
+ 'utility-orange-700': {
495
496
  light: string;
496
497
  dark: string;
497
498
  };
@@ -1 +1 @@
1
- {"version":3,"file":"utility-colors.d.ts","sourceRoot":"","sources":["../../../../src/styles/utility-colors.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wBAifE"}
1
+ {"version":3,"file":"utility-colors.d.ts","sourceRoot":"","sources":["../../../../src/styles/utility-colors.ts"],"names":[],"mappings":"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"}
@@ -1,9 +1,9 @@
1
+ /// <reference types="react" />
1
2
  import { NumberProp, SvgProps } from 'react-native-svg';
2
- interface HeroIconProps extends SvgProps {
3
+ export interface HeroIconProps extends SvgProps {
3
4
  size?: NumberProp;
4
5
  }
5
6
  export interface HeroIcon {
6
7
  (props: HeroIconProps): JSX.Element;
7
8
  }
8
- export {};
9
9
  //# sourceMappingURL=heroicons.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"heroicons.d.ts","sourceRoot":"","sources":["../../../../src/types/heroicons.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAExD,UAAU,aAAc,SAAQ,QAAQ;IACpC,IAAI,CAAC,EAAE,UAAU,CAAC;CACrB;AAED,MAAM,WAAW,QAAQ;IACvB,CAAC,KAAK,EAAE,aAAa,GAAG,GAAG,CAAC,OAAO,CAAC;CACrC"}
1
+ {"version":3,"file":"heroicons.d.ts","sourceRoot":"","sources":["../../../../src/types/heroicons.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAExD,MAAM,WAAW,aAAc,SAAQ,QAAQ;IAC7C,IAAI,CAAC,EAAE,UAAU,CAAC;CACnB;AAED,MAAM,WAAW,QAAQ;IACvB,CAAC,KAAK,EAAE,aAAa,GAAG,GAAG,CAAC,OAAO,CAAC;CACrC"}