@movmo_app/react-common 0.6.0 → 0.6.2
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 +7 -7
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +7 -2
- package/dist/index.es.js +104 -96
- package/dist/index.es.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
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
|
|
|
@@ -132,7 +137,7 @@ declare interface SelectDropdownProps {
|
|
|
132
137
|
onChange: (selectedOption: SingleValue<SelectDropdownOption>) => void;
|
|
133
138
|
className?: string;
|
|
134
139
|
styles?: StylesConfig<SelectDropdownOption, false>;
|
|
135
|
-
|
|
140
|
+
'data-testid'?: string;
|
|
136
141
|
}
|
|
137
142
|
|
|
138
143
|
export declare const Separator: React_2.ForwardRefExoticComponent<SeparatorProps & React_2.RefAttributes<HTMLDivElement>>;
|