@masterteam/task-schedule 0.0.22 → 0.0.24
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@masterteam/task-schedule",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.24",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"directory": "../../../dist/masterteam/task-schedule",
|
|
6
6
|
"linkDirectory": false,
|
|
@@ -11,6 +11,9 @@
|
|
|
11
11
|
"@angular/core": "^21.2.8",
|
|
12
12
|
"@angular/forms": "^21.2.8",
|
|
13
13
|
"@jsverse/transloco": "^8.3.0",
|
|
14
|
+
"@masterteam/components": "^0.0.203",
|
|
15
|
+
"@masterteam/forms": "^0.0.100",
|
|
16
|
+
"@masterteam/icons": "^0.0.17",
|
|
14
17
|
"@syncfusion/ej2-angular-gantt": "^32.2.9",
|
|
15
18
|
"@syncfusion/ej2-base": "^32.2.9",
|
|
16
19
|
"@syncfusion/ej2-pdf-export": "^32.2.3",
|
|
@@ -20,10 +23,7 @@
|
|
|
20
23
|
"postcss": "^8.5.9",
|
|
21
24
|
"primeng": "21.1.5",
|
|
22
25
|
"tailwindcss": "^4.2.2",
|
|
23
|
-
"tailwindcss-primeui": "^0.6.1"
|
|
24
|
-
"@masterteam/components": "^0.0.200",
|
|
25
|
-
"@masterteam/icons": "^0.0.17",
|
|
26
|
-
"@masterteam/forms": "^0.0.98"
|
|
26
|
+
"tailwindcss-primeui": "^0.6.1"
|
|
27
27
|
},
|
|
28
28
|
"sideEffects": false,
|
|
29
29
|
"exports": {
|
|
@@ -47,4 +47,4 @@
|
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"tslib": "^2.8.1"
|
|
49
49
|
}
|
|
50
|
-
}
|
|
50
|
+
}
|
|
@@ -374,6 +374,7 @@ declare class TaskSchedule implements OnInit, OnDestroy {
|
|
|
374
374
|
private applyEditCustomProps;
|
|
375
375
|
private openScheduleDialog;
|
|
376
376
|
private handleRowDropped;
|
|
377
|
+
private persistCurrentOrder;
|
|
377
378
|
private updateTask;
|
|
378
379
|
private deleteTask;
|
|
379
380
|
private pushBulkUpdate;
|
|
@@ -638,6 +639,14 @@ declare class TaskScheduleImportDialog {
|
|
|
638
639
|
private readAssignedToLabel;
|
|
639
640
|
private toApiDate;
|
|
640
641
|
private formatDateForApi;
|
|
642
|
+
/**
|
|
643
|
+
* Submit/import payload dates must be ISO 8601 UTC timestamps ending with
|
|
644
|
+
* 'Z' (backend rejects bare 'YYYY-MM-DD' with VAL_001). `toApiDate` yields a
|
|
645
|
+
* calendar day for display/editing; this widens it to a full UTC instant for
|
|
646
|
+
* the import call. Date-only strings parse as UTC midnight, so the calendar
|
|
647
|
+
* day is preserved (no timezone shift).
|
|
648
|
+
*/
|
|
649
|
+
private toApiDateTime;
|
|
641
650
|
private countTasks;
|
|
642
651
|
private setError;
|
|
643
652
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TaskScheduleImportDialog, never>;
|