@movmo_app/react-common 0.5.2 → 0.6.1
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/index.cjs.js +24 -24
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.es.js +1363 -1318
- package/dist/index.es.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -111,7 +111,12 @@ export declare interface PassengerFormProps {
|
|
|
111
111
|
errorMessage?: string;
|
|
112
112
|
}
|
|
113
113
|
|
|
114
|
-
export declare const PassengerFormSkeleton:
|
|
114
|
+
export declare const PassengerFormSkeleton: default_2.FC<PassengerFormSkeletonProps>;
|
|
115
|
+
|
|
116
|
+
export declare interface PassengerFormSkeletonProps {
|
|
117
|
+
children?: default_2.ReactNode;
|
|
118
|
+
showFooter?: boolean;
|
|
119
|
+
}
|
|
115
120
|
|
|
116
121
|
export declare const SearchInput: React_2.ForwardRefExoticComponent<SearchInputProps & React_2.RefAttributes<HTMLInputElement>>;
|
|
117
122
|
|