@mobilestock-native/header 0.0.10 → 0.0.12
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/index.d.ts +2 -2
- package/package.json +4 -4
package/index.d.ts
CHANGED
|
@@ -25,8 +25,8 @@ interface SubComponentProps extends ViewBaseProps {
|
|
|
25
25
|
}
|
|
26
26
|
declare function SubHeaderRoot(): never;
|
|
27
27
|
declare const SubHeader: typeof SubHeaderRoot & {
|
|
28
|
-
Vertical: react.ForwardRefExoticComponent<SubComponentProps & react.RefAttributes<react_native.View>>;
|
|
29
|
-
Horizontal: react.ForwardRefExoticComponent<SubComponentProps & react.RefAttributes<react_native.View>>;
|
|
28
|
+
Vertical: react.ForwardRefExoticComponent<Omit<SubComponentProps, "ref"> & react.RefAttributes<react_native.View>>;
|
|
29
|
+
Horizontal: react.ForwardRefExoticComponent<Omit<SubComponentProps, "ref"> & react.RefAttributes<react_native.View>>;
|
|
30
30
|
Button: typeof HeaderButton;
|
|
31
31
|
};
|
|
32
32
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mobilestock-native/header",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@mobilestock-native/button": "^1.0.
|
|
7
|
-
"@mobilestock-native/clickable": "^1.0.
|
|
8
|
-
"@mobilestock-native/container": "^
|
|
6
|
+
"@mobilestock-native/button": "^1.0.15",
|
|
7
|
+
"@mobilestock-native/clickable": "^1.0.9",
|
|
8
|
+
"@mobilestock-native/container": "^1.0.0",
|
|
9
9
|
"@mobilestock-native/image": "^0.0.8",
|
|
10
10
|
"@mobilestock-native/typography": "^0.0.9",
|
|
11
11
|
"@mobilestock-native/tools": "^0.0.10"
|