Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled
- Add Logistics component with progress tracking - Add OrderDetail component for order information - Support data-driven steps and actions - Add blue color scale to widget SCSS - Fix node overflow and progress bar rendering issues - Add English translations for dashboard components Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
78 lines
2.2 KiB
JavaScript
78 lines
2.2 KiB
JavaScript
import advancedFilters from './advancedFilters.json';
|
|
import agentBots from './agentBots.json';
|
|
import agentMgmt from './agentMgmt.json';
|
|
import attributesMgmt from './attributesMgmt.json';
|
|
import auditLogs from './auditLogs.json';
|
|
import automation from './automation.json';
|
|
import bulkActions from './bulkActions.json';
|
|
import campaign from './campaign.json';
|
|
import cannedMgmt from './cannedMgmt.json';
|
|
import chatlist from './chatlist.json';
|
|
import components from './components.json';
|
|
import contact from './contact.json';
|
|
import contactFilters from './contactFilters.json';
|
|
import conversation from './conversation.json';
|
|
import csatMgmt from './csatMgmt.json';
|
|
import customRole from './customRole.json';
|
|
import datePicker from './datePicker.json';
|
|
import emoji from './emoji.json';
|
|
import general from './general.json';
|
|
import generalSettings from './generalSettings.json';
|
|
import helpCenter from './helpCenter.json';
|
|
import inbox from './inbox.json';
|
|
import inboxMgmt from './inboxMgmt.json';
|
|
import integrationApps from './integrationApps.json';
|
|
import integrations from './integrations.json';
|
|
import labelsMgmt from './labelsMgmt.json';
|
|
import login from './login.json';
|
|
import macros from './macros.json';
|
|
import report from './report.json';
|
|
import resetPassword from './resetPassword.json';
|
|
import search from './search.json';
|
|
import setNewPassword from './setNewPassword.json';
|
|
import settings from './settings.json';
|
|
import signup from './signup.json';
|
|
import sla from './sla.json';
|
|
import teamsSettings from './teamsSettings.json';
|
|
import whatsappTemplates from './whatsappTemplates.json';
|
|
|
|
export default {
|
|
...advancedFilters,
|
|
...agentBots,
|
|
...agentMgmt,
|
|
...attributesMgmt,
|
|
...auditLogs,
|
|
...automation,
|
|
...bulkActions,
|
|
...campaign,
|
|
...cannedMgmt,
|
|
...chatlist,
|
|
...components,
|
|
...contact,
|
|
...contactFilters,
|
|
...conversation,
|
|
...csatMgmt,
|
|
...customRole,
|
|
...datePicker,
|
|
...emoji,
|
|
...general,
|
|
...generalSettings,
|
|
...helpCenter,
|
|
...inbox,
|
|
...inboxMgmt,
|
|
...integrationApps,
|
|
...integrations,
|
|
...labelsMgmt,
|
|
...login,
|
|
...macros,
|
|
...report,
|
|
...resetPassword,
|
|
...search,
|
|
...setNewPassword,
|
|
...settings,
|
|
...signup,
|
|
...sla,
|
|
...teamsSettings,
|
|
...whatsappTemplates,
|
|
};
|