@mirantes-micro/foundation-design-system 0.0.78 → 0.0.80
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 +11 -1
- package/dist/index.js +9 -9
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -173,6 +173,16 @@ declare namespace CountryInput {
|
|
|
173
173
|
var displayName: string;
|
|
174
174
|
}
|
|
175
175
|
|
|
176
|
+
interface CountryDisplayProps {
|
|
177
|
+
code: string;
|
|
178
|
+
locale: "pt" | "fr" | "en";
|
|
179
|
+
className?: string;
|
|
180
|
+
}
|
|
181
|
+
declare function CountryDisplay({ code, locale, className, }: CountryDisplayProps): React__default.JSX.Element | null;
|
|
182
|
+
declare namespace CountryDisplay {
|
|
183
|
+
var displayName: string;
|
|
184
|
+
}
|
|
185
|
+
|
|
176
186
|
interface SalaryInputProps {
|
|
177
187
|
value?: string;
|
|
178
188
|
currency?: string;
|
|
@@ -187,4 +197,4 @@ interface SalaryInputProps {
|
|
|
187
197
|
}
|
|
188
198
|
declare function SalaryInput({ value, currency, onChange, label, placeholder, className, disabled, required, id, floatable, }: SalaryInputProps): React__default.JSX.Element;
|
|
189
199
|
|
|
190
|
-
export { AddressAutocompleteInput, CountryInput, CustomDateInput, DateInput, GradientModal, Header, MirantesFoundationProvider, SalaryInput, Spinner, WorkspacePanel, closeLogoutChannel, getInitials, joinUrlWithPathAndQuery, onLogout, stringToObj, useMirantesFoundation };
|
|
200
|
+
export { AddressAutocompleteInput, CountryDisplay, CountryInput, CustomDateInput, DateInput, GradientModal, Header, MirantesFoundationProvider, SalaryInput, Spinner, WorkspacePanel, closeLogoutChannel, getInitials, joinUrlWithPathAndQuery, onLogout, stringToObj, useMirantesFoundation };
|