@mindly/ui-components 2.1.2 → 2.2.0

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.
@@ -3,6 +3,8 @@ import 'react-day-picker/dist/style.css';
3
3
  export declare type ModalCalendarProps = {
4
4
  onDaySelected: (day: Date) => void;
5
5
  consultationDays: Date[];
6
+ smileDays?: Date[];
7
+ noteDays?: Date[];
6
8
  selectedDate?: Date;
7
9
  };
8
10
  export declare const ModalCalendar: React.FC<ModalCalendarProps>;
@@ -7,4 +7,6 @@ declare type CustomDayProps = {
7
7
  isActive?: boolean;
8
8
  };
9
9
  export declare const CustomDayStyled: import("styled-components").StyledComponent<"div", any, CustomDayProps, never>;
10
+ export declare const DotStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
11
+ export declare const NoteStyled: import("styled-components").StyledComponent<"div", any, {}, never>;
10
12
  export {};