@hero-design/rn-work-uikit 1.4.0 → 1.6.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 (27) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/lib/index.js +870 -639
  3. package/package.json +2 -2
  4. package/src/components/DatePicker/__tests__/__snapshots__/index.spec.tsx.snap +36 -3
  5. package/src/components/FormGroup/__tests__/__snapshots__/index.spec.tsx.snap +26 -3
  6. package/src/components/FormGroup/__tests__/index.spec.tsx +143 -3
  7. package/src/components/FormGroup/index.tsx +16 -7
  8. package/src/components/RichTextEditor/RichTextEditor.tsx +15 -24
  9. package/src/components/RichTextEditor/RichTextEditorInput.tsx +17 -11
  10. package/src/components/RichTextEditor/StyledRichTextEditor.tsx +10 -7
  11. package/src/components/RichTextEditor/__tests__/RichTextEditor.spec.tsx +81 -0
  12. package/src/components/RichTextEditor/index.tsx +2 -4
  13. package/src/components/RichTextEditor/types.ts +12 -1
  14. package/src/components/Select/__tests__/__snapshots__/index.spec.tsx.snap +24 -2
  15. package/src/components/Select/index.tsx +11 -10
  16. package/src/components/TextInput/Group/__tests__/__snapshots__/index.spec.tsx.snap +3 -3
  17. package/src/components/TextInput/Group/index.tsx +6 -1
  18. package/src/components/TextInput/StyledTextInput.tsx +3 -3
  19. package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +17 -17
  20. package/src/components/TextInput/index.tsx +2 -2
  21. package/src/components/TextInput/types.ts +1 -1
  22. package/src/index.ts +2 -1
  23. package/src/utils/hooks.ts +10 -0
  24. package/stats/1.6.0/rn-work-uikit-stats.html +4844 -0
  25. package/testUtils/setup.tsx +19 -1
  26. package/src/components/RichTextEditor/__mocks__/hero-editor.js +0 -3
  27. package/stats/1.4.0/rn-work-uikit-stats.html +0 -4844
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # @hero-design/rn-work-uikit
2
2
 
3
+ ## 1.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#4080](https://github.com/Thinkei/hero-design/pull/4080) [`920325f82fa122dee579f6b5c86fbea1f5207416`](https://github.com/Thinkei/hero-design/commit/920325f82fa122dee579f6b5c86fbea1f5207416) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [FormGroup] Support DatePicker and TimePicker components
8
+
9
+ - [#4082](https://github.com/Thinkei/hero-design/pull/4082) [`c42078b416b885383f6faf51180f302f74181268`](https://github.com/Thinkei/hero-design/commit/c42078b416b885383f6faf51180f302f74181268) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [FormGroup][richtexteditor] Support group style for RichTextEditor
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [[`920325f82fa122dee579f6b5c86fbea1f5207416`](https://github.com/Thinkei/hero-design/commit/920325f82fa122dee579f6b5c86fbea1f5207416)]:
14
+ - @hero-design/rn@8.103.7
15
+
16
+ ## 1.5.0
17
+
18
+ ### Minor Changes
19
+
20
+ - [#4071](https://github.com/Thinkei/hero-design/pull/4071) [`a045cd45b79141f02b6570907033fa3f037b5862`](https://github.com/Thinkei/hero-design/commit/a045cd45b79141f02b6570907033fa3f037b5862) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - - [FormGroup][select] Add Select support
21
+ - [TextInput.Group] Deprecate component
22
+
23
+ ### Patch Changes
24
+
25
+ - [#4077](https://github.com/Thinkei/hero-design/pull/4077) [`fa025fbffdf997d83f77919b78eae2520ddb6e2e`](https://github.com/Thinkei/hero-design/commit/fa025fbffdf997d83f77919b78eae2520ddb6e2e) Thanks [@ttkien](https://github.com/ttkien)! - [RichTextEditor] Fix issue that WebView automatiically reset when height is changed on Android
26
+
27
+ - Updated dependencies [[`3bd134bd08699566d3c25ad157b7ca68f5debc47`](https://github.com/Thinkei/hero-design/commit/3bd134bd08699566d3c25ad157b7ca68f5debc47), [`a045cd45b79141f02b6570907033fa3f037b5862`](https://github.com/Thinkei/hero-design/commit/a045cd45b79141f02b6570907033fa3f037b5862), [`fa025fbffdf997d83f77919b78eae2520ddb6e2e`](https://github.com/Thinkei/hero-design/commit/fa025fbffdf997d83f77919b78eae2520ddb6e2e)]:
28
+ - @hero-design/rn@8.103.6
29
+
3
30
  ## 1.4.0
4
31
 
5
32
  ### Minor Changes