@flux-ui/types 3.0.0-next.72 → 3.0.0-next.74

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.72",
4
+ "version": "3.0.0-next.74",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "funding": "https://github.com/sponsors/basmilius",
package/src/components.ts CHANGED
@@ -32,7 +32,7 @@ export type FluxButtonSlots = {
32
32
  iconLeading(): any;
33
33
  iconTrailing(): any;
34
34
  label(): any;
35
- }
35
+ };
36
36
 
37
37
  export type FluxFocalPointObject = {
38
38
  readonly x: number;
@@ -42,18 +42,13 @@ export type FluxFocalPointObject = {
42
42
  export type FluxLegendObject = {
43
43
  readonly color: string;
44
44
  readonly label: string;
45
- }
45
+ };
46
46
 
47
47
  export type FluxPercentageBarItemObject = FluxLegendObject & {
48
48
  readonly icon: FluxIconName;
49
49
  readonly value: number;
50
50
  };
51
51
 
52
- export type FluxSegmentedControlItemObject = {
53
- readonly icon?: FluxIconName;
54
- readonly label?: string;
55
- };
56
-
57
52
  export type FluxKanbanMoveEvent = {
58
53
  readonly itemId: string | number;
59
54
  readonly fromColumnId: string | number;
package/src/index.ts CHANGED
@@ -28,7 +28,6 @@ export type {
28
28
  FluxKanbanMoveEvent,
29
29
  FluxLegendObject,
30
30
  FluxPercentageBarItemObject,
31
- FluxSegmentedControlItemObject,
32
31
  FluxTreeViewOption
33
32
  } from './components';
34
33
 
package/src/notify.ts CHANGED
@@ -5,7 +5,7 @@ type BaseAlertObject = {
5
5
  readonly icon?: FluxIconName;
6
6
  readonly message: string;
7
7
  readonly title: string;
8
- }
8
+ };
9
9
 
10
10
  export type FluxAlertObject = BaseAlertObject & {
11
11
  onClose(): void;