@hellobetterdigitalnz/betterui 0.0.3-219 → 0.0.3-220
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/Components/DataDisplay/Calendar/CalendarProps.d.ts +7 -0
- package/dist/Components/DataDisplay/Calendar/Events/CalendarEvent.d.ts +3 -0
- package/dist/Components/DataDisplay/Calendar/Events/CalendarEventProps.d.ts +8 -0
- package/dist/Components/DataDisplay/Calendar/Views/DayView/DayView.d.ts +1 -1
- package/dist/Components/Icons/OfficeAndEditing/ListDashes/ListDashes.d.ts +3 -0
- package/dist/Components/Icons/index.d.ts +1 -0
- package/dist/index.cjs.js +6 -6
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +2774 -2490
- package/dist/index.es.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +2 -1
- package/dist/Components/DataDisplay/Calendar/Events/MonthlyCalendarEvent.d.ts +0 -3
- package/dist/Components/DataDisplay/Calendar/Events/MonthlyCalendarEventProps.d.ts +0 -7
|
@@ -9,10 +9,17 @@ interface NameValueInterface {
|
|
|
9
9
|
postBuffer: string
|
|
10
10
|
];
|
|
11
11
|
}
|
|
12
|
+
interface NameValueHolidayInterface {
|
|
13
|
+
label: string;
|
|
14
|
+
startDate?: any;
|
|
15
|
+
endDate?: any;
|
|
16
|
+
}
|
|
12
17
|
interface CalendarProps {
|
|
13
18
|
startOfWeekOn?: "Monday" | "Sunday";
|
|
14
19
|
events: NameValueInterface[] | any;
|
|
20
|
+
holidays?: NameValueHolidayInterface[] | any;
|
|
15
21
|
currentDate?: any;
|
|
16
22
|
}
|
|
17
23
|
export type { NameValueInterface };
|
|
24
|
+
export type { NameValueHolidayInterface };
|
|
18
25
|
export default CalendarProps;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import DayViewProps from "./DayViewProps.tsx";
|
|
2
|
-
declare const DayView: ({ date, events }: DayViewProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const DayView: ({ date, events, holidays }: DayViewProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default DayView;
|
|
@@ -57,6 +57,7 @@ export { default as TextColumns } from './OfficeAndEditing/TextColumns/TextColum
|
|
|
57
57
|
export { default as Folder } from './OfficeAndEditing/Folder/Folder.tsx';
|
|
58
58
|
export { default as ListBullets } from './OfficeAndEditing/ListBullets/ListBullets.tsx';
|
|
59
59
|
export { default as List } from './OfficeAndEditing/List/List.tsx';
|
|
60
|
+
export { default as ListDashes } from './OfficeAndEditing/ListDashes/ListDashes.tsx';
|
|
60
61
|
export { default as Printer } from './OfficeAndEditing/Printer/Printer.tsx';
|
|
61
62
|
export { default as Trash } from './OfficeAndEditing/Trash/Trash.tsx';
|
|
62
63
|
export { default as FloppyDisk } from './OfficeAndEditing/FloppyDisk/FloppyDisk.tsx';
|