@mindly/ui-components 1.10.5 → 1.11.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.
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/HorisontalCalendar/HorizontalCalendar.d.ts +2 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/HorisontalCalendar/HorizontalCalendar.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export declare type HorizontalCalendarProps = {
|
|
3
3
|
consultationDatesSeconds?: number[];
|
|
4
|
+
myNotesDatesSeconds?: number[];
|
|
5
|
+
toMeNotesDatesSeconds?: number[];
|
|
4
6
|
/**
|
|
5
7
|
* Days to be rendered. e.g. 15 - means 7 before today and 7 after today
|
|
6
8
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -153,6 +153,8 @@ declare const ModalCalendar: React.FC<ModalCalendarProps>;
|
|
|
153
153
|
|
|
154
154
|
declare type HorizontalCalendarProps = {
|
|
155
155
|
consultationDatesSeconds?: number[];
|
|
156
|
+
myNotesDatesSeconds?: number[];
|
|
157
|
+
toMeNotesDatesSeconds?: number[];
|
|
156
158
|
/**
|
|
157
159
|
* Days to be rendered. e.g. 15 - means 7 before today and 7 after today
|
|
158
160
|
*/
|