sprintify-ui 0.8.51 → 0.8.52

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.
@@ -45,9 +45,9 @@ declare const __VLS_component: import("vue").DefineComponent<{
45
45
  cropper?: BaseCropperConfig | Record<string, any> | boolean | null;
46
46
  multiple?: boolean;
47
47
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
48
- success: (...args: any[]) => void;
49
48
  start: (...args: any[]) => void;
50
49
  end: (...args: any[]) => void;
50
+ success: (...args: any[]) => void;
51
51
  fail: (...args: any[]) => void;
52
52
  }, string, import("vue").PublicProps, Readonly<{
53
53
  component?: "BaseFilePicker" | "BaseFilePickerCrop";
@@ -62,9 +62,9 @@ declare const __VLS_component: import("vue").DefineComponent<{
62
62
  cropper?: BaseCropperConfig | Record<string, any> | boolean | null;
63
63
  multiple?: boolean;
64
64
  }> & Readonly<{
65
- onSuccess?: ((...args: any[]) => any) | undefined;
66
65
  onStart?: ((...args: any[]) => any) | undefined;
67
66
  onEnd?: ((...args: any[]) => any) | undefined;
67
+ onSuccess?: ((...args: any[]) => any) | undefined;
68
68
  onFail?: ((...args: any[]) => any) | undefined;
69
69
  }>, {
70
70
  component: "BaseFilePicker" | "BaseFilePickerCrop";
@@ -103,9 +103,9 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
103
103
  type: PropType<"list" | "images" | "gallery">;
104
104
  };
105
105
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
106
- success: (...args: any[]) => void;
107
106
  start: (...args: any[]) => void;
108
107
  end: (...args: any[]) => void;
108
+ success: (...args: any[]) => void;
109
109
  "update:modelValue": (...args: any[]) => void;
110
110
  fail: (...args: any[]) => void;
111
111
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
@@ -178,9 +178,9 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
178
178
  type: PropType<"list" | "images" | "gallery">;
179
179
  };
180
180
  }>> & Readonly<{
181
- onSuccess?: ((...args: any[]) => any) | undefined;
182
181
  onStart?: ((...args: any[]) => any) | undefined;
183
182
  onEnd?: ((...args: any[]) => any) | undefined;
183
+ onSuccess?: ((...args: any[]) => any) | undefined;
184
184
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
185
185
  onFail?: ((...args: any[]) => any) | undefined;
186
186
  }>, {
@@ -1,6 +1,6 @@
1
1
  import { DateTime, DateTimeUnit } from "luxon";
2
2
  export interface GanttItem {
3
- id: number;
3
+ id: number | string;
4
4
  start: string;
5
5
  end: string;
6
6
  name: string;
@@ -4,6 +4,7 @@ import { Notification } from './Notification';
4
4
  import { CropType, ResultOptions } from 'croppie';
5
5
  import { Media } from './Media';
6
6
  import { Size } from '@/utils/sizes';
7
+ import { GanttItem, GanttRow } from '@/services/gantt/types';
7
8
  export type Locales = {
8
9
  [locale: string]: string;
9
10
  };
@@ -244,3 +245,4 @@ export interface InputConfigProps {
244
245
  required?: boolean;
245
246
  disabled?: boolean;
246
247
  }
248
+ export type { GanttItem, GanttRow };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.8.51",
3
+ "version": "0.8.52",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "rimraf dist && vue-tsc && vite build",
@@ -1,7 +1,7 @@
1
1
  import { DateTime, DateTimeUnit } from "luxon";
2
2
 
3
3
  export interface GanttItem {
4
- id: number;
4
+ id: number | string;
5
5
  start: string;
6
6
  end: string;
7
7
  name: string;
@@ -6,6 +6,7 @@ import { Notification } from './Notification';
6
6
  import { CropType, ResultOptions } from 'croppie';
7
7
  import { Media } from './Media';
8
8
  import { Size } from '@/utils/sizes';
9
+ import { GanttItem, GanttRow } from '@/services/gantt/types';
9
10
 
10
11
  export type Locales = { [locale: string]: string };
11
12
 
@@ -294,3 +295,5 @@ export interface InputConfigProps {
294
295
  required?: boolean;
295
296
  disabled?: boolean;
296
297
  }
298
+
299
+ export type { GanttItem, GanttRow };