@dxs-ts/eveli-ide 0.0.433 → 0.0.435

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.
@@ -1,7 +1,7 @@
1
1
  import { default as React } from 'react';
2
2
  import { TaskApi } from '../api-task';
3
- import { TaskCardStyleDefinition } from './cardThemeConfig';
4
- export declare const CustomerFeedback: React.FC<{
3
+ import { TaskCardStyleDefinition } from '../eveli-task-composer-v2/cardThemeConfig';
4
+ export declare const CustomerFeedbackReadOnly: React.FC<{
5
5
  task: TaskApi.Task;
6
6
  style: TaskCardStyleDefinition;
7
7
  }>;
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+ import { TaskApi } from '../api-task';
3
+ export interface EditCustomerFeedbackProps {
4
+ task: TaskApi.Task;
5
+ open: boolean;
6
+ onClose: () => void;
7
+ }
8
+ export declare const EditCustomerFeedbackDialog: React.FC<EditCustomerFeedbackProps>;
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+ import { TaskApi } from '../api-task';
3
+ import { TaskCardStyleDefinition } from '../eveli-task-composer-v2/cardThemeConfig';
4
+ export declare const PublishedNotifier: React.FC<{
5
+ task: TaskApi.Task;
6
+ style?: TaskCardStyleDefinition;
7
+ }>;
8
+ export declare const useUtilityClasses: () => Record<"msgContainer", string>;
@@ -0,0 +1,2 @@
1
+ export * from './EditCustomerFeedbackDialog';
2
+ export * from './CustomerFeedbackReadOnly';
@@ -4,4 +4,4 @@ export interface CustomerMessagesEditProps {
4
4
  task: TaskApi.Task;
5
5
  }
6
6
  export declare const CustomerMessagesEdit: React.FC<CustomerMessagesEditProps>;
7
- export declare const useUtilityClasses: () => Record<"container" | "messagesContainer" | "inputBox" | "messageRow" | "messageBoxLabel" | "senderInfo" | "frontdeskAvatar" | "customerAvatar" | "frontdeskMessageBody" | "customerMessageBody", string>;
7
+ export declare const useUtilityClasses: () => Record<"container" | "messagesContainer" | "inputBox" | "inputBoxTitle" | "messageRow" | "messageBoxLabel" | "senderInfo" | "frontdeskAvatar" | "customerAvatar" | "frontdeskMessageBody" | "customerMessageBody", string>;
@@ -4,4 +4,4 @@ export interface EveliTaskNotesProps {
4
4
  task: TaskApi.Task;
5
5
  }
6
6
  export declare const EveliTaskNotesEdit: React.FC<EveliTaskNotesProps>;
7
- export declare const useUtilityClasses: () => Record<"notesContainer" | "noteBody" | "noteAuthor" | "noteBackground" | "messagesContainer" | "inputBox", string>;
7
+ export declare const useUtilityClasses: () => Record<"notesContainer" | "noteBody" | "noteAuthor" | "noteBackground" | "messagesContainer" | "inputBox" | "inputBoxTitle", string>;