@hero-design/rn-work-uikit 1.9.2 → 1.9.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 (31) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/assets/fonts/hero-icons-mobile.ttf +0 -0
  3. package/lib/index.js +19732 -304
  4. package/package.json +2 -20
  5. package/src/components/FormGroup/index.tsx +1 -1
  6. package/src/components/RichTextEditor/EditorToolbar.tsx +30 -80
  7. package/src/components/RichTextEditor/MentionList.tsx +1 -1
  8. package/src/components/RichTextEditor/RichTextEditor.tsx +3 -13
  9. package/src/components/RichTextEditor/RichTextEditorInput.tsx +22 -2
  10. package/src/components/RichTextEditor/StyledRichTextEditor.tsx +0 -1
  11. package/src/components/RichTextEditor/__tests__/EditorToolbar.spec.tsx +40 -30
  12. package/src/components/RichTextEditor/__tests__/RichTextEditorInput.spec.tsx +38 -0
  13. package/src/components/RichTextEditor/__tests__/__snapshots__/EditorToolbar.spec.tsx.snap +0 -7
  14. package/src/components/RichTextEditor/constants.ts +18 -0
  15. package/src/components/RichTextEditor/hooks/useRichTextEditorEvents.ts +79 -0
  16. package/src/components/RichTextEditor/index.tsx +8 -1
  17. package/src/components/RichTextEditor/utils/events.ts +1 -13
  18. package/src/components/TextInput/ErrorOrHelpText.tsx +1 -1
  19. package/src/components/TextInput/FloatingLabel.tsx +1 -1
  20. package/src/components/TextInput/InputComponent.tsx +1 -1
  21. package/src/components/TextInput/MaxLengthMessage.tsx +1 -1
  22. package/src/components/TextInput/PrefixComponent.tsx +1 -1
  23. package/src/components/TextInput/StyledTextInput.tsx +0 -8
  24. package/src/components/TextInput/SuffixComponent.tsx +1 -1
  25. package/src/index.ts +2 -1
  26. package/src/theme/ThemeProvider.ts +1 -3
  27. package/src/utils/helpers.ts +1 -41
  28. package/.cursor/rules/performance-optimization.mdc +0 -64
  29. package/.cursor/rules/rn-work-uikit-rules.mdc +0 -202
  30. package/.cursor/rules/testing-rules.mdc +0 -114
  31. package/stats/1.9.2/rn-work-uikit-stats.html +0 -4844
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @hero-design/rn-work-uikit
2
2
 
3
+ ## 1.9.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#4483](https://github.com/Thinkei/hero-design/pull/4483) [`345892869b9690f168b71cdd66a65996b5c9a15d`](https://github.com/Thinkei/hero-design/commit/345892869b9690f168b71cdd66a65996b5c9a15d) Thanks [@tqdungit](https://github.com/tqdungit)! - Revert "[ANG-4128] Upgrade date-fns from v2 to v4 (#4420)"
8
+
9
+ - Updated dependencies [[`345892869b9690f168b71cdd66a65996b5c9a15d`](https://github.com/Thinkei/hero-design/commit/345892869b9690f168b71cdd66a65996b5c9a15d), [`5be4e6e0477d9027fd78a36f09eec697f17490c5`](https://github.com/Thinkei/hero-design/commit/5be4e6e0477d9027fd78a36f09eec697f17490c5)]:
10
+ - @hero-design/rn@8.113.0
11
+
12
+ ## 1.9.3
13
+
14
+ ### Patch Changes
15
+
16
+ - [#4361](https://github.com/Thinkei/hero-design/pull/4361) [`5456f7a45b50d985b15ec16b2d09e16d7b115a38`](https://github.com/Thinkei/hero-design/commit/5456f7a45b50d985b15ec16b2d09e16d7b115a38) Thanks [@khoaddtran](https://github.com/khoaddtran)! - [RichTextEditor] Sync new features of RichTextEditor to rn-work-uikit
17
+
18
+ - Updated dependencies [[`5456f7a45b50d985b15ec16b2d09e16d7b115a38`](https://github.com/Thinkei/hero-design/commit/5456f7a45b50d985b15ec16b2d09e16d7b115a38)]:
19
+ - @hero-design/rn@8.112.4
20
+
3
21
  ## 1.9.2
4
22
 
5
23
  ### Patch Changes
Binary file