@mirantes-micro/foundation-design-system 0.0.83 → 0.0.84
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.d.ts +3 -2
- package/dist/index.js +9 -9
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -173,8 +173,8 @@ interface ICountryInputProps {
|
|
|
173
173
|
}
|
|
174
174
|
|
|
175
175
|
interface CountryInputProps extends Omit<ICountryInputProps, "locale" | "onChange"> {
|
|
176
|
-
floatable?: boolean;
|
|
177
176
|
className?: string;
|
|
177
|
+
buttonClassName?: string;
|
|
178
178
|
inputClassName?: string;
|
|
179
179
|
value?: string;
|
|
180
180
|
onChange?: (payload: {
|
|
@@ -182,8 +182,9 @@ interface CountryInputProps extends Omit<ICountryInputProps, "locale" | "onChang
|
|
|
182
182
|
name: string;
|
|
183
183
|
}) => void;
|
|
184
184
|
error?: string;
|
|
185
|
+
floatable?: boolean;
|
|
185
186
|
}
|
|
186
|
-
declare function CountryInput({ className, inputClassName, defaultCode, onChange, value,
|
|
187
|
+
declare function CountryInput({ className, buttonClassName, inputClassName, defaultCode, onChange, value, error, floatable, }: CountryInputProps): React__default.JSX.Element;
|
|
187
188
|
declare namespace CountryInput {
|
|
188
189
|
var displayName: string;
|
|
189
190
|
}
|