* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
29 lines
1.3 KiB
JavaScript
29 lines
1.3 KiB
JavaScript
export { default as browsers } from './browsers';
|
|
export { default as browserIcon } from './browserIcon';
|
|
export { default as countryShortName } from './countryShortName';
|
|
export { default as os } from './os';
|
|
export { default as countries } from './countries';
|
|
export { default as yesOrNoOptions } from './yesOrNoOptions';
|
|
export { default as FRAMEWORKS } from './frameworks';
|
|
export { default as consoleLevels } from './consoleLevels';
|
|
export { default as alertConditions } from './alertConditions';
|
|
export { default as alertMetrics } from './alertMetrics';
|
|
export { default as regions } from './regions';
|
|
export { default as links } from './links';
|
|
export { default as platformOptions } from './platformOptions';
|
|
export {
|
|
DAYS as SCHEDULE_DAYS,
|
|
HOURS as SCHEDULE_HOURS,
|
|
CHANNEL as SCHEDULE_CHANNEL,
|
|
EMAIL as CHANNEL_EMAIL,
|
|
SLACK as CHANNEL_SLACK,
|
|
WEBHOOK as CHANNEL_WEBHOOK,
|
|
} from './schedule';
|
|
export { default } from './filterOptions';
|
|
// export { default as storageKeys } from './storageKeys';
|
|
export const ENTERPRISE_REQUEIRED = (t) =>
|
|
t('This feature requires an enterprise license.');
|
|
export const PASSWORD_POLICY = (t) =>
|
|
t(
|
|
'The password should have a minimum length of 8 characters and include at least one uppercase letter, one lowercase letter, one digit, and one special character.',
|
|
);
|