@moontra/moonui-pro 2.16.0 → 2.17.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/index.d.ts +129 -17
- package/dist/index.mjs +1128 -155
- package/package.json +3 -1
- package/src/components/calendar-pro/index.tsx +1556 -0
- package/src/components/index.ts +3 -0
package/src/components/index.ts
CHANGED
|
@@ -27,6 +27,9 @@ export * from "./spotlight-card"
|
|
|
27
27
|
// Calendar component (Advanced version with events)
|
|
28
28
|
export { Calendar as AdvancedCalendar } from "./calendar"
|
|
29
29
|
|
|
30
|
+
// Calendar Pro - Full-featured event management calendar
|
|
31
|
+
export * from "./calendar-pro"
|
|
32
|
+
|
|
30
33
|
// Kanban
|
|
31
34
|
export { Kanban } from "./kanban"
|
|
32
35
|
export type { KanbanCard, KanbanColumn, KanbanProps, KanbanAssignee, KanbanLabel } from "./kanban"
|