@hero-design/rn 8.85.0 → 8.87.1

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 (42) hide show
  1. package/.turbo/turbo-build.log +8 -2
  2. package/CHANGELOG.md +18 -0
  3. package/es/index.js +10763 -8758
  4. package/lib/index.js +10763 -8758
  5. package/package.json +2 -2
  6. package/src/components/Button/Button.tsx +22 -6
  7. package/src/components/Button/LoadingIndicator/StyledLoadingIndicator.tsx +8 -2
  8. package/src/components/Button/LoadingIndicator/__tests__/StyledLoadingIndicator.spec.tsx +3 -0
  9. package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/StyledLoadingIndicator.spec.tsx.snap +139 -1
  10. package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/index.spec.tsx.snap +408 -3
  11. package/src/components/Button/LoadingIndicator/__tests__/index.spec.tsx +3 -0
  12. package/src/components/Button/LoadingIndicator/index.tsx +4 -1
  13. package/src/components/Button/StyledButton.tsx +95 -5
  14. package/src/components/Button/__tests__/Button.spec.tsx +12 -0
  15. package/src/components/Button/__tests__/StyledButton.spec.tsx +10 -0
  16. package/src/components/Button/__tests__/__snapshots__/Button.spec.tsx.snap +1240 -90
  17. package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +630 -40
  18. package/src/components/Carousel/CardCarousel.tsx +7 -2
  19. package/src/components/Carousel/StyledCardCarousel.tsx +6 -2
  20. package/src/components/Carousel/__tests__/CardCarousel.spec.tsx +28 -1
  21. package/src/components/Carousel/__tests__/StyledCardCarousel.spec.tsx +7 -2
  22. package/src/components/Carousel/__tests__/__snapshots__/CardCarousel.spec.tsx.snap +1799 -1
  23. package/src/components/Carousel/__tests__/__snapshots__/StyledCardCarousel.spec.tsx.snap +86 -1
  24. package/src/components/RichTextEditor/RichTextEditor.tsx +30 -1
  25. package/src/components/RichTextEditor/__tests__/RichTextEditor.spec.tsx +59 -0
  26. package/src/components/RichTextEditor/types.ts +2 -0
  27. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +10 -1
  28. package/src/theme/components/button.ts +5 -0
  29. package/src/theme/components/cardCarousel.ts +5 -1
  30. package/stats/8.86.0/rn-stats.html +4842 -0
  31. package/stats/8.87.0/rn-stats.html +4844 -0
  32. package/stats/8.87.1/rn-stats.html +4842 -0
  33. package/types/components/Button/Button.d.ts +1 -1
  34. package/types/components/Button/LoadingIndicator/StyledLoadingIndicator.d.ts +1 -1
  35. package/types/components/Button/LoadingIndicator/index.d.ts +1 -1
  36. package/types/components/Button/StyledButton.d.ts +3 -3
  37. package/types/components/Carousel/CardCarousel.d.ts +4 -0
  38. package/types/components/Carousel/StyledCardCarousel.d.ts +2 -0
  39. package/types/components/RichTextEditor/RichTextEditor.d.ts +4 -0
  40. package/types/components/RichTextEditor/types.d.ts +1 -0
  41. package/types/theme/components/button.d.ts +5 -0
  42. package/types/theme/components/cardCarousel.d.ts +5 -1
@@ -1,7 +1,13 @@
1
- (node:2994) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
1
+ (node:2961) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
2
2
  (Use `node --trace-warnings ...` to show where the warning was created)
3
3
  
4
4
  src/index.ts → lib/index.js, es/index.js...
5
5
  (!) [plugin replace] @rollup/plugin-replace: 'preventAssignment' currently defaults to false. It is recommended to set this option to `true`, as the next major version will default this option to `true`.
6
+ (!) [plugin typescript] src/components/RichTextEditor/__tests__/RichTextEditor.spec.tsx (61:35): @rollup/plugin-typescript TS2307: Cannot find module '../../../../types' or its corresponding type declarations.
7
+ /home/runner/work/hero-design/hero-design/packages/rn/src/components/RichTextEditor/__tests__/RichTextEditor.spec.tsx:61:35
8
+ 
9
+ 61 import { RichTextEditorRef } from "../../../../types";
10
+    ~~~~~~~~~~~~~~~~~~~
11
+ 
6
12
  (!) [plugin node-resolve] preferring built-in module 'events' over local alternative at '/home/runner/work/hero-design/hero-design/node_modules/events/events.js', pass 'preferBuiltins: false' to disable this behavior or 'preferBuiltins: true' to disable this warning.or passing a function to 'preferBuiltins' to provide more fine-grained control over which built-in modules to prefer.
7
- created lib/index.js, es/index.js in 50s
13
+ created lib/index.js, es/index.js in 52.6s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @hero-design/rn
2
2
 
3
+ ## 8.87.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#3619](https://github.com/Thinkei/hero-design/pull/3619) [`88bfafcf9fc3dcaea7fd5ce14c29c03f3b9e80d2`](https://github.com/Thinkei/hero-design/commit/88bfafcf9fc3dcaea7fd5ce14c29c03f3b9e80d2) Thanks [@sonnguyen-eh](https://github.com/sonnguyen-eh)! - Bump hero-editor to 1.15.4, create new events and expose new functions in RichTextEditor
8
+
9
+ ## 8.87.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#3620](https://github.com/Thinkei/hero-design/pull/3620) [`5a7779f2a1283c746bd918e5f3fd35fec8471369`](https://github.com/Thinkei/hero-design/commit/5a7779f2a1283c746bd918e5f3fd35fec8471369) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Carousel.Card] Support gap prop
14
+
15
+ ## 8.86.0
16
+
17
+ ### Minor Changes
18
+
19
+ - [#3609](https://github.com/Thinkei/hero-design/pull/3609) [`6cb53946a493e6550c0bdd2b0c2c0fb683e4e77b`](https://github.com/Thinkei/hero-design/commit/6cb53946a493e6550c0bdd2b0c2c0fb683e4e77b) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Button] Add white intent
20
+
3
21
  ## 8.85.0
4
22
 
5
23
  ### Minor Changes