@mirantes-micro/foundation-design-system 0.0.91 → 0.0.93
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 +2 -2
- package/dist/index.js +38 -12
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -216,11 +216,11 @@ declare function SalaryInput({ value, currency, onChange, label, placeholder, cl
|
|
|
216
216
|
|
|
217
217
|
interface CalendarProps {
|
|
218
218
|
locale?: "pt" | "fr" | "en";
|
|
219
|
-
onCreateEvent?: () => void;
|
|
220
219
|
onMarkAsUnavailable?: () => void;
|
|
221
220
|
isModalOpen?: boolean;
|
|
222
221
|
onClose?: () => void;
|
|
222
|
+
calendarCardClassName?: string;
|
|
223
223
|
}
|
|
224
|
-
declare function Calendar({ locale,
|
|
224
|
+
declare function Calendar({ locale, onMarkAsUnavailable, isModalOpen, onClose, calendarCardClassName, }: CalendarProps): React__default.JSX.Element;
|
|
225
225
|
|
|
226
226
|
export { AddressAutocompleteInput, CountryDisplay, CountryInput, CustomDateInput, DateInput, GradientModal, Header, MirantesFoundationProvider, SalaryInput, Calendar as ScheduleCalendar, Spinner, WorkspacePanel, closeLogoutChannel, getInitials, joinUrlWithPathAndQuery, onLogout, stringToObj, useMirantesFoundation };
|