@consilioweb/payload-support 0.5.2 → 0.6.0
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/dist/components/TicketConversation/components/AISummaryPanel.js +76 -0
- package/dist/components/TicketConversation/components/ActionPanels.js +118 -0
- package/dist/components/TicketConversation/components/ActivityLog.js +23 -0
- package/dist/components/TicketConversation/components/ClientBar.js +42 -0
- package/dist/components/TicketConversation/components/ClientHistory.js +137 -0
- package/dist/components/TicketConversation/components/CodeBlock.js +152 -0
- package/dist/components/TicketConversation/components/CodeBlockInserter.js +155 -0
- package/dist/components/TicketConversation/components/QuickActions.js +65 -0
- package/dist/components/TicketConversation/components/TicketHeader.js +92 -0
- package/dist/components/TicketConversation/components/TimeTrackingPanel.js +133 -0
- package/dist/components/TicketConversation/config.js +41 -0
- package/dist/components/TicketConversation/constants.js +96 -0
- package/dist/components/TicketConversation/context.js +11 -0
- package/dist/components/TicketConversation/hooks/useAI.js +176 -0
- package/dist/components/TicketConversation/hooks/useMessageActions.js +135 -0
- package/dist/components/TicketConversation/hooks/useReply.js +187 -0
- package/dist/components/TicketConversation/hooks/useTicketActions.js +230 -0
- package/dist/components/TicketConversation/hooks/useTimeTracking.js +122 -0
- package/dist/components/TicketConversation/hooks/useTranslation.js +70 -0
- package/dist/components/TicketConversation/index.js +1123 -0
- package/dist/components/TicketConversation/locales/en.json +878 -0
- package/dist/components/TicketConversation/locales/fr.json +878 -0
- package/dist/components/TicketConversation/types.js +2 -0
- package/dist/components/TicketConversation/utils.js +25 -0
- package/dist/index.cjs +2 -2
- package/dist/index.js +2 -2
- package/dist/styles/BillingView.module.scss +311 -0
- package/dist/styles/ChatView.module.scss +438 -0
- package/dist/styles/CommandPalette.module.scss +160 -0
- package/dist/styles/CrmView.module.scss +554 -0
- package/dist/styles/EmailTracking.module.scss +238 -0
- package/dist/styles/ImportConversation.module.scss +267 -0
- package/dist/styles/Layout.module.scss +55 -0
- package/dist/styles/Logs.module.scss +164 -0
- package/dist/styles/NewTicket.module.scss +143 -0
- package/dist/styles/PendingEmails.module.scss +629 -0
- package/dist/styles/SupportDashboard.module.scss +649 -0
- package/dist/styles/TicketDetail.module.scss +1050 -0
- package/dist/styles/TicketInbox.module.scss +296 -0
- package/dist/styles/TicketingSettings.module.scss +358 -0
- package/dist/styles/TimeDashboard.module.scss +287 -0
- package/dist/styles/_tokens.scss +78 -0
- package/dist/styles/theme.css +633 -0
- package/dist/views/BillingView/client.js +204 -0
- package/dist/views/BillingView/index.js +29 -0
- package/dist/views/ChatView/client.js +252 -0
- package/dist/views/ChatView/index.js +29 -0
- package/dist/views/CrmView/client.js +232 -0
- package/dist/views/CrmView/index.js +29 -0
- package/dist/views/EmailTrackingView/client.js +154 -0
- package/dist/views/EmailTrackingView/index.js +29 -0
- package/dist/views/ImportConversationView/client.js +204 -0
- package/dist/views/ImportConversationView/index.js +29 -0
- package/dist/views/LogsView/client.js +148 -0
- package/dist/views/LogsView/index.js +27 -0
- package/dist/views/NewTicketView/client.js +224 -0
- package/dist/views/NewTicketView/index.js +27 -0
- package/dist/views/PendingEmailsView/client.js +172 -0
- package/dist/views/PendingEmailsView/index.js +29 -0
- package/dist/views/SupportDashboardView/client.js +296 -0
- package/dist/views/SupportDashboardView/index.js +29 -0
- package/dist/views/TicketDetailView/client.js +844 -0
- package/dist/views/TicketDetailView/index.js +29 -0
- package/dist/views/TicketInboxView/client.js +294 -0
- package/dist/views/TicketInboxView/index.js +27 -0
- package/dist/{views.css → views/TicketingSettingsView/TicketingSettings.module.scss} +138 -66
- package/dist/views/TicketingSettingsView/client.js +728 -0
- package/dist/views/TicketingSettingsView/index.js +29 -0
- package/dist/views/TimeDashboardView/client.js +164 -0
- package/dist/views/TimeDashboardView/index.js +29 -0
- package/dist/views/shared/AdminViewHeader.js +67 -0
- package/dist/views/shared/ErrorBoundary.js +50 -0
- package/dist/views/shared/Skeleton.js +72 -0
- package/dist/views/shared/adminTokens.js +32 -0
- package/dist/views/shared/config.js +41 -0
- package/dist/views/shared/index.js +6 -0
- package/package.json +8 -12
- package/src/collections/Tickets.ts +1 -1
- package/src/components/TicketConversation/index.tsx +21 -2
- package/src/plugin.ts +3 -2
- package/dist/views.cjs +0 -6172
- package/dist/views.d.cts +0 -30
- package/dist/views.d.ts +0 -30
- package/dist/views.js +0 -6153
- package/src/views.ts +0 -16
package/dist/views.d.cts
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { AdminViewServerProps } from 'payload';
|
|
2
|
-
import React from 'react';
|
|
3
|
-
|
|
4
|
-
declare const TicketInboxView: React.FC<AdminViewServerProps>;
|
|
5
|
-
|
|
6
|
-
declare const TicketDetailView: React.FC<AdminViewServerProps>;
|
|
7
|
-
|
|
8
|
-
declare const SupportDashboardView: React.FC<AdminViewServerProps>;
|
|
9
|
-
|
|
10
|
-
declare const NewTicketView: React.FC<AdminViewServerProps>;
|
|
11
|
-
|
|
12
|
-
declare const TicketingSettingsView: React.FC<AdminViewServerProps>;
|
|
13
|
-
|
|
14
|
-
declare const LogsView: React.FC<AdminViewServerProps>;
|
|
15
|
-
|
|
16
|
-
declare const ChatView: React.FC<AdminViewServerProps>;
|
|
17
|
-
|
|
18
|
-
declare const CrmView: React.FC<AdminViewServerProps>;
|
|
19
|
-
|
|
20
|
-
declare const PendingEmailsView: React.FC<AdminViewServerProps>;
|
|
21
|
-
|
|
22
|
-
declare const EmailTrackingView: React.FC<AdminViewServerProps>;
|
|
23
|
-
|
|
24
|
-
declare const BillingView: React.FC<AdminViewServerProps>;
|
|
25
|
-
|
|
26
|
-
declare const TimeDashboardView: React.FC<AdminViewServerProps>;
|
|
27
|
-
|
|
28
|
-
declare const ImportConversationView: React.FC<AdminViewServerProps>;
|
|
29
|
-
|
|
30
|
-
export { BillingView, ChatView, CrmView, EmailTrackingView, ImportConversationView, LogsView, NewTicketView, PendingEmailsView, SupportDashboardView, TicketDetailView, TicketInboxView, TicketingSettingsView, TimeDashboardView };
|
package/dist/views.d.ts
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { AdminViewServerProps } from 'payload';
|
|
2
|
-
import React from 'react';
|
|
3
|
-
|
|
4
|
-
declare const TicketInboxView: React.FC<AdminViewServerProps>;
|
|
5
|
-
|
|
6
|
-
declare const TicketDetailView: React.FC<AdminViewServerProps>;
|
|
7
|
-
|
|
8
|
-
declare const SupportDashboardView: React.FC<AdminViewServerProps>;
|
|
9
|
-
|
|
10
|
-
declare const NewTicketView: React.FC<AdminViewServerProps>;
|
|
11
|
-
|
|
12
|
-
declare const TicketingSettingsView: React.FC<AdminViewServerProps>;
|
|
13
|
-
|
|
14
|
-
declare const LogsView: React.FC<AdminViewServerProps>;
|
|
15
|
-
|
|
16
|
-
declare const ChatView: React.FC<AdminViewServerProps>;
|
|
17
|
-
|
|
18
|
-
declare const CrmView: React.FC<AdminViewServerProps>;
|
|
19
|
-
|
|
20
|
-
declare const PendingEmailsView: React.FC<AdminViewServerProps>;
|
|
21
|
-
|
|
22
|
-
declare const EmailTrackingView: React.FC<AdminViewServerProps>;
|
|
23
|
-
|
|
24
|
-
declare const BillingView: React.FC<AdminViewServerProps>;
|
|
25
|
-
|
|
26
|
-
declare const TimeDashboardView: React.FC<AdminViewServerProps>;
|
|
27
|
-
|
|
28
|
-
declare const ImportConversationView: React.FC<AdminViewServerProps>;
|
|
29
|
-
|
|
30
|
-
export { BillingView, ChatView, CrmView, EmailTrackingView, ImportConversationView, LogsView, NewTicketView, PendingEmailsView, SupportDashboardView, TicketDetailView, TicketInboxView, TicketingSettingsView, TimeDashboardView };
|