react-native-ui-lib 8.4.3-snapshot.7930 → 8.4.3-snapshot.7933

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-ui-lib",
3
- "version": "8.4.3-snapshot.7930",
3
+ "version": "8.4.3-snapshot.7933",
4
4
  "main": "src/index.js",
5
5
  "types": "src/index.d.ts",
6
6
  "author": "Ethan Sharabi <ethan.shar@gmail.com>",
@@ -87,6 +87,11 @@
87
87
  "type": "boolean",
88
88
  "description": "Indicates if the device is an Android device that supports edge-to-edge. Defaults to true for Android with version 35 and above, undefined for others."
89
89
  },
90
+ {
91
+ "name": "containerStyle",
92
+ "type": "StyleProp<ViewStyle>",
93
+ "description": "Custom style for the outer container of the footer. Can be used to override zIndex or other container-level properties."
94
+ },
90
95
  {
91
96
  "name": "contentContainerStyle",
92
97
  "type": "StyleProp<ViewStyle>",
@@ -99,7 +99,6 @@ export interface ScreenFooterProps extends PropsWithChildren<{}> {
99
99
  hideDivider?: boolean;
100
100
  /**
101
101
  * Custom style for the outer container of the footer.
102
- * Can be used to override zIndex or other container-level properties.
103
102
  */
104
103
  containerStyle?: StyleProp<ViewStyle>;
105
104
  /**