@flux-ui/types 3.0.0-next.52 → 3.0.0-next.53
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/package.json +1 -1
- package/src/components.ts +7 -0
- package/src/index.ts +1 -0
package/package.json
CHANGED
package/src/components.ts
CHANGED
|
@@ -54,6 +54,13 @@ export type FluxSegmentedControlItemObject = {
|
|
|
54
54
|
readonly label?: string;
|
|
55
55
|
};
|
|
56
56
|
|
|
57
|
+
export type FluxKanbanMoveEvent = {
|
|
58
|
+
readonly cardId: string | number;
|
|
59
|
+
readonly fromColumnId: string | number;
|
|
60
|
+
readonly toColumnId: string | number;
|
|
61
|
+
readonly beforeCardId?: string | number;
|
|
62
|
+
};
|
|
63
|
+
|
|
57
64
|
export type FluxTreeViewOption = {
|
|
58
65
|
readonly id: string | number;
|
|
59
66
|
readonly label: string;
|