@grupalia/rn-ui-kit 0.0.4 → 0.0.41

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