@grupalia/rn-ui-kit 0.14.1 → 0.15.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 (73) hide show
  1. package/lib/commonjs/components/BaseBottomSheetModal.js +1 -2
  2. package/lib/commonjs/components/BaseBottomSheetModal.js.map +1 -1
  3. package/lib/commonjs/components/BaseConfirmationModal.js +3 -1
  4. package/lib/commonjs/components/BaseConfirmationModal.js.map +1 -1
  5. package/lib/commonjs/components/BaseDateInput.js +3 -1
  6. package/lib/commonjs/components/BaseDateInput.js.map +1 -1
  7. package/lib/commonjs/components/BaseIconBox.js +29 -18
  8. package/lib/commonjs/components/BaseIconBox.js.map +1 -1
  9. package/lib/commonjs/components/BaseSpinner.js +3 -1
  10. package/lib/commonjs/components/BaseSpinner.js.map +1 -1
  11. package/lib/commonjs/components/BaseSwitch.js +2 -1
  12. package/lib/commonjs/components/BaseSwitch.js.map +1 -1
  13. package/lib/commonjs/components/FormikDateInput.js +3 -1
  14. package/lib/commonjs/components/FormikDateInput.js.map +1 -1
  15. package/lib/commonjs/components/FormikRadioGroup.js +3 -1
  16. package/lib/commonjs/components/FormikRadioGroup.js.map +1 -1
  17. package/lib/module/components/BaseBottomSheetModal.js +1 -2
  18. package/lib/module/components/BaseBottomSheetModal.js.map +1 -1
  19. package/lib/module/components/BaseConfirmationModal.js +3 -1
  20. package/lib/module/components/BaseConfirmationModal.js.map +1 -1
  21. package/lib/module/components/BaseDateInput.js +3 -1
  22. package/lib/module/components/BaseDateInput.js.map +1 -1
  23. package/lib/module/components/BaseIconBox.js +28 -18
  24. package/lib/module/components/BaseIconBox.js.map +1 -1
  25. package/lib/module/components/BaseSpinner.js +3 -1
  26. package/lib/module/components/BaseSpinner.js.map +1 -1
  27. package/lib/module/components/BaseSwitch.js +2 -1
  28. package/lib/module/components/BaseSwitch.js.map +1 -1
  29. package/lib/module/components/FormikDateInput.js +3 -1
  30. package/lib/module/components/FormikDateInput.js.map +1 -1
  31. package/lib/module/components/FormikRadioGroup.js +3 -1
  32. package/lib/module/components/FormikRadioGroup.js.map +1 -1
  33. package/lib/typescript/commonjs/components/BaseBottomSheetModal.d.ts +2 -2
  34. package/lib/typescript/commonjs/components/BaseBottomSheetModal.d.ts.map +1 -1
  35. package/lib/typescript/commonjs/components/BaseConfirmationModal.d.ts +2 -2
  36. package/lib/typescript/commonjs/components/BaseConfirmationModal.d.ts.map +1 -1
  37. package/lib/typescript/commonjs/components/BaseDateInput.d.ts +7 -2
  38. package/lib/typescript/commonjs/components/BaseDateInput.d.ts.map +1 -1
  39. package/lib/typescript/commonjs/components/BaseIconBox.d.ts +9 -4
  40. package/lib/typescript/commonjs/components/BaseIconBox.d.ts.map +1 -1
  41. package/lib/typescript/commonjs/components/BaseSpinner.d.ts +2 -2
  42. package/lib/typescript/commonjs/components/BaseSpinner.d.ts.map +1 -1
  43. package/lib/typescript/commonjs/components/BaseSwitch.d.ts +7 -2
  44. package/lib/typescript/commonjs/components/BaseSwitch.d.ts.map +1 -1
  45. package/lib/typescript/commonjs/components/FormikDateInput.d.ts +7 -2
  46. package/lib/typescript/commonjs/components/FormikDateInput.d.ts.map +1 -1
  47. package/lib/typescript/commonjs/components/FormikRadioGroup.d.ts +7 -1
  48. package/lib/typescript/commonjs/components/FormikRadioGroup.d.ts.map +1 -1
  49. package/lib/typescript/module/components/BaseBottomSheetModal.d.ts +2 -2
  50. package/lib/typescript/module/components/BaseBottomSheetModal.d.ts.map +1 -1
  51. package/lib/typescript/module/components/BaseConfirmationModal.d.ts +2 -2
  52. package/lib/typescript/module/components/BaseConfirmationModal.d.ts.map +1 -1
  53. package/lib/typescript/module/components/BaseDateInput.d.ts +7 -2
  54. package/lib/typescript/module/components/BaseDateInput.d.ts.map +1 -1
  55. package/lib/typescript/module/components/BaseIconBox.d.ts +9 -4
  56. package/lib/typescript/module/components/BaseIconBox.d.ts.map +1 -1
  57. package/lib/typescript/module/components/BaseSpinner.d.ts +2 -2
  58. package/lib/typescript/module/components/BaseSpinner.d.ts.map +1 -1
  59. package/lib/typescript/module/components/BaseSwitch.d.ts +7 -2
  60. package/lib/typescript/module/components/BaseSwitch.d.ts.map +1 -1
  61. package/lib/typescript/module/components/FormikDateInput.d.ts +7 -2
  62. package/lib/typescript/module/components/FormikDateInput.d.ts.map +1 -1
  63. package/lib/typescript/module/components/FormikRadioGroup.d.ts +7 -1
  64. package/lib/typescript/module/components/FormikRadioGroup.d.ts.map +1 -1
  65. package/package.json +1 -1
  66. package/src/components/BaseBottomSheetModal.tsx +1 -2
  67. package/src/components/BaseConfirmationModal.tsx +5 -1
  68. package/src/components/BaseDateInput.tsx +4 -1
  69. package/src/components/BaseIconBox.tsx +31 -20
  70. package/src/components/BaseSpinner.tsx +4 -1
  71. package/src/components/BaseSwitch.tsx +2 -1
  72. package/src/components/FormikDateInput.tsx +4 -1
  73. package/src/components/FormikRadioGroup.tsx +4 -1
@@ -1,4 +1,5 @@
1
1
  import { useField } from 'formik';
2
+ import { styled } from 'nativewind';
2
3
  import React from 'react';
3
4
 
4
5
  import BaseRadioGroup, { BaseRadioGroupProps, RadioOption } from './BaseRadioGroup';
@@ -8,7 +9,7 @@ export interface FormikRadioGroupProps extends Omit<BaseRadioGroupProps, 'value'
8
9
  options: RadioOption[];
9
10
  }
10
11
 
11
- export default function FormikRadioGroup({
12
+ function FormikRadioGroup({
12
13
  name,
13
14
  options,
14
15
  ...props
@@ -30,3 +31,5 @@ export default function FormikRadioGroup({
30
31
  />
31
32
  );
32
33
  }
34
+
35
+ export default styled(FormikRadioGroup);