@hellobetterdigitalnz/betterui 0.0.3-215 → 0.0.3-217
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/Calendar.d.ts +3 -0
- package/dist/Components/DataDisplay/Calendar/CalendarProps.d.ts +18 -0
- package/dist/Components/DataDisplay/Calendar/Events/MonthlyCalendarEvent.d.ts +3 -0
- package/dist/Components/DataDisplay/Calendar/Events/MonthlyCalendarEventProps.d.ts +7 -0
- package/dist/Components/DataDisplay/Calendar/Events/PrimaryIcon.d.ts +2 -0
- package/dist/Components/DataDisplay/Calendar/Events/SecondaryIcon.d.ts +2 -0
- package/dist/Components/DataDisplay/Calendar/MonthlyDayCell.d.ts +3 -0
- package/dist/Components/DataDisplay/Calendar/MonthlyDayCellProps.d.ts +7 -0
- package/dist/Components/DataDisplay/Calendar/Views/DayView/DayView.d.ts +3 -0
- package/dist/Components/DataDisplay/Calendar/Views/DayView/DayViewProps.d.ts +5 -0
- package/dist/Components/DataDisplay/Calendar/Views/MonthView/MonthView.d.ts +3 -0
- package/dist/Components/DataDisplay/Calendar/Views/WeekView/WeekView.d.ts +3 -0
- package/dist/Components/DataDisplay/Calendar/Views/WeekView/WeekViewProps.d.ts +5 -0
- package/dist/Components/DataDisplay/index.d.ts +2 -0
- package/dist/Components/Icons/OfficeAndEditing/Copy/Copy.d.ts +3 -0
- package/dist/Components/Icons/index.d.ts +1 -0
- package/dist/index.cjs.js +5 -5
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +220 -180
- package/dist/index.es.js.map +1 -1
- package/package.json +3 -2
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
interface NameValueInterface {
|
|
2
|
+
label: string;
|
|
3
|
+
type?: "primary" | "secondary" | undefined;
|
|
4
|
+
color?: string;
|
|
5
|
+
startTime?: any;
|
|
6
|
+
timeDuration?: any;
|
|
7
|
+
bufferTime?: [
|
|
8
|
+
preBuffer: string,
|
|
9
|
+
postBuffer: string
|
|
10
|
+
];
|
|
11
|
+
}
|
|
12
|
+
interface CalendarProps {
|
|
13
|
+
startOfWeekOn?: "Monday" | "Sunday";
|
|
14
|
+
events: NameValueInterface[] | any;
|
|
15
|
+
currentDate?: any;
|
|
16
|
+
}
|
|
17
|
+
export type { NameValueInterface };
|
|
18
|
+
export default CalendarProps;
|
|
@@ -71,3 +71,5 @@ export type { default as TableHeaderCellProps } from './Table/TableHeaderCellPro
|
|
|
71
71
|
export type { default as TableHeadProps } from './Table/TableHeadProps';
|
|
72
72
|
export type { default as TableProps } from './Table/TableProps';
|
|
73
73
|
export type { default as TableRowProps } from './Table/TableRowProps';
|
|
74
|
+
export type { default as CalendarView } from './Calendar/Calendar.tsx';
|
|
75
|
+
export type { default as CalendarProps } from './Calendar/CalendarProps.tsx';
|
|
@@ -60,6 +60,7 @@ export { default as List } from './OfficeAndEditing/List/List.tsx';
|
|
|
60
60
|
export { default as Printer } from './OfficeAndEditing/Printer/Printer.tsx';
|
|
61
61
|
export { default as Trash } from './OfficeAndEditing/Trash/Trash.tsx';
|
|
62
62
|
export { default as FloppyDisk } from './OfficeAndEditing/FloppyDisk/FloppyDisk.tsx';
|
|
63
|
+
export { default as Copy } from './OfficeAndEditing/Copy/Copy.tsx';
|
|
63
64
|
export { default as User } from './People/User/User.tsx';
|
|
64
65
|
export { default as UserCircle } from './People/UserCircle/UserCircle.tsx';
|
|
65
66
|
export { default as UserSwitch } from './People/UserSwitch/UserSwitch.tsx';
|