@rebnd/ui 0.0.2 → 0.0.4

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 (82) hide show
  1. package/README.md +5 -3
  2. package/dist/index.d.ts +12 -0
  3. package/dist/src/assets/constants/components.d.ts +3 -0
  4. package/dist/src/components/RAvatar/RAvatar.d.ts +13 -13
  5. package/dist/src/components/RAvatar/utils/avatar.props.d.ts +7 -6
  6. package/dist/src/components/RAvatar/utils/avatar.style.d.ts +14 -10
  7. package/dist/src/components/RAvatarGroup/RAvatarGroup.d.ts +7 -7
  8. package/dist/src/components/RAvatarGroup/utils/avatar-group.props.d.ts +4 -3
  9. package/dist/src/components/RAvatarGroup/utils/avatar-group.style.d.ts +2 -1
  10. package/dist/src/components/RBadge/RBadge.d.ts +13 -13
  11. package/dist/src/components/RBadge/utils/badge.props.d.ts +8 -7
  12. package/dist/src/components/RBadge/utils/badge.style.d.ts +35 -66
  13. package/dist/src/components/RButton/RButton.d.ts +33 -13
  14. package/dist/src/components/RButton/utils/button.props.d.ts +16 -7
  15. package/dist/src/components/RButton/utils/button.style.d.ts +92 -38
  16. package/dist/src/components/RButtonGroup/RButtonGroup.d.ts +62 -0
  17. package/dist/src/components/RButtonGroup/utils/button-group.props.d.ts +30 -0
  18. package/dist/src/components/RButtonGroup/utils/button-group.style.d.ts +123 -0
  19. package/dist/src/components/RCheckbox/RCheckbox.d.ts +62 -0
  20. package/dist/src/components/RCheckbox/utils/checkbox.props.d.ts +27 -0
  21. package/dist/src/components/RCheckbox/utils/checkbox.style.d.ts +38 -0
  22. package/dist/src/components/RCheckboxGroup/RCheckboxGroup.d.ts +80 -0
  23. package/dist/src/components/RCheckboxGroup/utils/checkbox-group.props.d.ts +37 -0
  24. package/dist/src/components/RCheckboxGroup/utils/checkbox-group.style.d.ts +35 -0
  25. package/dist/src/components/RFormGroup/RFormGroup.d.ts +8 -2
  26. package/dist/src/components/RInput/RInput.d.ts +19 -3
  27. package/dist/src/components/RInput/utils/input.props.d.ts +7 -0
  28. package/dist/src/components/RInput/utils/input.style.d.ts +24 -2
  29. package/dist/src/components/RInputPassword/RInputPassword.d.ts +22 -0
  30. package/dist/src/components/RInputPassword/utils/input-password.props.d.ts +8 -0
  31. package/dist/src/components/RInputPassword/utils/input-password.style.d.ts +4 -0
  32. package/dist/src/components/RModal/RModal.d.ts +65 -0
  33. package/dist/src/components/RModal/utils/modal.props.d.ts +30 -0
  34. package/dist/src/components/RModal/utils/modal.style.d.ts +3 -0
  35. package/dist/src/components/RRadio/RRadio.d.ts +60 -0
  36. package/dist/src/components/RRadio/utils/radio.props.d.ts +27 -0
  37. package/dist/src/components/RRadio/utils/radio.style.d.ts +64 -0
  38. package/dist/src/components/RRadioGroup/RRadioGroup.d.ts +78 -0
  39. package/dist/src/components/RRadioGroup/utils/radio-group.props.d.ts +37 -0
  40. package/dist/src/components/RRadioGroup/utils/radio-group.style.d.ts +35 -0
  41. package/dist/src/components/RSwitch/RSwitch.d.ts +86 -0
  42. package/dist/src/components/RSwitch/utils/switch.props.d.ts +39 -0
  43. package/dist/src/components/RSwitch/utils/switch.style.d.ts +142 -0
  44. package/dist/src/components/RTable/RTable.d.ts +47 -0
  45. package/dist/src/components/RTable/utils/table.props.d.ts +23 -0
  46. package/dist/src/components/RTable/utils/table.style.d.ts +4 -0
  47. package/dist/src/components/RTabs/RTabs.d.ts +14 -14
  48. package/dist/src/components/RTabs/utils/tabs.props.d.ts +8 -6
  49. package/dist/src/components/RTabs/utils/tabs.style.d.ts +26 -10
  50. package/dist/src/components/RTextArea/RTextArea.d.ts +21 -1
  51. package/dist/src/components/RTextArea/utils/text-area.props.d.ts +11 -0
  52. package/dist/src/components/RTextArea/utils/text-area.style.d.ts +30 -2
  53. package/dist/src/components/RToast/RToast.d.ts +70 -0
  54. package/dist/src/components/RToast/utils/toast.props.d.ts +33 -0
  55. package/dist/src/components/RToast/utils/toast.style.d.ts +4 -0
  56. package/dist/src/components/RToastRenderer/RToastRenderer.d.ts +31 -0
  57. package/dist/src/components/RToastRenderer/utils/toast-renderer.props.d.ts +14 -0
  58. package/dist/src/components/RToastRenderer/utils/toast-renderer.style.d.ts +21 -0
  59. package/dist/src/components/RToggle/RToggle.d.ts +62 -0
  60. package/dist/src/components/RToggle/utils/toggle.props.d.ts +29 -0
  61. package/dist/src/components/RToggle/utils/toggle.style.d.ts +2 -0
  62. package/dist/src/composables/useModal.d.ts +8 -0
  63. package/dist/src/composables/useToast.d.ts +4 -0
  64. package/dist/src/theme/animations.d.ts +12 -0
  65. package/dist/src/theme/borders.d.ts +24 -0
  66. package/dist/src/theme/colors.d.ts +3696 -233
  67. package/dist/src/theme/fonts.d.ts +46 -0
  68. package/dist/src/theme/index.d.ts +2 -2
  69. package/dist/src/theme/radii.d.ts +24 -0
  70. package/dist/src/theme/semantic-tokens.d.ts +777 -35
  71. package/dist/src/theme/sizes.d.ts +21 -0
  72. package/dist/src/theme/spacing.d.ts +30 -0
  73. package/dist/src/theme/tokens.d.ts +3848 -232
  74. package/dist/src/types/component.d.ts +49 -12
  75. package/dist/src/types/index.d.ts +2 -3
  76. package/dist/src/utils/array.d.ts +3 -0
  77. package/dist/src/utils/regex.d.ts +2 -1
  78. package/dist/src/utils/string.d.ts +2 -1
  79. package/dist/styles.css +3308 -764
  80. package/dist/ui.js +14212 -1735
  81. package/dist/ui.umd.cjs +5 -2
  82. package/package.json +30 -32

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.