@imj_media/tareas 1.5.44 → 1.5.46
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/src/components/organisms/Checkbox.d.ts +6 -4
- package/dist/src/components/organisms/Task.d.ts +1 -1
- package/dist/src/infraestructure/interfaces/tasks-campania-response.d.ts +1 -1
- package/dist/src/infraestructure/interfaces/tasks-campania.d.ts +2 -1
- package/dist/src/infraestructure/interfaces/tasks-kanban-general.d.ts +2 -1
- package/dist/src/infraestructure/interfaces/tasks-reponse.d.ts +2 -0
- package/dist/tareas.cjs +18 -18
- package/dist/tareas.css +1 -1
- package/dist/tareas.es.js +3182 -3151
- package/package.json +1 -1
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
interface ICheckboxProps {
|
|
2
2
|
id: number;
|
|
3
|
-
nameRequiredTask
|
|
4
|
-
statusRequiredTask
|
|
3
|
+
nameRequiredTask?: string;
|
|
4
|
+
statusRequiredTask?: number;
|
|
5
5
|
status: number;
|
|
6
6
|
idAtraso: number;
|
|
7
7
|
nameRequiredTaskResponsible?: string | null;
|
|
8
|
-
|
|
8
|
+
name_father_required_task?: string;
|
|
9
|
+
name_father_required_task_responsible?: string;
|
|
10
|
+
repeatsAreCompleted?: boolean;
|
|
9
11
|
}
|
|
10
|
-
declare const Checkbox: ({ id, nameRequiredTask, statusRequiredTask, status, idAtraso, nameRequiredTaskResponsible,
|
|
12
|
+
declare const Checkbox: ({ id, nameRequiredTask, statusRequiredTask, status, idAtraso, nameRequiredTaskResponsible, name_father_required_task, name_father_required_task_responsible, repeatsAreCompleted, }: ICheckboxProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
13
|
export default Checkbox;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { TasksKanbanGeneral } from '../../infraestructure/interfaces/tasks-kanban-general';
|
|
2
|
-
declare const Task: ({ id, task, endDate, users, willBePaused, nameProject, comments, priority, difficulty, responsible, nameRequiredTask, nameRequiredTaskResponsible, statusRequiredTask, status, repeatsToDo, repeats, medioName, paused, idProject, atraso, categoria, cambio_arte,
|
|
2
|
+
declare const Task: ({ id, task, endDate, users, willBePaused, nameProject, comments, priority, difficulty, responsible, nameRequiredTask, nameRequiredTaskResponsible, statusRequiredTask, status, repeatsToDo, repeats, medioName, paused, idProject, atraso, categoria, cambio_arte, name_father_required_task, name_father_required_task_responsible, }: TasksKanbanGeneral) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default Task;
|
|
@@ -42,7 +42,6 @@ export interface ITasksCampaignResponse {
|
|
|
42
42
|
finicio: Date;
|
|
43
43
|
ffin: Date;
|
|
44
44
|
} | null;
|
|
45
|
-
is_padre_required?: boolean;
|
|
46
45
|
}
|
|
47
46
|
export interface Comentario {
|
|
48
47
|
id: number;
|
|
@@ -105,6 +104,7 @@ export interface IDTRequerida {
|
|
|
105
104
|
id: number;
|
|
106
105
|
texto_corto: string;
|
|
107
106
|
estatus: number;
|
|
107
|
+
equipo: Equipo;
|
|
108
108
|
}
|
|
109
109
|
export interface Proyecto {
|
|
110
110
|
id: number;
|
|
@@ -4,7 +4,8 @@ export interface ITasksCampaign extends TasksKanbanGeneral {
|
|
|
4
4
|
startDate: Date;
|
|
5
5
|
tasks?: IChildTask[] | null;
|
|
6
6
|
orden: number;
|
|
7
|
-
|
|
7
|
+
name_father_required_task?: string;
|
|
8
|
+
name_father_required_task_responsible?: string;
|
|
8
9
|
}
|
|
9
10
|
export interface IChildTask {
|
|
10
11
|
id: number;
|
|
@@ -37,6 +37,7 @@ export interface ITasksResponse {
|
|
|
37
37
|
finicio: Date;
|
|
38
38
|
ffin: Date;
|
|
39
39
|
} | null;
|
|
40
|
+
tarea_padre: IDTRequerida | null;
|
|
40
41
|
}
|
|
41
42
|
export interface Equipo {
|
|
42
43
|
id: number;
|
|
@@ -92,6 +93,7 @@ export interface IDTRequerida {
|
|
|
92
93
|
id: number;
|
|
93
94
|
texto_corto: string;
|
|
94
95
|
estatus: number;
|
|
96
|
+
equipo: Equipo;
|
|
95
97
|
}
|
|
96
98
|
export interface Proyecto {
|
|
97
99
|
id: number;
|