@hellobetterdigitalnz/betterui 0.0.3-218 → 0.0.3-219

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.
@@ -0,0 +1,8 @@
1
+ import { ReactNode } from "react";
2
+ import './eventModal.scss';
3
+ interface EventModalProps {
4
+ title?: string;
5
+ children?: ReactNode;
6
+ }
7
+ declare const EventModal: (props: EventModalProps) => import("react/jsx-runtime").JSX.Element;
8
+ export default EventModal;
@@ -0,0 +1,3 @@
1
+ import MoreEventProps from "./MoreEventProps.tsx";
2
+ declare const MoreEvent: (props: MoreEventProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default MoreEvent;
@@ -0,0 +1,4 @@
1
+ interface MoreEventProps {
2
+ count?: number;
3
+ }
4
+ export default MoreEventProps;
@@ -3,5 +3,6 @@ interface MonthlyDayCellProps {
3
3
  children?: ReactNode;
4
4
  className?: string;
5
5
  id?: any;
6
+ onClick?: () => void;
6
7
  }
7
8
  export default MonthlyDayCellProps;
@@ -1,3 +1,3 @@
1
- import WeekViewProps from "./WeekViewProps.tsx";
1
+ import WeekViewProps from './WeekViewProps.tsx';
2
2
  declare const WeekView: ({ events, date, startOfWeekOn }: WeekViewProps) => import("react/jsx-runtime").JSX.Element;
3
3
  export default WeekView;