@dxs-ts/eveli-ide 0.0.402 → 0.0.403
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/api-tenant-config/EveliFeatureMapping.d.ts +1 -0
- package/build/api-tenant-config/TenantConfigContext.d.ts +1 -1
- package/build/eveli-task-composer-v2/EditDialog.d.ts +8 -0
- package/build/eveli-task-composer-v2/EveliTaskDetails.d.ts +4 -0
- package/build/eveli-task-composer-v2/TaskCard.d.ts +12 -0
- package/build/eveli-task-composer-v2/index.d.ts +1 -0
- package/build/eveli-task-composer-v2/testTask.d.ts +26 -0
- package/build/index.js +18086 -18001
- package/build/routeTree.gen.d.ts +3 -19
- package/package.json +1 -1
- package/build/routes/secured.$locale.worker.tables.index.d.ts +0 -1
|
@@ -14,6 +14,7 @@ export declare const EveliFeatureMapping: {
|
|
|
14
14
|
FEEDBACK_ENABLED: (given: TenantFeature[]) => boolean;
|
|
15
15
|
PROFILE_ENABLED: (given: TenantFeature[]) => boolean;
|
|
16
16
|
SMART_TABLES: (given: TenantFeature[]) => boolean;
|
|
17
|
+
SMART_TASK: (given: TenantFeature[]) => boolean;
|
|
17
18
|
BATCHES: (given: TenantFeature[]) => boolean;
|
|
18
19
|
};
|
|
19
20
|
export type EveliFeatureType = keyof typeof EveliFeatureMapping;
|
|
@@ -5,7 +5,7 @@ export interface TenantConfig {
|
|
|
5
5
|
features: TenantFeature[];
|
|
6
6
|
gamutThemeOptions: ThemeOptions;
|
|
7
7
|
}
|
|
8
|
-
export declare const tenant_features: readonly ["wrench-only", "wrench-disabled", "stencil-disabled", "external-deployment", "smart_tables", "user_profile", "queues-visually-disabled", "feedback-visually-disabled", "stencil_locale_filter", "eveli_publication_only", "visual_accommodation", "batches"];
|
|
8
|
+
export declare const tenant_features: readonly ["wrench-only", "wrench-disabled", "stencil-disabled", "external-deployment", "smart_tables", "smart_task", "user_profile", "queues-visually-disabled", "feedback-visually-disabled", "stencil_locale_filter", "eveli_publication_only", "visual_accommodation", "batches"];
|
|
9
9
|
export type TenantFeature = typeof tenant_features[number];
|
|
10
10
|
export interface TenantConfigContextProviderProps {
|
|
11
11
|
disabled?: boolean;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export interface EditDialogProps {
|
|
3
|
+
dialogTitle: string;
|
|
4
|
+
open: boolean;
|
|
5
|
+
onClose: () => void;
|
|
6
|
+
}
|
|
7
|
+
export declare const EditDialog: React.FC<EditDialogProps>;
|
|
8
|
+
export declare const useUtilityClasses: () => Record<"editDialog", string>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export interface TaskCardProps {
|
|
3
|
+
id: string;
|
|
4
|
+
title: string;
|
|
5
|
+
children: React.ReactNode;
|
|
6
|
+
}
|
|
7
|
+
export declare const TaskCard: React.FC<TaskCardProps>;
|
|
8
|
+
export declare const TaskCardDataRow: React.FC<{
|
|
9
|
+
label: string;
|
|
10
|
+
value: string | undefined;
|
|
11
|
+
}>;
|
|
12
|
+
export declare const useUtilityClasses: () => Record<"editCard", string>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './EveliTaskDetails';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export declare const task: {
|
|
2
|
+
id: string;
|
|
3
|
+
created: string;
|
|
4
|
+
updated: string;
|
|
5
|
+
updaterId: string;
|
|
6
|
+
taskRef: string;
|
|
7
|
+
status: string;
|
|
8
|
+
completed: null;
|
|
9
|
+
version: string;
|
|
10
|
+
questionnaireId: string;
|
|
11
|
+
description: string;
|
|
12
|
+
clientIdentificator: string;
|
|
13
|
+
clientLanguage: string;
|
|
14
|
+
additionalInfo: string;
|
|
15
|
+
dueDate: string;
|
|
16
|
+
assignedId: null;
|
|
17
|
+
assignedUser: null;
|
|
18
|
+
assignedUserEmail: null;
|
|
19
|
+
transferredId: null;
|
|
20
|
+
subject: string;
|
|
21
|
+
priority: string;
|
|
22
|
+
keyWords: string[];
|
|
23
|
+
features: string[];
|
|
24
|
+
assignedRoles: string[];
|
|
25
|
+
comments: never[];
|
|
26
|
+
};
|