* feat: Custom date picker * chore: Calender footer * chore: Minor fix * chore: Reset date picker * chore: Minor fix * feat: Toggle button * chore: Clean up * chore: Use font inter * chore: Cleanup and fix bugs * fix: custom date range reset the calendar * chore: fix logic bug * feat: Add manual date range * fix: styles in rtl * chore: Helper specs * chore: Clean up * chore: Review fixes * chore: remove magic strings * chore: Add comments * chore: Review fixes * chore: Clean up * chore: remove magic strings * fix: Use outline instead of border * chore: Minor style fix * chore: disable pointer events for the disabled dates * chore: Fix code climate --------- Co-authored-by: Shivam Mishra <scm.mymail@gmail.com>
74 lines
2.1 KiB
JavaScript
74 lines
2.1 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 contact from './contact.json';
|
|
import contactFilters from './contactFilters.json';
|
|
import conversation from './conversation.json';
|
|
import csatMgmt from './csatMgmt.json';
|
|
import emoji from './emoji.json';
|
|
import generalSettings from './generalSettings.json';
|
|
import helpCenter from './helpCenter.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 teamsSettings from './teamsSettings.json';
|
|
import whatsappTemplates from './whatsappTemplates.json';
|
|
import sla from './sla.json';
|
|
import inbox from './inbox.json';
|
|
import general from './general.json';
|
|
import datePicker from './datePicker.json';
|
|
|
|
export default {
|
|
...advancedFilters,
|
|
...agentBots,
|
|
...agentMgmt,
|
|
...attributesMgmt,
|
|
...auditLogs,
|
|
...automation,
|
|
...bulkActions,
|
|
...campaign,
|
|
...cannedMgmt,
|
|
...chatlist,
|
|
...contact,
|
|
...contactFilters,
|
|
...conversation,
|
|
...csatMgmt,
|
|
...emoji,
|
|
...generalSettings,
|
|
...helpCenter,
|
|
...inboxMgmt,
|
|
...integrationApps,
|
|
...integrations,
|
|
...labelsMgmt,
|
|
...login,
|
|
...macros,
|
|
...report,
|
|
...resetPassword,
|
|
...search,
|
|
...setNewPassword,
|
|
...settings,
|
|
...signup,
|
|
...sla,
|
|
...teamsSettings,
|
|
...whatsappTemplates,
|
|
...inbox,
|
|
...general,
|
|
...datePicker,
|
|
};
|