@flux-ui/types 3.0.0-next.57 → 3.0.0-next.59

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@flux-ui/types",
3
3
  "description": "Contains all public types of Flux UI packages.",
4
- "version": "3.0.0-next.57",
4
+ "version": "3.0.0-next.59",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "funding": "https://github.com/sponsors/basmilius",
package/src/components.ts CHANGED
@@ -55,10 +55,15 @@ export type FluxSegmentedControlItemObject = {
55
55
  };
56
56
 
57
57
  export type FluxKanbanMoveEvent = {
58
- readonly cardId: string | number;
58
+ readonly itemId: string | number;
59
59
  readonly fromColumnId: string | number;
60
60
  readonly toColumnId: string | number;
61
- readonly beforeCardId?: string | number;
61
+ readonly beforeItemId?: string | number;
62
+ };
63
+
64
+ export type FluxKanbanMoveColumnEvent = {
65
+ readonly columnId: string | number;
66
+ readonly beforeColumnId?: string | number;
62
67
  };
63
68
 
64
69
  export type FluxTreeViewOption = {
package/src/index.ts CHANGED
@@ -21,6 +21,7 @@ export type {
21
21
  FluxCommandSourceItem,
22
22
  FluxCommandSubAction,
23
23
  FluxFocalPointObject,
24
+ FluxKanbanMoveColumnEvent,
24
25
  FluxKanbanMoveEvent,
25
26
  FluxLegendObject,
26
27
  FluxPercentageBarItemObject,