@dgui/react-shared 1.7.0-next.2 → 1.7.0-next.3
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/dist/Types.d.ts +5 -0
- package/package.json +2 -2
package/dist/Types.d.ts
CHANGED
|
@@ -44,9 +44,14 @@ export type TabIndexContextProps = {
|
|
|
44
44
|
};
|
|
45
45
|
export type CarouselProps = PropsWithChildren<{
|
|
46
46
|
readonly onSelectTab: Dispatch<SetStateAction<number>>;
|
|
47
|
+
readonly style?: CSSProperties | ViewStyle;
|
|
47
48
|
readonly swipe?: boolean;
|
|
48
49
|
readonly tabIndex?: number;
|
|
49
50
|
}>;
|
|
51
|
+
export type HorseProps = PropsWithChildren<{
|
|
52
|
+
readonly style?: CSSProperties | ViewStyle;
|
|
53
|
+
readonly swipe?: boolean;
|
|
54
|
+
}>;
|
|
50
55
|
export type GatewayProps = PropsWithChildren<{
|
|
51
56
|
readonly gatewayId: string;
|
|
52
57
|
}>;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@dgui/react-shared",
|
|
3
3
|
"title": "Digested React GUI Shared Components",
|
|
4
4
|
"license": "LGPL-3.0-or-later",
|
|
5
|
-
"version": "1.7.0-next.
|
|
5
|
+
"version": "1.7.0-next.3",
|
|
6
6
|
"private": false,
|
|
7
7
|
"description": "Shared Components for a boilerplate React GUI",
|
|
8
8
|
"author": "wallzero @wallzeroblog (http://wallzero.com)",
|
|
@@ -70,5 +70,5 @@
|
|
|
70
70
|
"reactjs",
|
|
71
71
|
"typescript"
|
|
72
72
|
],
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "0069cf82614f9de8788c85f30254827298d9c6c9"
|
|
74
74
|
}
|