@dxs-ts/eveli-ide 0.0.413 → 0.0.415
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-v2/CustomerMessages.d.ts +9 -0
- package/build/eveli-task-composer-v2/TaskNotes.d.ts +8 -0
- package/build/eveli-task-composer-v2/TaskProperties.d.ts +6 -0
- package/build/eveli-task-composer-v2/cardThemeConfig.d.ts +1 -0
- package/build/index.js +9061 -8929
- package/package.json +1 -1
- package/build/eveli-task-composer-v2/testTask.d.ts +0 -26
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { TaskCardStyleDefinition } from './cardThemeConfig';
|
|
3
|
+
import { TaskApi } from '../api-task';
|
|
4
|
+
export interface CustomerMessagesProps {
|
|
5
|
+
style: TaskCardStyleDefinition;
|
|
6
|
+
task: TaskApi.Task;
|
|
7
|
+
}
|
|
8
|
+
export declare const CustomerMessages: React.FC<CustomerMessagesProps>;
|
|
9
|
+
export declare const useUtilityClasses: () => Record<"container" | "messageRow" | "senderInfo" | "frontdeskAvatar" | "customerAvatar" | "frontdeskMessageBody" | "customerMessageBody", string>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { TaskApi } from '../api-task';
|
|
3
|
+
import { TaskCardStyleDefinition } from './cardThemeConfig';
|
|
4
|
+
export declare const TaskNotes: React.FC<{
|
|
5
|
+
task: TaskApi.Task;
|
|
6
|
+
style: TaskCardStyleDefinition;
|
|
7
|
+
}>;
|
|
8
|
+
export declare const useUtilityClasses: () => Record<"notesContainer" | "noteBody" | "noteAuthor", string>;
|