@hero-design/rn 8.104.1-alpha.3 → 8.105.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 (34) hide show
  1. package/.turbo/turbo-build.log +3 -3
  2. package/CHANGELOG.md +6 -18
  3. package/assets/fonts/hero-icons-mobile.ttf +0 -0
  4. package/es/index.js +521 -284
  5. package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
  6. package/lib/index.js +521 -283
  7. package/package.json +1 -1
  8. package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
  9. package/src/components/Icon/IconList.ts +2 -0
  10. package/src/components/SegmentedControl/SegmentedItem.tsx +192 -0
  11. package/src/components/SegmentedControl/StyledSegmentedControl.tsx +62 -0
  12. package/src/components/SegmentedControl/__tests__/SegmentedItem.spec.tsx +162 -0
  13. package/src/components/SegmentedControl/__tests__/__snapshots__/SegmentedItem.spec.tsx.snap +131 -0
  14. package/src/components/SegmentedControl/__tests__/__snapshots__/index.spec.tsx.snap +359 -0
  15. package/src/components/SegmentedControl/__tests__/index.spec.tsx +247 -0
  16. package/src/components/SegmentedControl/index.tsx +61 -0
  17. package/src/components/SegmentedControl/types.ts +46 -0
  18. package/src/index.ts +2 -0
  19. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +53 -0
  20. package/src/theme/components/segmentedControl.ts +60 -0
  21. package/src/theme/getTheme.ts +3 -0
  22. package/src/types.ts +2 -0
  23. package/stats/8.105.0/rn-stats.html +4844 -0
  24. package/types/components/Icon/IconList.d.ts +1 -1
  25. package/types/components/Icon/index.d.ts +1 -1
  26. package/types/components/SegmentedControl/SegmentedItem.d.ts +18 -0
  27. package/types/components/SegmentedControl/StyledSegmentedControl.d.ts +26 -0
  28. package/types/components/SegmentedControl/index.d.ts +31 -0
  29. package/types/components/SegmentedControl/types.d.ts +43 -0
  30. package/types/components/TextInput/index.d.ts +1 -1
  31. package/types/index.d.ts +2 -1
  32. package/types/theme/components/segmentedControl.d.ts +46 -0
  33. package/types/theme/getTheme.d.ts +2 -0
  34. package/types/types.d.ts +2 -1
@@ -1,4 +1,4 @@
1
- (node:4254) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
1
+ (node:3326) 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...
@@ -15,9 +15,9 @@ node_modules/d3-selection/src/selection/index.js -> node_modules/d3-selection/sr
15
15
     ~~~~~~~~~~~~~~~~~~~
16
16
  
17
17
  (!) [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.
18
- created lib/index.js, es/index.js in 1m 13.8s
18
+ created lib/index.js, es/index.js in 1m 11.2s
19
19
  
20
20
  /home/runner/work/hero-design/hero-design/packages/rn/src/locales/en_AU.ts, /home/runner/work/hero-design/hero-design/packages/rn/src/locales/en_CA.ts, /home/runner/work/hero-design/hero-design/packages/rn/src/locales/index.ts, /home/runner/work/hero-design/hero-design/packages/rn/src/locales/types.ts → ., ....
21
21
  (!) Generated empty chunks
22
22
  "locales/types" and "locales/types"
23
- created ., . in 21.7s
23
+ created ., . in 22.8s
package/CHANGELOG.md CHANGED
@@ -1,30 +1,18 @@
1
1
  # @hero-design/rn
2
2
 
3
- ## 8.104.1-alpha.3
3
+ ## 8.105.0
4
4
 
5
- ### Patch Changes
6
-
7
- - [#3497](https://github.com/Thinkei/hero-design/pull/3497) [`e92d1dab57316441e7b5054debe823328e1a1083`](https://github.com/Thinkei/hero-design/commit/e92d1dab57316441e7b5054debe823328e1a1083) Thanks [@luanlai2201](https://github.com/luanlai2201)! - [Font] replace playful font to Saiga
8
-
9
- - [#4123](https://github.com/Thinkei/hero-design/pull/4123) [`ecc5905dec81783858f57595a0af4306ff3b0b89`](https://github.com/Thinkei/hero-design/commit/ecc5905dec81783858f57595a0af4306ff3b0b89) Thanks [@truongnguyen-eh](https://github.com/truongnguyen-eh)! - [ANG-3740] Resolve conflict between alpha and master-react-18
10
-
11
- ## 8.104.1-alpha.2
12
-
13
- ### Patch Changes
14
-
15
- - [#3497](https://github.com/Thinkei/hero-design/pull/3497) [`e92d1dab57316441e7b5054debe823328e1a1083`](https://github.com/Thinkei/hero-design/commit/e92d1dab57316441e7b5054debe823328e1a1083) Thanks [@luanlai2201](https://github.com/luanlai2201)! - [Font] replace playful font to Saiga
16
-
17
- ## 8.104.1-alpha.1
5
+ ### Minor Changes
18
6
 
19
- ### Patch Changes
7
+ - [#4111](https://github.com/Thinkei/hero-design/pull/4111) [`b456f49b8663432203cbf1e29b2fc9034b9c4626`](https://github.com/Thinkei/hero-design/commit/b456f49b8663432203cbf1e29b2fc9034b9c4626) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Typography] Add inactive intent
20
8
 
21
- - [#3497](https://github.com/Thinkei/hero-design/pull/3497) [`e92d1dab57316441e7b5054debe823328e1a1083`](https://github.com/Thinkei/hero-design/commit/e92d1dab57316441e7b5054debe823328e1a1083) Thanks [@luanlai2201](https://github.com/luanlai2201)! - [Font] replace playful font to Saiga
9
+ - [#4112](https://github.com/Thinkei/hero-design/pull/4112) [`9c1025c6c1dae4d0f26663e10d66e5897d85d855`](https://github.com/Thinkei/hero-design/commit/9c1025c6c1dae4d0f26663e10d66e5897d85d855) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [SegmentedControl] Add component
22
10
 
23
- ## 8.104.1-alpha.0
11
+ - [#4114](https://github.com/Thinkei/hero-design/pull/4114) [`32483464c8c3162f88c1490581d1f5bfde8a2766`](https://github.com/Thinkei/hero-design/commit/32483464c8c3162f88c1490581d1f5bfde8a2766) Thanks [@dathuynh-eh](https://github.com/dathuynh-eh)! - Add thumb-up icon
24
12
 
25
13
  ### Patch Changes
26
14
 
27
- - [#3497](https://github.com/Thinkei/hero-design/pull/3497) [`e92d1dab57316441e7b5054debe823328e1a1083`](https://github.com/Thinkei/hero-design/commit/e92d1dab57316441e7b5054debe823328e1a1083) Thanks [@luanlai2201](https://github.com/luanlai2201)! - [Font] replace playful font to Saiga
15
+ - [#4110](https://github.com/Thinkei/hero-design/pull/4110) [`227785af865941bf443c4d1df237365d8c27cc5f`](https://github.com/Thinkei/hero-design/commit/227785af865941bf443c4d1df237365d8c27cc5f) Thanks [@ngvuthanhnhan-eh-hi](https://github.com/ngvuthanhnhan-eh-hi)! - [Calendar] Extract calendar logic into reusable hooks
28
16
 
29
17
  ## 8.104.0
30
18
 
Binary file