@hero-design/rn 8.99.4-alpha.0 → 8.99.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.
@@ -1,4 +1,4 @@
1
- (node:4110) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time
1
+ (node:3216) 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,4 +15,4 @@
15
15
  /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 → ., ....
16
16
  (!) Generated empty chunks
17
17
  "locales/types" and "locales/types"
18
- created ., . in 19.6s
18
+ created ., . in 21.1s
package/CHANGELOG.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # @hero-design/rn
2
2
 
3
- ## 8.99.4-alpha.0
3
+ ## 8.99.4
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - [`53585546fb22f193a31fb7c9eaf48039cfe85061`](https://github.com/Thinkei/hero-design/commit/53585546fb22f193a31fb7c9eaf48039cfe85061) Thanks [@ttkien](https://github.com/ttkien)! - [Tab.Scroll] change the logic to workround fix android layout issue <= 27
7
+ - [#3869](https://github.com/Thinkei/hero-design/pull/3869) [`462eaeacfd5d72708a0ef90bd3374cf4317ee807`](https://github.com/Thinkei/hero-design/commit/462eaeacfd5d72708a0ef90bd3374cf4317ee807) Thanks [@ttkien](https://github.com/ttkien)! - [Tab.Scroll] change the logic to workaround fix android layout issue android 7 and 8
8
8
 
9
9
  ## 8.99.3
10
10
 
package/es/index.js CHANGED
@@ -20908,7 +20908,7 @@ var ActiveTabIndicator = function ActiveTabIndicator(_ref) {
20908
20908
 
20909
20909
  // Checks if the platform is Android 7x and 8.x, i.e., API levels 24 to 27 (Android 7.0 to 8.1),
20910
20910
  // which may require special handling due to known platform-specific issues with layout or styling.
20911
- var isAndroid8 = Platform.OS === 'android' && 24 <= Platform.Version && Platform.Version <= 27;
20911
+ var isAndroid8 = Platform.OS === 'android' && Platform.Version >= 24 && Platform.Version <= 27;
20912
20912
  var TabScreen = index$b(View)({
20913
20913
  flex: 1
20914
20914
  });
package/lib/index.js CHANGED
@@ -20937,7 +20937,7 @@ var ActiveTabIndicator = function ActiveTabIndicator(_ref) {
20937
20937
 
20938
20938
  // Checks if the platform is Android 7x and 8.x, i.e., API levels 24 to 27 (Android 7.0 to 8.1),
20939
20939
  // which may require special handling due to known platform-specific issues with layout or styling.
20940
- var isAndroid8 = reactNative.Platform.OS === 'android' && 24 <= reactNative.Platform.Version && reactNative.Platform.Version <= 27;
20940
+ var isAndroid8 = reactNative.Platform.OS === 'android' && reactNative.Platform.Version >= 24 && reactNative.Platform.Version <= 27;
20941
20941
  var TabScreen = index$b(reactNative.View)({
20942
20942
  flex: 1
20943
20943
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hero-design/rn",
3
- "version": "8.99.4-alpha.0",
3
+ "version": "8.99.4",
4
4
  "license": "MIT",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -4,7 +4,7 @@ import styled from '@emotion/native';
4
4
  // Checks if the platform is Android 7x and 8.x, i.e., API levels 24 to 27 (Android 7.0 to 8.1),
5
5
  // which may require special handling due to known platform-specific issues with layout or styling.
6
6
  const isAndroid8 =
7
- Platform.OS === 'android' && 24 <= Platform.Version && Platform.Version <= 27;
7
+ Platform.OS === 'android' && Platform.Version >= 24 && Platform.Version <= 27;
8
8
 
9
9
  const TabScreen = styled(View)({
10
10
  flex: 1,