@hellobetterdigitalnz/betterui 0.0.3-310 → 0.0.3-313
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/GanttChart/GanttChart.d.ts +20 -3
- package/dist/Components/DataDisplay/index.d.ts +1 -0
- package/dist/betterui.css +1 -1
- package/dist/index.cjs.js +10 -10
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +3264 -2952
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
- package/src/Components/DataDisplay/GanttChart/{GanttChart.scss → GanttChart.module.scss} +74 -55
- package/src/Components/DataDisplay/GanttChart/GanttChart.tsx +379 -179
- package/src/Components/DataDisplay/index.ts +2 -0
|
@@ -85,3 +85,5 @@ export type { default as TableRowProps} from './Table/TableRowProps';
|
|
|
85
85
|
export {default as CalendarView} from './Calendar/Calendar.tsx'
|
|
86
86
|
export type {default as CalendarProps} from './Calendar/CalendarProps.tsx'
|
|
87
87
|
|
|
88
|
+
export {default as GanttChart} from './GanttChart/GanttChart.tsx'
|
|
89
|
+
|