@progress/kendo-react-taskboard 13.3.0 → 13.4.0-develop.2
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/TaskBoard.d.ts +218 -0
- package/TaskBoardAddCard.d.ts +35 -0
- package/TaskBoardAddCard.mjs +16 -16
- package/TaskBoardCardBase.d.ts +66 -0
- package/TaskBoardCardBase.mjs +13 -13
- package/TaskBoardColumnBase.d.ts +82 -0
- package/TaskBoardColumnBase.mjs +12 -12
- package/TaskBoardConfirmDialog.d.ts +41 -0
- package/TaskBoardConfirmDialog.js +1 -1
- package/TaskBoardConfirmDialog.mjs +6 -6
- package/TaskBoardEditCard.d.ts +23 -0
- package/TaskBoardEditCard.mjs +16 -16
- package/TaskBoardTaskEditPane.d.ts +96 -0
- package/TaskBoardTaskEditPane.js +1 -1
- package/TaskBoardTaskEditPane.mjs +6 -6
- package/TaskBoardToolbar.d.ts +29 -0
- package/TaskBoardToolbar.js +1 -1
- package/TaskBoardToolbar.mjs +7 -7
- package/card/Card.d.ts +148 -0
- package/card/Card.mjs +3 -3
- package/card/CardBody.d.ts +26 -0
- package/card/CardHeader.d.ts +60 -0
- package/card/CardHeader.js +1 -1
- package/card/CardHeader.mjs +1 -2
- package/card/PreviewDialog.d.ts +54 -0
- package/card/PreviewDialog.js +1 -1
- package/card/PreviewDialog.mjs +1 -1
- package/column/Column.d.ts +165 -0
- package/column/Column.mjs +3 -3
- package/column/ColumnBody.d.ts +21 -0
- package/column/ColumnHeader.d.ts +59 -0
- package/constants.d.ts +27 -0
- package/dist/cdn/js/kendo-react-taskboard.js +1 -1
- package/hooks/taskEditing.d.ts +56 -0
- package/index.d.mts +14 -928
- package/index.d.ts +14 -928
- package/messages/index.d.ts +157 -0
- package/package-metadata.d.ts +12 -0
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +10 -16
- package/package.json +13 -13
- package/utils.d.ts +32 -0
package/index.d.mts
CHANGED
|
@@ -5,931 +5,17 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
*/
|
|
23
|
-
id: string | number | undefined;
|
|
24
|
-
/**
|
|
25
|
-
* Determines the title of an ItemModel.
|
|
26
|
-
*/
|
|
27
|
-
title: string;
|
|
28
|
-
/**
|
|
29
|
-
* Determines the status of an ItemModel.
|
|
30
|
-
*/
|
|
31
|
-
status: string;
|
|
32
|
-
/**
|
|
33
|
-
* Determines of an ItemModel is going to edited.
|
|
34
|
-
*/
|
|
35
|
-
edit?: boolean;
|
|
36
|
-
/**
|
|
37
|
-
* @hidden
|
|
38
|
-
*/
|
|
39
|
-
isPlaceholder?: boolean;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
/**
|
|
43
|
-
* Represents the [KendoReact TaskBoard component](https://www.telerik.com/kendo-react-ui/components/taskboard).
|
|
44
|
-
*
|
|
45
|
-
* Accepts properties of type [TaskBoardProps](https://www.telerik.com/kendo-react-ui/components/taskboard/api/taskboardprops).
|
|
46
|
-
*
|
|
47
|
-
* @remarks
|
|
48
|
-
* Supported children components are: {@link TaskBoardToolbar}.
|
|
49
|
-
*/
|
|
50
|
-
export declare const TaskBoard: React_2.ForwardRefExoticComponent<TaskBoardProps & React_2.RefAttributes<TaskBoardHandle | null>>;
|
|
51
|
-
|
|
52
|
-
/**
|
|
53
|
-
* Represents the TaskBoardAddCard component.
|
|
54
|
-
*/
|
|
55
|
-
export declare const TaskBoardAddCard: React_2.FunctionComponent<TaskBoardAddCardProps>;
|
|
56
|
-
|
|
57
|
-
/**
|
|
58
|
-
* Represents the props of the TaskBoardAddCard component
|
|
59
|
-
*/
|
|
60
|
-
export declare interface TaskBoardAddCardProps {
|
|
61
|
-
/**
|
|
62
|
-
* Represent the priorities of the task board card.
|
|
63
|
-
*/
|
|
64
|
-
priorities: TaskBoardPriority[];
|
|
65
|
-
/**
|
|
66
|
-
* Triggered on `onClose` event of the TaskBoardAddCard.
|
|
67
|
-
*/
|
|
68
|
-
onClose: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
69
|
-
/**
|
|
70
|
-
* Triggered on `onSave` event of the TaskBoardAddCard.
|
|
71
|
-
*/
|
|
72
|
-
onSave: (task: TaskBoardTaskModel, prevTask: TaskBoardTaskModel) => void;
|
|
73
|
-
/**
|
|
74
|
-
* Specifies the TaskBoardTaskEditPane component.
|
|
75
|
-
*/
|
|
76
|
-
editPane: React_2.ComponentType<TaskBoardTaskEditPaneProps>;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
/**
|
|
80
|
-
* Represents the TaskBoardCard component.
|
|
81
|
-
*/
|
|
82
|
-
export declare const TaskBoardCard: React_2.FunctionComponent<TaskBoardCardProps>;
|
|
83
|
-
|
|
84
|
-
/**
|
|
85
|
-
* Represents the TaskBoardCardBody component.
|
|
86
|
-
*/
|
|
87
|
-
export declare const TaskBoardCardBody: React_2.FunctionComponent<TaskBoardCardBodyProps>;
|
|
88
|
-
|
|
89
|
-
/**
|
|
90
|
-
* Represents the props of the TaskBoardCardBody component.
|
|
91
|
-
*/
|
|
92
|
-
export declare interface TaskBoardCardBodyProps {
|
|
93
|
-
/**
|
|
94
|
-
* Determines the children nodes.
|
|
95
|
-
*/
|
|
96
|
-
children: React_2.ReactNode;
|
|
97
|
-
/**
|
|
98
|
-
* Determines the TaskBoardTask.
|
|
99
|
-
*/
|
|
100
|
-
task: TaskBoardTaskModel;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
/**
|
|
104
|
-
* Represents the TaskBoardCardHeader component.
|
|
105
|
-
*/
|
|
106
|
-
export declare const TaskBoardCardHeader: React_2.FunctionComponent<TaskBoardCardHeaderProps>;
|
|
107
|
-
|
|
108
|
-
/**
|
|
109
|
-
* Represents the props of the TaskBoardCardHeader component.
|
|
110
|
-
*/
|
|
111
|
-
export declare interface TaskBoardCardHeaderProps {
|
|
112
|
-
/**
|
|
113
|
-
* Determines the visibility of the show menu.
|
|
114
|
-
*/
|
|
115
|
-
showMenu: boolean;
|
|
116
|
-
/**
|
|
117
|
-
* Represents the menu items.
|
|
118
|
-
*/
|
|
119
|
-
menuItems: any[];
|
|
120
|
-
/**
|
|
121
|
-
* Specifies the popup reference.
|
|
122
|
-
*/
|
|
123
|
-
popupRef: React_2.RefObject<PopupHandle | null>;
|
|
124
|
-
/**
|
|
125
|
-
* The rendered title.
|
|
126
|
-
*/
|
|
127
|
-
title: React_2.ReactNode;
|
|
128
|
-
/**
|
|
129
|
-
* The rendered task.
|
|
130
|
-
*/
|
|
131
|
-
task: TaskBoardTaskModel;
|
|
132
|
-
/**
|
|
133
|
-
* Fires when the preview pane needs to be shown.
|
|
134
|
-
*/
|
|
135
|
-
onShowPreviewPane: (event: React_2.MouseEvent<HTMLElement>) => void;
|
|
136
|
-
/**
|
|
137
|
-
* Fires when the menu needs to be shown.
|
|
138
|
-
*/
|
|
139
|
-
onShowMenu: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
140
|
-
/**
|
|
141
|
-
* Fires when the menu needs to be hidden.
|
|
142
|
-
*/
|
|
143
|
-
onHideMenu: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
144
|
-
/**
|
|
145
|
-
* Fires on blur of the menu button.
|
|
146
|
-
*/
|
|
147
|
-
onMenuButtonBlur: (event: React_2.FocusEvent<HTMLButtonElement>) => void;
|
|
148
|
-
/**
|
|
149
|
-
* Fires when menu item is selected.
|
|
150
|
-
*/
|
|
151
|
-
onMenuItemSelect: (event: MenuSelectEvent) => void;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
/**
|
|
155
|
-
* Represents the props of the TaskBoardCard component.
|
|
156
|
-
*/
|
|
157
|
-
export declare interface TaskBoardCardProps {
|
|
158
|
-
/**
|
|
159
|
-
* The rendered task.
|
|
160
|
-
*/
|
|
161
|
-
task: TaskBoardTaskModel;
|
|
162
|
-
/**
|
|
163
|
-
* The applied styles.
|
|
164
|
-
*/
|
|
165
|
-
style?: React_2.CSSProperties;
|
|
166
|
-
/**
|
|
167
|
-
* Specifies the `tabIndex` that will be added to the TaskBoard Card element.
|
|
168
|
-
*/
|
|
169
|
-
tabIndex?: number;
|
|
170
|
-
/**
|
|
171
|
-
* The disabled state.
|
|
172
|
-
*/
|
|
173
|
-
disabled?: boolean;
|
|
174
|
-
/**
|
|
175
|
-
* Specifies the CardHandle reference.
|
|
176
|
-
*/
|
|
177
|
-
elementRef?: React_2.RefObject<CardHandle | null>;
|
|
178
|
-
/**
|
|
179
|
-
* Determines the menu visibility.
|
|
180
|
-
*/
|
|
181
|
-
showMenu: boolean;
|
|
182
|
-
/**
|
|
183
|
-
* Determines the visibility of the task's delete confirmation dialog.
|
|
184
|
-
*/
|
|
185
|
-
showDeleteConfirm: boolean;
|
|
186
|
-
/**
|
|
187
|
-
* Determines the visibility of the task's preview pane.
|
|
188
|
-
*/
|
|
189
|
-
showTaskPreviewPane: boolean;
|
|
190
|
-
/**
|
|
191
|
-
* Represents the menu items.
|
|
192
|
-
*/
|
|
193
|
-
menuItems: any[];
|
|
194
|
-
/**
|
|
195
|
-
* Represents the popup reference.
|
|
196
|
-
*/
|
|
197
|
-
popupRef: React_2.RefObject<PopupHandle | null>;
|
|
198
|
-
/**
|
|
199
|
-
* Represents the content of the TaskBoardConfirmDialog component.
|
|
200
|
-
*/
|
|
201
|
-
confirmDialogMessage: React_2.ReactNode;
|
|
202
|
-
/**
|
|
203
|
-
* Represents the title of the TaskBoardConfirmDialog component.
|
|
204
|
-
*/
|
|
205
|
-
confirmDialogTitle: string;
|
|
206
|
-
/**
|
|
207
|
-
* Represents the content of the confirm button of the TaskBoardConfirmDialog component.
|
|
208
|
-
*/
|
|
209
|
-
confirmDialogConfirmButton: React_2.ReactNode;
|
|
210
|
-
/**
|
|
211
|
-
* Represents the content of the cancel button of the TaskBoardConfirmDialog component.
|
|
212
|
-
*/
|
|
213
|
-
confirmDialogCancelButton: React_2.ReactNode;
|
|
214
|
-
/**
|
|
215
|
-
* Represents the priority label in the preview dialog.
|
|
216
|
-
*/
|
|
217
|
-
previewDialogPriorityLabel: string;
|
|
218
|
-
/**
|
|
219
|
-
* Represents the preview dialog delete node.
|
|
220
|
-
*/
|
|
221
|
-
previewDialogDelete: React_2.ReactNode;
|
|
222
|
-
/**
|
|
223
|
-
* Represents the preview dialog edit node.
|
|
224
|
-
*/
|
|
225
|
-
previewDialogEdit: React_2.ReactNode;
|
|
226
|
-
/**
|
|
227
|
-
* Fires when the preview pane needs to be shown.
|
|
228
|
-
*/
|
|
229
|
-
onShowPreviewPane: (event: React_2.MouseEvent<HTMLElement>) => void;
|
|
230
|
-
/**
|
|
231
|
-
* Fires when the preview pane needs to be closed.
|
|
232
|
-
*/
|
|
233
|
-
onClosePreviewPane: (event: React_2.MouseEvent<HTMLElement>) => void;
|
|
234
|
-
/**
|
|
235
|
-
* Fires on menu item selection.
|
|
236
|
-
*/
|
|
237
|
-
onMenuItemSelect: (event: MenuSelectEvent) => void;
|
|
238
|
-
/**
|
|
239
|
-
* Fires when the menu needs to be shown.
|
|
240
|
-
*/
|
|
241
|
-
onShowMenu: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
242
|
-
/**
|
|
243
|
-
* Fires when the menu needs to be hidden.
|
|
244
|
-
*/
|
|
245
|
-
onHideMenu: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
246
|
-
/**
|
|
247
|
-
* Fires on blur of the menu button.
|
|
248
|
-
*/
|
|
249
|
-
onMenuButtonBlur: (event: React_2.FocusEvent<HTMLButtonElement>) => void;
|
|
250
|
-
/**
|
|
251
|
-
* Fires when task's delete button is clicked.
|
|
252
|
-
*/
|
|
253
|
-
onTaskDelete: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
254
|
-
/**
|
|
255
|
-
* Fires when task's edit button is clicked.
|
|
256
|
-
*/
|
|
257
|
-
onTaskEdit: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
258
|
-
/**
|
|
259
|
-
* The Close Button click event handler of the TaskBoardConfirmDialog component.
|
|
260
|
-
*/
|
|
261
|
-
onCloseConfirmDialog: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
262
|
-
/**
|
|
263
|
-
* Represents the Card component.
|
|
264
|
-
*/
|
|
265
|
-
card: React_2.ForwardRefExoticComponent<CardProps & React_2.RefAttributes<CardHandle | null>>;
|
|
266
|
-
/**
|
|
267
|
-
* Represents the TaskBoardCardHeader component.
|
|
268
|
-
*/
|
|
269
|
-
cardHeader: React_2.ComponentType<TaskBoardCardHeaderProps>;
|
|
270
|
-
/**
|
|
271
|
-
* Represents the TaskBoardCardBody component.
|
|
272
|
-
*/
|
|
273
|
-
cardBody: React_2.ComponentType<TaskBoardCardBodyProps>;
|
|
274
|
-
/**
|
|
275
|
-
* Represents the TaskBoardConfirmDialog component.
|
|
276
|
-
*/
|
|
277
|
-
confirmDialog: React_2.ComponentType<TaskBoardConfirmDialogProps>;
|
|
278
|
-
/**
|
|
279
|
-
* Represents the TaskBoardPreviewDialog component.
|
|
280
|
-
*/
|
|
281
|
-
previewDialog: React_2.ComponentType<TaskBoardPreviewDialogProps>;
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
/**
|
|
285
|
-
* Represents the return type of TaskBoardChangeEvent.
|
|
286
|
-
*/
|
|
287
|
-
export declare interface TaskBoardChangeEvent {
|
|
288
|
-
/**
|
|
289
|
-
* Determines the returned data.
|
|
290
|
-
*/
|
|
291
|
-
data: {}[] | TaskBoardTaskModel[];
|
|
292
|
-
/**
|
|
293
|
-
* Determines the returned type.
|
|
294
|
-
*/
|
|
295
|
-
type: string;
|
|
296
|
-
/**
|
|
297
|
-
* Represents the previous item.
|
|
298
|
-
*/
|
|
299
|
-
previousItem: TaskBoardColumnModel | TaskBoardTaskModel | null;
|
|
300
|
-
/**
|
|
301
|
-
* Represents the current item.
|
|
302
|
-
*/
|
|
303
|
-
item: TaskBoardColumnModel | TaskBoardTaskModel | null;
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
/**
|
|
307
|
-
* Represents the TaskBoardColumn component.
|
|
308
|
-
*/
|
|
309
|
-
export declare const TaskBoardColumn: React_2.FunctionComponent<TaskBoardColumnProps>;
|
|
310
|
-
|
|
311
|
-
/**
|
|
312
|
-
* Represents the TaskBoardColumnBody component.
|
|
313
|
-
*/
|
|
314
|
-
export declare const TaskBoardColumnBody: React_2.FunctionComponent<TaskBoardColumnBodyProps>;
|
|
315
|
-
|
|
316
|
-
/**
|
|
317
|
-
* Represents the props of the TaskBoardColumnBody component
|
|
318
|
-
*/
|
|
319
|
-
export declare interface TaskBoardColumnBodyProps {
|
|
320
|
-
/**
|
|
321
|
-
* Determines the children nodes.
|
|
322
|
-
*/
|
|
323
|
-
children: React_2.ReactNode;
|
|
324
|
-
}
|
|
325
|
-
|
|
326
|
-
/**
|
|
327
|
-
* Represents the TaskBoardColumnHeader component.
|
|
328
|
-
*/
|
|
329
|
-
export declare const TaskBoardColumnHeader: React_2.FunctionComponent<TaskBoardColumnHeaderProps>;
|
|
330
|
-
|
|
331
|
-
/**
|
|
332
|
-
* Represents the props of the TaskBoardColumnHeader component.
|
|
333
|
-
*/
|
|
334
|
-
export declare interface TaskBoardColumnHeaderProps {
|
|
335
|
-
/**
|
|
336
|
-
* The rendered column.
|
|
337
|
-
*/
|
|
338
|
-
column: TaskBoardColumnModel;
|
|
339
|
-
/**
|
|
340
|
-
* The rendered tasks.
|
|
341
|
-
*/
|
|
342
|
-
tasks: TaskBoardTaskModel[];
|
|
343
|
-
/**
|
|
344
|
-
* The title of the editButton.
|
|
345
|
-
*/
|
|
346
|
-
editButtonTitle: string;
|
|
347
|
-
/**
|
|
348
|
-
* The title of the addButton.
|
|
349
|
-
*/
|
|
350
|
-
addButtonTitle: string;
|
|
351
|
-
/**
|
|
352
|
-
* The title of the closeButton.
|
|
353
|
-
*/
|
|
354
|
-
closeButtonTitle: string;
|
|
355
|
-
/**
|
|
356
|
-
* The event that is fired when the title is changed.
|
|
357
|
-
*/
|
|
358
|
-
onTitleChange?: (event: InputChangeEvent) => void;
|
|
359
|
-
/**
|
|
360
|
-
* The event that is fired when a column enters edit mode.
|
|
361
|
-
*/
|
|
362
|
-
onColumnEnterEdit: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
363
|
-
/**
|
|
364
|
-
* The event that is fired when a column exits edit mode.
|
|
365
|
-
*/
|
|
366
|
-
onColumnExitEdit: (event: React_2.FocusEvent<HTMLInputElement>) => void;
|
|
367
|
-
/**
|
|
368
|
-
* The event that is fired when a add card dialog is shown.
|
|
369
|
-
*/
|
|
370
|
-
onShowAddCardDialog: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
371
|
-
/**
|
|
372
|
-
* The event that is fired when a column is deleted.
|
|
373
|
-
*/
|
|
374
|
-
onColumnDelete: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
375
|
-
}
|
|
376
|
-
|
|
377
|
-
/**
|
|
378
|
-
* Represents the task board column model.
|
|
379
|
-
*/
|
|
380
|
-
export declare interface TaskBoardColumnModel extends ItemModel {
|
|
381
|
-
/**
|
|
382
|
-
* Determined the index of the TaskBoardTaskModel.
|
|
383
|
-
*/
|
|
384
|
-
index?: number;
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
/**
|
|
388
|
-
* Represents the props of the TaskBoardColumn component
|
|
389
|
-
*/
|
|
390
|
-
export declare interface TaskBoardColumnProps {
|
|
391
|
-
/**
|
|
392
|
-
* The column of the TaskBoard.
|
|
393
|
-
*/
|
|
394
|
-
column: TaskBoardColumnModel;
|
|
395
|
-
/**
|
|
396
|
-
* The tasks of the TaskBoard.
|
|
397
|
-
*/
|
|
398
|
-
tasks: TaskBoardTaskModel[];
|
|
399
|
-
/**
|
|
400
|
-
* The priorities that are set in the TaskBoard.
|
|
401
|
-
*/
|
|
402
|
-
priorities: TaskBoardPriority[];
|
|
403
|
-
/**
|
|
404
|
-
* The styles for the TaskBoard.
|
|
405
|
-
*/
|
|
406
|
-
style?: React_2.CSSProperties;
|
|
407
|
-
/**
|
|
408
|
-
* Specifies the `tabIndex` that will be added to the TaskBoard Column element.
|
|
409
|
-
*/
|
|
410
|
-
tabIndex?: number;
|
|
411
|
-
/**
|
|
412
|
-
* Represents the reference of the element.
|
|
413
|
-
*/
|
|
414
|
-
elementRef?: React_2.RefObject<HTMLDivElement | null>;
|
|
415
|
-
/**
|
|
416
|
-
* Determines the visibility of the add card.
|
|
417
|
-
*/
|
|
418
|
-
showAddCard: boolean;
|
|
419
|
-
/**
|
|
420
|
-
* Determines the visibility of the edit card.
|
|
421
|
-
*/
|
|
422
|
-
showEditCard: boolean;
|
|
423
|
-
/**
|
|
424
|
-
* Determines the visibility of the column confirm/delete.
|
|
425
|
-
*/
|
|
426
|
-
showColumnConfirmDelete: boolean;
|
|
427
|
-
/**
|
|
428
|
-
* Specifies the edited task.
|
|
429
|
-
*/
|
|
430
|
-
editedTask?: TaskBoardTaskModel;
|
|
431
|
-
/**
|
|
432
|
-
* Specifies the confirm dialog message
|
|
433
|
-
*/
|
|
434
|
-
confirmDialogMessage: React_2.ReactNode;
|
|
435
|
-
/**
|
|
436
|
-
* Specifies the confirm dialog confirm button node.
|
|
437
|
-
*/
|
|
438
|
-
confirmDialogConfirmButton: React_2.ReactNode;
|
|
439
|
-
/**
|
|
440
|
-
* Specifies the cancel dialog confirm button node.
|
|
441
|
-
*/
|
|
442
|
-
confirmDialogCancelButton: React_2.ReactNode;
|
|
443
|
-
/**
|
|
444
|
-
* Specifies the confirm dialog title.
|
|
445
|
-
*/
|
|
446
|
-
confirmDialogTitle: string;
|
|
447
|
-
/**
|
|
448
|
-
* Specifies the edit button title.
|
|
449
|
-
*/
|
|
450
|
-
editButtonTitle: string;
|
|
451
|
-
/**
|
|
452
|
-
* Specifies the add button title.
|
|
453
|
-
*/
|
|
454
|
-
addButtonTitle: string;
|
|
455
|
-
/**
|
|
456
|
-
* Specifies the close button title.
|
|
457
|
-
*/
|
|
458
|
-
closeButtonTitle: string;
|
|
459
|
-
/**
|
|
460
|
-
* Determines the children nodes.
|
|
461
|
-
*/
|
|
462
|
-
children: React_2.ReactNode;
|
|
463
|
-
/**
|
|
464
|
-
* Fire on task creation.
|
|
465
|
-
*/
|
|
466
|
-
onTaskCreate: (task: TaskBoardTaskModel) => void;
|
|
467
|
-
/**
|
|
468
|
-
* Fires when task is edited.
|
|
469
|
-
*/
|
|
470
|
-
onTaskEdit: (task: TaskBoardTaskModel, prevTask: TaskBoardTaskModel) => void;
|
|
471
|
-
/**
|
|
472
|
-
* Fires when task is deleted.
|
|
473
|
-
*/
|
|
474
|
-
onTaskDelete: (task: TaskBoardTaskModel) => void;
|
|
475
|
-
/**
|
|
476
|
-
* Fires when title is changed.
|
|
477
|
-
*/
|
|
478
|
-
onTitleChange?: (event: InputChangeEvent) => void;
|
|
479
|
-
/**
|
|
480
|
-
* Fires when column enters edit.
|
|
481
|
-
*/
|
|
482
|
-
onColumnEnterEdit: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
483
|
-
/**
|
|
484
|
-
* Fires when column exits edit.
|
|
485
|
-
*/
|
|
486
|
-
onColumnExitEdit: (event: React_2.FocusEvent<HTMLInputElement>) => void;
|
|
487
|
-
/**
|
|
488
|
-
* Fires on confirmation of column deletion.
|
|
489
|
-
*/
|
|
490
|
-
onColumnConfirmDelete: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
491
|
-
/**
|
|
492
|
-
* Fires when the add card dialog is shown.
|
|
493
|
-
*/
|
|
494
|
-
onShowAddCardDialog: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
495
|
-
/**
|
|
496
|
-
* Fires when the edit card pane is shown.
|
|
497
|
-
*/
|
|
498
|
-
onShowEditCardPane: (task: TaskBoardTaskModel) => void;
|
|
499
|
-
/**
|
|
500
|
-
* Fires on column deletion.
|
|
501
|
-
*/
|
|
502
|
-
onColumnDelete: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
503
|
-
/**
|
|
504
|
-
* The Close Button click event handler of the TaskBoardConfirmDialog component.
|
|
505
|
-
*/
|
|
506
|
-
onCloseDialog: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
507
|
-
/**
|
|
508
|
-
* Represents the TaskBoardCard component.
|
|
509
|
-
*/
|
|
510
|
-
card: React_2.ComponentType<TaskBoardCardProps>;
|
|
511
|
-
/**
|
|
512
|
-
* Represents the TaskBoardColumnHeader component.
|
|
513
|
-
*/
|
|
514
|
-
header: React_2.ComponentType<TaskBoardColumnHeaderProps>;
|
|
515
|
-
/**
|
|
516
|
-
* Represents the TaskBoardColumnBody component.
|
|
517
|
-
*/
|
|
518
|
-
body: React_2.ComponentType<TaskBoardColumnBodyProps>;
|
|
519
|
-
/**
|
|
520
|
-
* Represents the TaskBoardConfirmDialog component.
|
|
521
|
-
*/
|
|
522
|
-
confirmDialog: React_2.ComponentType<TaskBoardConfirmDialogProps>;
|
|
523
|
-
/**
|
|
524
|
-
* Represents the TaskBoardEditCard component.
|
|
525
|
-
*/
|
|
526
|
-
editCardDialog: React_2.ComponentType<TaskBoardEditCardProps>;
|
|
527
|
-
/**
|
|
528
|
-
* Represents the TaskBoardAddCard component.
|
|
529
|
-
*/
|
|
530
|
-
addCardDialog: React_2.ComponentType<TaskBoardAddCardProps>;
|
|
531
|
-
}
|
|
532
|
-
|
|
533
|
-
/**
|
|
534
|
-
* Represents the TaskBoardConfirmDialog component.
|
|
535
|
-
*/
|
|
536
|
-
export declare const TaskBoardConfirmDialog: React_2.FunctionComponent<TaskBoardConfirmDialogProps>;
|
|
537
|
-
|
|
538
|
-
/**
|
|
539
|
-
* Represents the props of the TaskBoardConfirmDialog component
|
|
540
|
-
*/
|
|
541
|
-
export declare interface TaskBoardConfirmDialogProps {
|
|
542
|
-
/**
|
|
543
|
-
* The dialog message.
|
|
544
|
-
*/
|
|
545
|
-
dialogMessage: React_2.ReactNode;
|
|
546
|
-
/**
|
|
547
|
-
* The dialog title.
|
|
548
|
-
*/
|
|
549
|
-
dialogTitle: string;
|
|
550
|
-
/**
|
|
551
|
-
* The dialog confirm button.
|
|
552
|
-
*/
|
|
553
|
-
dialogConfirmButton: React_2.ReactNode;
|
|
554
|
-
/**
|
|
555
|
-
* The dialog cancel button.
|
|
556
|
-
*/
|
|
557
|
-
dialogCancelButton: React_2.ReactNode;
|
|
558
|
-
/**
|
|
559
|
-
* The Close Button click event handler of the TaskBoardConfirmDialog component.
|
|
560
|
-
*/
|
|
561
|
-
onClose: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
562
|
-
/**
|
|
563
|
-
* The Confirm Button click event handler of the TaskBoardConfirmDialog component.
|
|
564
|
-
*/
|
|
565
|
-
onConfirm: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
/**
|
|
569
|
-
* Represents the TaskBoardEditCard component.
|
|
570
|
-
*/
|
|
571
|
-
export declare const TaskBoardEditCard: React_2.FunctionComponent<TaskBoardEditCardProps>;
|
|
572
|
-
|
|
573
|
-
/**
|
|
574
|
-
* Represents the props of the TaskBoardEditCard component
|
|
575
|
-
*/
|
|
576
|
-
export declare interface TaskBoardEditCardProps extends TaskBoardAddCardProps {
|
|
577
|
-
/**
|
|
578
|
-
* Determines the task of the TaskBoardEditCard component.
|
|
579
|
-
*/
|
|
580
|
-
task: TaskBoardTaskModel;
|
|
581
|
-
}
|
|
582
|
-
|
|
583
|
-
/**
|
|
584
|
-
* Represent the target(props) of the TaskBoardHandle.
|
|
585
|
-
*/
|
|
586
|
-
export declare interface TaskBoardHandle {
|
|
587
|
-
/**
|
|
588
|
-
* The props values of the TackBoard.
|
|
589
|
-
*/
|
|
590
|
-
props: TaskBoardProps;
|
|
591
|
-
}
|
|
592
|
-
|
|
593
|
-
/**
|
|
594
|
-
* Represents the TaskBoardPreviewDialog component.
|
|
595
|
-
*/
|
|
596
|
-
export declare const TaskBoardPreviewDialog: React_2.FunctionComponent<TaskBoardPreviewDialogProps>;
|
|
597
|
-
|
|
598
|
-
/**
|
|
599
|
-
* Represents the props of the TaskBoardPreviewDialog component.
|
|
600
|
-
*/
|
|
601
|
-
export declare interface TaskBoardPreviewDialogProps {
|
|
602
|
-
/**
|
|
603
|
-
* The rendered title.
|
|
604
|
-
*/
|
|
605
|
-
title: React_2.ReactNode;
|
|
606
|
-
/**
|
|
607
|
-
* The rendered description.
|
|
608
|
-
*/
|
|
609
|
-
description: React_2.ReactNode;
|
|
610
|
-
/**
|
|
611
|
-
* Represents the priority label of the TaskBoardPreviewDialog.
|
|
612
|
-
*/
|
|
613
|
-
priorityLabel: React_2.ReactNode;
|
|
614
|
-
/**
|
|
615
|
-
* Determines the content of the delete button.
|
|
616
|
-
*/
|
|
617
|
-
delete: React_2.ReactNode;
|
|
618
|
-
/**
|
|
619
|
-
* Determines the content of the edit button.
|
|
620
|
-
*/
|
|
621
|
-
edit: React_2.ReactNode;
|
|
622
|
-
/**
|
|
623
|
-
* Represents the priority of the current task.
|
|
624
|
-
*/
|
|
625
|
-
priority: TaskBoardPriority;
|
|
626
|
-
/**
|
|
627
|
-
* Fires when the preview pane needs to be shown.
|
|
628
|
-
*/
|
|
629
|
-
onClosePreviewPane: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
630
|
-
/**
|
|
631
|
-
* Fires when task is deleted.
|
|
632
|
-
*/
|
|
633
|
-
onTaskDelete: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
634
|
-
/**
|
|
635
|
-
* Fires when task is edited.
|
|
636
|
-
*/
|
|
637
|
-
onTaskEdit: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
638
|
-
}
|
|
639
|
-
|
|
640
|
-
/**
|
|
641
|
-
* Represents the target of the TaskBoardPriority.
|
|
642
|
-
*/
|
|
643
|
-
export declare interface TaskBoardPriority {
|
|
644
|
-
/**
|
|
645
|
-
* Represents the priority of a TaskBoard.
|
|
646
|
-
*/
|
|
647
|
-
priority: string;
|
|
648
|
-
/**
|
|
649
|
-
* Represents the color of a TaskBoard.
|
|
650
|
-
*/
|
|
651
|
-
color: string;
|
|
652
|
-
}
|
|
653
|
-
|
|
654
|
-
/**
|
|
655
|
-
* Represents the props of the TaskBoard component
|
|
656
|
-
*/
|
|
657
|
-
export declare interface TaskBoardProps {
|
|
658
|
-
/**
|
|
659
|
-
* Specifies the column data from type TaskBoardColumnModel.
|
|
660
|
-
* Example:
|
|
661
|
-
* ```jsx
|
|
662
|
-
* <TaskBoard columnData={[
|
|
663
|
-
* { id: 1, title: 'To Do', status: 'todo' },
|
|
664
|
-
* { id: 2, title: 'In Progress', status: 'inProgress' }
|
|
665
|
-
* ]} />
|
|
666
|
-
* ```
|
|
667
|
-
*/
|
|
668
|
-
columnData: TaskBoardColumnModel[];
|
|
669
|
-
/**
|
|
670
|
-
* Represents the task data from type TaskBoardTaskModel.
|
|
671
|
-
* Example:
|
|
672
|
-
* ```jsx
|
|
673
|
-
* <TaskBoard taskData={[
|
|
674
|
-
* { id: 1, title: 'Task 1', status: 'todo', description: 'Description 1', priority: { priority: 'High', color: 'red' } },
|
|
675
|
-
* { id: 2, title: 'Task 2', status: 'inProgress', description: 'Description 2', priority: { priority: 'Low', color: 'green' } }
|
|
676
|
-
* ]} />
|
|
677
|
-
* ```
|
|
678
|
-
*/
|
|
679
|
-
taskData: TaskBoardTaskModel[];
|
|
680
|
-
/**
|
|
681
|
-
* Specifies the priorities of the task board.
|
|
682
|
-
* Example:
|
|
683
|
-
* ```jsx
|
|
684
|
-
* <TaskBoard priorities={[
|
|
685
|
-
* { priority: 'High', color: 'red' },
|
|
686
|
-
* { priority: 'Low', color: 'green' }
|
|
687
|
-
* ]} />
|
|
688
|
-
* ```
|
|
689
|
-
*/
|
|
690
|
-
priorities: TaskBoardPriority[];
|
|
691
|
-
/**
|
|
692
|
-
* Specifies a list of CSS classes that will be added to the TaskBoard element.
|
|
693
|
-
* Example:
|
|
694
|
-
* ```jsx
|
|
695
|
-
* <TaskBoard className="custom-taskboard" />
|
|
696
|
-
* ```
|
|
697
|
-
*/
|
|
698
|
-
className?: string | Array<string>;
|
|
699
|
-
/**
|
|
700
|
-
* Specifies the id that will be added to the TaskBoard element.
|
|
701
|
-
* Example:
|
|
702
|
-
* ```jsx
|
|
703
|
-
* <TaskBoard id="taskboard-1" />
|
|
704
|
-
* ```
|
|
705
|
-
*/
|
|
706
|
-
id?: string;
|
|
707
|
-
/**
|
|
708
|
-
* Specifies the `tabIndex` that will be added to the TaskBoard Column and Card elements.
|
|
709
|
-
* Example:
|
|
710
|
-
* ```jsx
|
|
711
|
-
* <TaskBoard tabIndex={0} />
|
|
712
|
-
* ```
|
|
713
|
-
*/
|
|
714
|
-
tabIndex?: number;
|
|
715
|
-
/**
|
|
716
|
-
* Represents the styles that are applied to the TaskBoard.
|
|
717
|
-
* Example:
|
|
718
|
-
* ```jsx
|
|
719
|
-
* <TaskBoard style={{ backgroundColor: 'lightgray' }} />
|
|
720
|
-
* ```
|
|
721
|
-
*/
|
|
722
|
-
style?: React_2.CSSProperties;
|
|
723
|
-
/**
|
|
724
|
-
* The React elements that will be rendered inside the toolbar of the TaskBoard.
|
|
725
|
-
* Example:
|
|
726
|
-
* ```jsx
|
|
727
|
-
* <TaskBoard>
|
|
728
|
-
* <Button>Add Task</Button>
|
|
729
|
-
* </TaskBoard>
|
|
730
|
-
* ```
|
|
731
|
-
*/
|
|
732
|
-
children?: React_2.ReactNode;
|
|
733
|
-
/**
|
|
734
|
-
* Represents the `onChange` event. Triggered after tasks or columns are changed.
|
|
735
|
-
* Example:
|
|
736
|
-
* ```jsx
|
|
737
|
-
* <TaskBoard onChange={(event) => console.log(event.data)} />
|
|
738
|
-
* ```
|
|
739
|
-
*/
|
|
740
|
-
onChange: (event: TaskBoardChangeEvent) => void;
|
|
741
|
-
/**
|
|
742
|
-
* Represents the TaskBoardCard component.
|
|
743
|
-
* Example:
|
|
744
|
-
* ```jsx
|
|
745
|
-
* <TaskBoard card={(props) => <div>{props.title}</div>} />
|
|
746
|
-
* ```
|
|
747
|
-
*/
|
|
748
|
-
card?: React_2.ComponentType<TaskBoardCardProps>;
|
|
749
|
-
/**
|
|
750
|
-
* Represents the TaskBoardColumn component.
|
|
751
|
-
* Example:
|
|
752
|
-
* ```jsx
|
|
753
|
-
* <TaskBoard column={(props) => <div>{props.title}</div>} />
|
|
754
|
-
* ```
|
|
755
|
-
*/
|
|
756
|
-
column?: React_2.ComponentType<TaskBoardColumnProps>;
|
|
757
|
-
}
|
|
758
|
-
|
|
759
|
-
/**
|
|
760
|
-
* Represents the TaskBoardTaskEditPane component.
|
|
761
|
-
*/
|
|
762
|
-
export declare const TaskBoardTaskEditPane: React_2.FunctionComponent<TaskBoardTaskEditPaneProps>;
|
|
763
|
-
|
|
764
|
-
/**
|
|
765
|
-
* Represents the props of the TaskBoardTaskEditPane component
|
|
766
|
-
*/
|
|
767
|
-
export declare interface TaskBoardTaskEditPaneProps {
|
|
768
|
-
/**
|
|
769
|
-
* Represents the rendered header of the TaskBoardTaskEditPane.
|
|
770
|
-
*/
|
|
771
|
-
header: string;
|
|
772
|
-
/**
|
|
773
|
-
* Represents the save button of the TaskBoardTaskEditPane.
|
|
774
|
-
*/
|
|
775
|
-
saveButton: React_2.ReactNode;
|
|
776
|
-
/**
|
|
777
|
-
* Represents the cancel button of the TaskBoardTaskEditPane.
|
|
778
|
-
*/
|
|
779
|
-
cancelButton: React_2.ReactNode;
|
|
780
|
-
/**
|
|
781
|
-
* Represents the titleInput title of the TaskBoardTaskEditPane.
|
|
782
|
-
*/
|
|
783
|
-
titleInputTitle: string;
|
|
784
|
-
/**
|
|
785
|
-
* Represents the descriptionInput title of the TaskBoardTaskEditPane.
|
|
786
|
-
*/
|
|
787
|
-
descriptionInputTitle: string;
|
|
788
|
-
/**
|
|
789
|
-
* Represents the priorityDropDownTitle title of the TaskBoardTaskEditPane.
|
|
790
|
-
*/
|
|
791
|
-
priorityDropDownTitle: string;
|
|
792
|
-
/**
|
|
793
|
-
* Represents the title label of the TaskBoardTaskEditPane.
|
|
794
|
-
*/
|
|
795
|
-
titleLabel: React_2.ReactNode;
|
|
796
|
-
/**
|
|
797
|
-
* Represents the description label of the TaskBoardTaskEditPane.
|
|
798
|
-
*/
|
|
799
|
-
descriptionLabel: React_2.ReactNode;
|
|
800
|
-
/**
|
|
801
|
-
* Represents the priority label of the TaskBoardTaskEditPane.
|
|
802
|
-
*/
|
|
803
|
-
priorityLabel: React_2.ReactNode;
|
|
804
|
-
/**
|
|
805
|
-
* Represents the rendered task of the TaskBoardTaskEditPane.
|
|
806
|
-
*/
|
|
807
|
-
task?: TaskBoardTaskModel;
|
|
808
|
-
/**
|
|
809
|
-
* Determines the priority.
|
|
810
|
-
*/
|
|
811
|
-
priority: TaskBoardPriority;
|
|
812
|
-
/**
|
|
813
|
-
* Determines the rendered priorities.
|
|
814
|
-
*/
|
|
815
|
-
priorities: TaskBoardPriority[];
|
|
816
|
-
/**
|
|
817
|
-
* Represents the title of the TaskBoardTaskEditPane.
|
|
818
|
-
*/
|
|
819
|
-
title: string;
|
|
820
|
-
/**
|
|
821
|
-
* The rendered description.
|
|
822
|
-
*/
|
|
823
|
-
description: string;
|
|
824
|
-
/**
|
|
825
|
-
* Fires when Save button is clicked.
|
|
826
|
-
*/
|
|
827
|
-
onSave: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
828
|
-
/**
|
|
829
|
-
* Fires when Cancel button is clicked.
|
|
830
|
-
*/
|
|
831
|
-
onClose: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
832
|
-
/**
|
|
833
|
-
* Fires when a title is changed.
|
|
834
|
-
*/
|
|
835
|
-
onTitleChange: (event: InputChangeEvent) => void;
|
|
836
|
-
/**
|
|
837
|
-
* Fires when a description is changed.
|
|
838
|
-
*/
|
|
839
|
-
onDescriptionChange: (event: InputChangeEvent) => void;
|
|
840
|
-
/**
|
|
841
|
-
* Fires when a priority has been changed.
|
|
842
|
-
*/
|
|
843
|
-
onPriorityChange: (event: DropDownListChangeEvent) => void;
|
|
844
|
-
}
|
|
845
|
-
|
|
846
|
-
/**
|
|
847
|
-
* Represents the task board task model.
|
|
848
|
-
*/
|
|
849
|
-
export declare interface TaskBoardTaskModel extends ItemModel {
|
|
850
|
-
/**
|
|
851
|
-
* Determined the description of the TaskBoardTaskModel.
|
|
852
|
-
*/
|
|
853
|
-
description: string;
|
|
854
|
-
/**
|
|
855
|
-
* Determined the priority of the TaskBoardTaskModel.
|
|
856
|
-
*/
|
|
857
|
-
priority: TaskBoardPriority;
|
|
858
|
-
/**
|
|
859
|
-
* Determined the index of the TaskBoardTaskModel.
|
|
860
|
-
*/
|
|
861
|
-
index?: number;
|
|
862
|
-
}
|
|
863
|
-
|
|
864
|
-
/**
|
|
865
|
-
* Represents the TaskBoardToolbar component.
|
|
866
|
-
*/
|
|
867
|
-
export declare const TaskBoardToolbar: React_2.FunctionComponent<TaskBoardToolbarProps>;
|
|
868
|
-
|
|
869
|
-
/**
|
|
870
|
-
* Represents the props of the TaskBoardToolbar component
|
|
871
|
-
*/
|
|
872
|
-
export declare interface TaskBoardToolbarProps {
|
|
873
|
-
/**
|
|
874
|
-
* The React elements that will be rendered inside the toolbar of the TaskBoard.
|
|
875
|
-
*/
|
|
876
|
-
children?: any;
|
|
877
|
-
/**
|
|
878
|
-
* Specifies a list of CSS classes that will be added to the TaskBoardToolbar element.
|
|
879
|
-
*/
|
|
880
|
-
className?: string | Array<string>;
|
|
881
|
-
/**
|
|
882
|
-
* Represents the styles that are applied to the TaskBoardToolbar.
|
|
883
|
-
*/
|
|
884
|
-
style?: React_2.CSSProperties;
|
|
885
|
-
}
|
|
886
|
-
|
|
887
|
-
export declare interface TaskEditingProps {
|
|
888
|
-
/**
|
|
889
|
-
* The task to be edited. If not provided, creates a new task.
|
|
890
|
-
*/
|
|
891
|
-
task?: TaskBoardTaskModel;
|
|
892
|
-
/**
|
|
893
|
-
* Array of available priority options for the task.
|
|
894
|
-
*/
|
|
895
|
-
priorities: TaskBoardPriority[];
|
|
896
|
-
/**
|
|
897
|
-
* Callback function called when the task is saved.
|
|
898
|
-
*/
|
|
899
|
-
onSave: (task: TaskBoardTaskModel, prevTask: TaskBoardTaskModel) => void;
|
|
900
|
-
}
|
|
901
|
-
|
|
902
|
-
export declare interface TaskEditingResult {
|
|
903
|
-
/**
|
|
904
|
-
* Handles changes to the task title input field.
|
|
905
|
-
*/
|
|
906
|
-
onTitleChange: (event: InputChangeEvent) => void;
|
|
907
|
-
/**
|
|
908
|
-
* The current title value of the task being edited.
|
|
909
|
-
*/
|
|
910
|
-
title: string;
|
|
911
|
-
/**
|
|
912
|
-
* Handles changes to the task description input field.
|
|
913
|
-
*/
|
|
914
|
-
onDescriptionChange: (event: InputChangeEvent) => void;
|
|
915
|
-
/**
|
|
916
|
-
* The current description value of the task being edited.
|
|
917
|
-
*/
|
|
918
|
-
description: string;
|
|
919
|
-
/**
|
|
920
|
-
* Handles changes to the task priority dropdown selection.
|
|
921
|
-
*/
|
|
922
|
-
onPriorityChange: (event: DropDownListChangeEvent) => void;
|
|
923
|
-
/**
|
|
924
|
-
* The current priority value of the task being edited.
|
|
925
|
-
*/
|
|
926
|
-
priority: TaskBoardPriority;
|
|
927
|
-
/**
|
|
928
|
-
* Saves the current task changes and calls the parent save handler.
|
|
929
|
-
*/
|
|
930
|
-
onSave: (event: React_2.MouseEvent<HTMLButtonElement>) => void;
|
|
931
|
-
}
|
|
932
|
-
|
|
933
|
-
export declare const useTaskEditing: ({ onSave, task, priorities }: TaskEditingProps) => TaskEditingResult;
|
|
934
|
-
|
|
935
|
-
export { }
|
|
8
|
+
export { TaskBoard, type TaskBoardProps, type TaskBoardHandle, type TaskBoardChangeEvent, type TaskBoardColumnModel, type TaskBoardTaskModel, type TaskBoardPriority } from './TaskBoard.js';
|
|
9
|
+
export { TaskBoardToolbar, type TaskBoardToolbarProps } from './TaskBoardToolbar.js';
|
|
10
|
+
export { TaskBoardCard, type TaskBoardCardProps } from './card/Card.js';
|
|
11
|
+
export { TaskBoardCardHeader, type TaskBoardCardHeaderProps } from './card/CardHeader.js';
|
|
12
|
+
export { TaskBoardCardBody, type TaskBoardCardBodyProps } from './card/CardBody.js';
|
|
13
|
+
export { TaskBoardColumn, type TaskBoardColumnProps } from './column/Column.js';
|
|
14
|
+
export { TaskBoardColumnHeader, type TaskBoardColumnHeaderProps } from './column/ColumnHeader.js';
|
|
15
|
+
export { TaskBoardColumnBody, type TaskBoardColumnBodyProps } from './column/ColumnBody.js';
|
|
16
|
+
export { TaskBoardConfirmDialog, type TaskBoardConfirmDialogProps } from './TaskBoardConfirmDialog.js';
|
|
17
|
+
export { TaskBoardPreviewDialog, type TaskBoardPreviewDialogProps } from './card/PreviewDialog.js';
|
|
18
|
+
export { TaskBoardAddCard, type TaskBoardAddCardProps } from './TaskBoardAddCard.js';
|
|
19
|
+
export { TaskBoardEditCard, type TaskBoardEditCardProps } from './TaskBoardEditCard.js';
|
|
20
|
+
export { TaskBoardTaskEditPane, type TaskBoardTaskEditPaneProps } from './TaskBoardTaskEditPane.js';
|
|
21
|
+
export { useTaskEditing, type TaskEditingProps, type TaskEditingResult } from './hooks/taskEditing.js';
|