@rovula/ui 0.1.8 → 0.1.10

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 (43) hide show
  1. package/dist/cjs/bundle.css +0 -10
  2. package/dist/cjs/bundle.js +3 -3
  3. package/dist/cjs/bundle.js.map +1 -1
  4. package/dist/cjs/types/components/Dropdown/Dropdown.stories.d.ts +4 -0
  5. package/dist/cjs/types/components/Form/ValidationHintList.d.ts +4 -1
  6. package/dist/cjs/types/components/InputFilter/InputFilter.stories.d.ts +4 -0
  7. package/dist/cjs/types/components/MaskedTextInput/MaskedTextInput.d.ts +4 -0
  8. package/dist/cjs/types/components/MaskedTextInput/MaskedTextInput.stories.d.ts +8 -0
  9. package/dist/cjs/types/components/PasswordInput/PasswordInput.stories.d.ts +4 -0
  10. package/dist/cjs/types/components/Search/Search.stories.d.ts +4 -0
  11. package/dist/cjs/types/components/TextArea/TextArea.d.ts +8 -0
  12. package/dist/cjs/types/components/TextArea/TextArea.stories.d.ts +4 -0
  13. package/dist/cjs/types/components/TextInput/TextInput.d.ts +8 -0
  14. package/dist/cjs/types/components/TextInput/TextInput.stories.d.ts +20 -0
  15. package/dist/components/Form/ValidationHintList.js +9 -9
  16. package/dist/components/OtpInput/OtpInput.js +1 -1
  17. package/dist/components/TextArea/TextArea.js +32 -3
  18. package/dist/components/TextArea/TextArea.stories.js +29 -0
  19. package/dist/components/TextInput/TextInput.js +38 -2
  20. package/dist/components/TextInput/TextInput.stories.js +28 -0
  21. package/dist/esm/bundle.css +0 -10
  22. package/dist/esm/bundle.js +2 -2
  23. package/dist/esm/bundle.js.map +1 -1
  24. package/dist/esm/types/components/Dropdown/Dropdown.stories.d.ts +4 -0
  25. package/dist/esm/types/components/Form/ValidationHintList.d.ts +4 -1
  26. package/dist/esm/types/components/InputFilter/InputFilter.stories.d.ts +4 -0
  27. package/dist/esm/types/components/MaskedTextInput/MaskedTextInput.d.ts +4 -0
  28. package/dist/esm/types/components/MaskedTextInput/MaskedTextInput.stories.d.ts +8 -0
  29. package/dist/esm/types/components/PasswordInput/PasswordInput.stories.d.ts +4 -0
  30. package/dist/esm/types/components/Search/Search.stories.d.ts +4 -0
  31. package/dist/esm/types/components/TextArea/TextArea.d.ts +8 -0
  32. package/dist/esm/types/components/TextArea/TextArea.stories.d.ts +4 -0
  33. package/dist/esm/types/components/TextInput/TextInput.d.ts +8 -0
  34. package/dist/esm/types/components/TextInput/TextInput.stories.d.ts +20 -0
  35. package/dist/index.d.ts +24 -1
  36. package/dist/src/theme/global.css +0 -13
  37. package/package.json +1 -1
  38. package/src/components/Form/ValidationHintList.tsx +24 -11
  39. package/src/components/OtpInput/OtpInput.tsx +22 -9
  40. package/src/components/TextArea/TextArea.stories.tsx +108 -0
  41. package/src/components/TextArea/TextArea.tsx +52 -1
  42. package/src/components/TextInput/TextInput.stories.tsx +120 -5
  43. package/src/components/TextInput/TextInput.tsx +65 -0
@@ -3929,10 +3929,6 @@ input[type=number] {
3929
3929
  --tw-text-opacity: 1;
3930
3930
  color: color-mix(in srgb, var(--text-g-contrast-medium) calc(100% * var(--tw-text-opacity, 1)), transparent);
3931
3931
  }
3932
- .text-text-white{
3933
- --tw-text-opacity: 1;
3934
- color: color-mix(in srgb, var(--text-white) calc(100% * var(--tw-text-opacity, 1)), transparent);
3935
- }
3936
3932
  .text-warning{
3937
3933
  --tw-text-opacity: 1;
3938
3934
  color: color-mix(in srgb, var(--state-warning-default) calc(100% * var(--tw-text-opacity, 1)), transparent);
@@ -3953,12 +3949,6 @@ input[type=number] {
3953
3949
  .opacity-0{
3954
3950
  opacity: 0;
3955
3951
  }
3956
- .opacity-100{
3957
- opacity: 1;
3958
- }
3959
- .opacity-40{
3960
- opacity: 0.4;
3961
- }
3962
3952
  .opacity-50{
3963
3953
  opacity: 0.5;
3964
3954
  }