@dxs-ts/eveli-ide 0.0.443 → 0.0.445
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-iam/index.d.ts +0 -2
- package/build/eveli-task-composer-v2-feedback/CustomerFeedbackReadOnly.d.ts +1 -1
- package/build/eveli-task-composer-v2-task-card/TaskCard.d.ts +2 -2
- package/build/eveli-task-composer-v2-task-card/TaskCardMenu.d.ts +2 -3
- package/build/eveli-task-composer-v2-task-card/cardThemeConfig.d.ts +2 -2
- package/build/index.js +9593 -9563
- package/build/intl/en.d.ts +3 -0
- package/build/intl/fi.d.ts +3 -0
- package/build/intl/index.d.ts +6 -0
- package/package.json +1 -1
package/build/api-iam/index.d.ts
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
export * from './IamBackendProvider';
|
|
2
2
|
export * from './iam-types';
|
|
3
3
|
export * from './IamLiveness';
|
|
4
|
-
export declare const FEEDBACK_ROLES: string[];
|
|
5
4
|
export declare const ROLE_AUTHORIZED = "ROLE_Authorized";
|
|
6
5
|
export declare const mapIamRole: (role?: string | null) => string;
|
|
7
|
-
export declare const mapIamRolesList: (roles?: string[] | null) => string[];
|
|
@@ -5,4 +5,4 @@ export declare const CustomerFeedbackReadOnly: React.FC<{
|
|
|
5
5
|
task: TaskApi.Task;
|
|
6
6
|
style: TaskCardStyleDefinition;
|
|
7
7
|
}>;
|
|
8
|
-
export declare const useUtilityClasses: () => Record<"root" | "publishedNotifier" | "feedbackCategories", string>;
|
|
8
|
+
export declare const useUtilityClasses: () => Record<"root" | "customerTitle" | "publishedNotifier" | "feedbackCategories" | "customerText", string>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { TaskCardStyleDefinition } from './cardThemeConfig';
|
|
2
|
-
import { TaskCardStyleKey } from './CardConfigContext';
|
|
2
|
+
import { TaskCardId, TaskCardStyleKey } from './CardConfigContext';
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
export interface TaskCardProps {
|
|
5
|
-
id:
|
|
5
|
+
id: TaskCardId;
|
|
6
6
|
title?: string;
|
|
7
7
|
children: React.ReactNode;
|
|
8
8
|
isMenu?: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
interface
|
|
2
|
+
export interface CardMenuProps {
|
|
3
3
|
cardId: string;
|
|
4
4
|
anchorEl: HTMLElement | null;
|
|
5
5
|
open: boolean;
|
|
@@ -9,5 +9,4 @@ interface TaskCardMenuProps {
|
|
|
9
9
|
onReview?: () => void;
|
|
10
10
|
onEdit?: () => void;
|
|
11
11
|
}
|
|
12
|
-
export declare const TaskCardMenu: React.FC<
|
|
13
|
-
export {};
|
|
12
|
+
export declare const TaskCardMenu: React.FC<CardMenuProps>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CSSProperties } from 'react';
|
|
2
|
-
import { TaskCardStyleKey } from './CardConfigContext';
|
|
2
|
+
import { TaskCardId, TaskCardStyleKey } from './CardConfigContext';
|
|
3
3
|
export interface TaskCardStyleDefinition {
|
|
4
4
|
titleTypography: CSSProperties;
|
|
5
5
|
bodyTypography: CSSProperties;
|
|
@@ -31,7 +31,7 @@ export declare const taskCardGridSize: Record<TaskCardStyleKey | 'singleCol', {
|
|
|
31
31
|
}>;
|
|
32
32
|
export declare const TASK_CARD_STYLE_LABELS: Record<TaskCardStyleKey, string>;
|
|
33
33
|
export declare const useTaskCardThemeConfig: () => Record<TaskCardStyleKey, TaskCardStyleDefinition>;
|
|
34
|
-
export declare const flashyCardColorsById: Record<
|
|
34
|
+
export declare const flashyCardColorsById: Record<TaskCardId, {
|
|
35
35
|
flashyBackground: string;
|
|
36
36
|
flashyBorder: string;
|
|
37
37
|
}>;
|