@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.
- package/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +2 -2
- package/es/index.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/components/Tabs/StyledScrollableTabs.tsx +1 -1
- package/stats/8.99.4/rn-stats.html +4842 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
(node:
|
|
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
|
[36m
|
|
4
4
|
[1msrc/index.ts[22m → [1mlib/index.js, es/index.js[22m...[39m
|
|
@@ -15,4 +15,4 @@
|
|
|
15
15
|
[1m/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[22m → [1m., .[22m...[39m
|
|
16
16
|
[1m[33m(!) Generated empty chunks[39m[22m
|
|
17
17
|
"locales/types" and "locales/types"
|
|
18
|
-
[32mcreated [1m., .[22m in [
|
|
18
|
+
[32mcreated [1m., .[22m in [1m21.1s[22m[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# @hero-design/rn
|
|
2
2
|
|
|
3
|
-
## 8.99.4
|
|
3
|
+
## 8.99.4
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
- [`
|
|
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' &&
|
|
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' &&
|
|
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
|
@@ -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' &&
|
|
7
|
+
Platform.OS === 'android' && Platform.Version >= 24 && Platform.Version <= 27;
|
|
8
8
|
|
|
9
9
|
const TabScreen = styled(View)({
|
|
10
10
|
flex: 1,
|