@dxs-ts/eveli-ide 0.0.426 → 0.0.428
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/build/eveli-task-composer-edit/EditCustomerMessagesDialog.d.ts +8 -0
- package/build/eveli-task-composer-edit/EditTaskDialog.d.ts +8 -0
- package/build/eveli-task-composer-edit/index.d.ts +2 -0
- package/build/eveli-task-composer-v2/EveliTaskFiles.d.ts +9 -0
- package/build/eveli-task-composer-v2/EveliTaskPriority.d.ts +6 -0
- package/build/eveli-task-composer-v2/EveliTaskStatus.d.ts +6 -0
- package/build/eveli-task-composer-v2/TaskCard.d.ts +3 -1
- package/build/eveli-task-composer-v2/types.d.ts +1 -1
- package/build/index.js +7758 -7575
- package/build/intl/en.d.ts +8 -0
- package/build/intl/fi.d.ts +1 -0
- package/build/intl/index.d.ts +10 -0
- package/build/intl/sv.d.ts +1 -0
- package/package.json +1 -1
- package/build/eveli-task-composer-v2/EditDialog.d.ts +0 -8
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { TaskApi } from '../api-task';
|
|
2
|
+
import { default as React } from 'react';
|
|
3
|
+
export interface EditCustomerMessagesProps {
|
|
4
|
+
task: TaskApi.Task;
|
|
5
|
+
open: boolean;
|
|
6
|
+
onClose: () => void;
|
|
7
|
+
}
|
|
8
|
+
export declare const EditCustomerMessagesDialog: React.FC<EditCustomerMessagesProps>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { TaskApi } from '../api-task';
|
|
3
|
+
import { TaskCardStyleDefinition } from './cardThemeConfig';
|
|
4
|
+
export interface EveliTaskFilesProps {
|
|
5
|
+
task: TaskApi.Task;
|
|
6
|
+
style: TaskCardStyleDefinition;
|
|
7
|
+
}
|
|
8
|
+
export declare const EveliTaskFiles: React.FC<EveliTaskFilesProps>;
|
|
9
|
+
export declare const useUtilityClasses: () => Record<"file" | "root" | "deleteIcon" | "fileIcon", string>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { TaskCardStyleDefinition } from './cardThemeConfig';
|
|
3
|
+
export declare const EveliTaskPriority: React.FC<{
|
|
4
|
+
style: TaskCardStyleDefinition;
|
|
5
|
+
}>;
|
|
6
|
+
export declare const useUtilityClasses: () => Record<"root" | "prioritySelect", string>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { TaskCardStyleDefinition } from './cardThemeConfig';
|
|
3
|
+
export declare const EveliTaskStatus: React.FC<{
|
|
4
|
+
style: TaskCardStyleDefinition;
|
|
5
|
+
}>;
|
|
6
|
+
export declare const useUtilityClasses: () => Record<"root" | "progressBar" | "backgroundTrack" | "progressIndicator" | "progressDesc", string>;
|
|
@@ -4,11 +4,13 @@ export interface TaskCardProps {
|
|
|
4
4
|
id: string;
|
|
5
5
|
title?: string;
|
|
6
6
|
children: React.ReactNode;
|
|
7
|
-
|
|
7
|
+
isMenu?: boolean;
|
|
8
8
|
startAdornmentIcon?: React.ReactNode;
|
|
9
|
+
editDialog?: React.ReactNode;
|
|
9
10
|
flashy?: boolean;
|
|
10
11
|
styleVariant?: TaskCardStyleKey;
|
|
11
12
|
onClick?: () => void;
|
|
13
|
+
onDoubleClick?: () => void;
|
|
12
14
|
onReview?: () => void;
|
|
13
15
|
onToggleFlashy?: () => void;
|
|
14
16
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type TaskCardId = 'task_main' | 'status_priority' | '
|
|
1
|
+
export type TaskCardId = 'task_main' | 'status_priority' | 'task_form_summary' | 'assignees_roles' | 'customer_messages' | 'files' | 'feedback' | 'notes' | 'task_meta';
|