react-beauty-calendar 1.2.10 → 1.3.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.
|
@@ -1,5 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
isLoading: boolean;
|
|
3
|
-
}
|
|
4
|
-
declare const CalendarHolder: ({ isLoading }: CalendarHolderProps) => import("react/jsx-runtime").JSX.Element;
|
|
1
|
+
declare const CalendarHolder: () => import("react/jsx-runtime").JSX.Element;
|
|
5
2
|
export default CalendarHolder;
|
|
@@ -1,2 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
|
+
type DaysWeekPropsWithChildren = PropsWithChildren;
|
|
3
|
+
declare const DaysWeek: ({ children }: DaysWeekPropsWithChildren) => import("react/jsx-runtime").JSX.Element;
|
|
2
4
|
export default DaysWeek;
|