sprintify-ui 0.8.51 → 0.8.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/dist/types/components/BaseFileUploader.vue.d.ts +2 -2
- package/dist/types/components/BaseMediaLibrary.vue.d.ts +2 -2
- package/dist/types/services/gantt/types.d.ts +4 -4
- package/dist/types/types/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/services/gantt/types.ts +4 -4
- package/src/types/index.ts +3 -0
|
@@ -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;
|
|
@@ -8,19 +8,19 @@ export interface GanttItem {
|
|
|
8
8
|
color: string;
|
|
9
9
|
}
|
|
10
10
|
export interface GanttRow {
|
|
11
|
-
id: number;
|
|
11
|
+
id: number | string;
|
|
12
12
|
name: string;
|
|
13
13
|
meta?: Record<string, unknown>;
|
|
14
14
|
items: GanttItem[];
|
|
15
15
|
}
|
|
16
16
|
export interface GanttRowFormatted {
|
|
17
|
-
id: number;
|
|
17
|
+
id: number | string;
|
|
18
18
|
name: string;
|
|
19
19
|
meta?: Record<string, unknown>;
|
|
20
20
|
items: GanttItemFormatted[];
|
|
21
21
|
}
|
|
22
22
|
export interface GanttItemFormatted {
|
|
23
|
-
id: number;
|
|
23
|
+
id: number | string;
|
|
24
24
|
start: DateTime;
|
|
25
25
|
end: DateTime;
|
|
26
26
|
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,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;
|
|
@@ -10,21 +10,21 @@ export interface GanttItem {
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
export interface GanttRow {
|
|
13
|
-
id: number;
|
|
13
|
+
id: number | string;
|
|
14
14
|
name: string;
|
|
15
15
|
meta?: Record<string, unknown>;
|
|
16
16
|
items: GanttItem[];
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
export interface GanttRowFormatted {
|
|
20
|
-
id: number;
|
|
20
|
+
id: number | string;
|
|
21
21
|
name: string;
|
|
22
22
|
meta?: Record<string, unknown>;
|
|
23
23
|
items: GanttItemFormatted[];
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
export interface GanttItemFormatted {
|
|
27
|
-
id: number;
|
|
27
|
+
id: number | string;
|
|
28
28
|
start: DateTime;
|
|
29
29
|
end: DateTime;
|
|
30
30
|
name: string;
|
package/src/types/index.ts
CHANGED
|
@@ -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 };
|