@app-studio/web 0.9.36 → 0.9.37

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.
@@ -114,6 +114,9 @@ Customize the appearance of calendar elements using the `views` prop.
114
114
  | `onEventDrop` | `(event: CalendarEvent) => void` | Callback when an event is moved to a new date. | - |
115
115
  | `onEventResize` | `(event: CalendarEvent) => void` | Callback when an event is resized. | - |
116
116
  | `onEventAdd` | `(start: string, end: string) => void` | Callback when a date is double-clicked to add an event. | - |
117
+ | `onEventTitleChange` | `(event: CalendarEvent, newTitle: string) => void` | Callback when an event's title is changed. | - |
118
+ | `onEventDescriptionChange` | `(event: CalendarEvent, newDescription: string) => void` | Callback when an event's description is changed. | - |
119
+ | `onEventDelete` | `(event: CalendarEvent) => void` | Callback when an event is deleted. | - |
117
120
  | `onDateClick` | `(date: string) => void` | Callback when a date is clicked. | - |
118
121
  | `onDateChange` | `(date: Date) => void` | Callback when the visible date range changes. | - |
119
122
  | `onViewChange` | `(view: CalendarView) => void` | Callback when the active view changes. | - |
@@ -115,6 +115,10 @@ export const CustomRenderKanbanBoard = () => {
115
115
  | --- | --- | --- | --- |
116
116
  | `columns` | `KanbanBoardColumn[]` | Array of columns to display. | `[]` |
117
117
  | `onChange` | `(columns: KanbanBoardColumn[]) => void` | Callback when columns or cards are changed. | - |
118
+ | `onCardCreate` | `(card: KanbanBoardCard, column: KanbanBoardColumn) => void` | Callback when a card is created. | - |
119
+ | `onCardDelete` | `(card: KanbanBoardCard, column: KanbanBoardColumn) => void` | Callback when a card is deleted. | - |
120
+ | `onCardTitleChange` | `(card: KanbanBoardCard, column: KanbanBoardColumn, newTitle: string) => void` | Callback when a card's title is changed. | - |
121
+ | `onCardDescriptionChange` | `(card: KanbanBoardCard, column: KanbanBoardColumn, newDescription: string) => void` | Callback when a card's description is changed. | - |
118
122
  | `renderCard` | `(card: KanbanBoardCard, column: KanbanBoardColumn) => React.ReactNode` | Custom render method for cards. | - |
119
123
  | `renderColumnHeader` | `(column: KanbanBoardColumn) => React.ReactNode` | Custom render method for column headers. | - |
120
124
  | `renderEmptyState` | `(column: KanbanBoardColumn) => React.ReactNode` | Custom render method for empty column state. | - |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@app-studio/web",
3
- "version": "0.9.36",
3
+ "version": "0.9.37",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/components/index.d.ts",
6
6
  "files": [