@griddo/ax 12.5.0 → 12.5.2-rc.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/README.md +1 -2
- package/config/__tests__/ModulePathInMessagesPlugin.test.js +93 -0
- package/config/__tests__/webpack5-migration.test.js +2 -2
- package/config/webpack/ModulePathInMessagesPlugin.js +47 -0
- package/config/webpack.config.js +5 -0
- package/package.json +21 -19
- package/src/GlobalStore.tsx +3 -3
- package/src/__mocks__/reducers/structuredData.tsx +1 -1
- package/src/__tests__/components/ActionMenu/ActionMenu.test.tsx +1 -1
- package/src/__tests__/components/Breadcrumb/Breadcrumb.test.tsx +1 -1
- package/src/__tests__/components/Browser/Browser.test.tsx +4 -0
- package/src/__tests__/components/CategoryCell/CategoryCell.test.tsx +1 -1
- package/src/__tests__/components/ConfigPanel/Form/Form.test.tsx +5 -5
- package/src/__tests__/components/ConfigPanel/Header/Header.test.tsx +2 -2
- package/src/__tests__/components/ConfigPanel/NavigationForm/Field/Field.test.tsx +5 -1
- package/src/__tests__/components/ConfigPanel/NavigationForm/NavigationForm.test.tsx +1 -1
- package/src/__tests__/components/ConfigPanel/PreviewForm/PreviewForm.test.tsx +1 -1
- package/src/__tests__/components/DragAndDrop/DragAndDrop.test.tsx +1 -1
- package/src/__tests__/components/ElementsTooltip/ElementsTooltip.test.tsx +1 -1
- package/src/__tests__/components/EmptyState/EmptyState.test.tsx +1 -1
- package/src/__tests__/components/ErrorCenter/ErrorCenter.test.tsx +2 -2
- package/src/__tests__/components/ErrorToast/ErrorToast.test.tsx +1 -1
- package/src/__tests__/components/FieldContainer/FieldContainer.test.tsx +1 -1
- package/src/__tests__/components/Fields/AsyncSelect/AsyncSelect.test.tsx +2 -2
- package/src/__tests__/components/Fields/ColorPicker/ColorPicker.test.tsx +1 -1
- package/src/__tests__/components/Fields/ComponentArray/ComponentArray.test.tsx +3 -3
- package/src/__tests__/components/Fields/ComponentArray/MixableComponentArray/MixableComponentArray.test.tsx +2 -2
- package/src/__tests__/components/Fields/ComponentArray/MixableComponentArray/PasteModuleButton/PasteModuleButton.test.tsx +2 -2
- package/src/__tests__/components/Fields/ComponentArray/SameComponentArray/SameComponentArray.test.tsx +4 -2
- package/src/__tests__/components/Fields/ComponentContainer/ComponentContainer.test.tsx +1 -1
- package/src/__tests__/components/Fields/DateField/DateField.test.tsx +1 -1
- package/src/__tests__/components/Fields/FileField/FileField.test.tsx +1 -1
- package/src/__tests__/components/Fields/HiddenField/HiddenField.test.tsx +1 -1
- package/src/__tests__/components/Fields/ImageField/ImageField.test.tsx +1 -1
- package/src/__tests__/components/Fields/IntegrationsField/IntegrationsField.test.tsx +1 -1
- package/src/__tests__/components/Fields/MultiCheckSelect/MultiCheckSelect.test.tsx +1 -1
- package/src/__tests__/components/Fields/MultiCheckSelectGroup/MultiCheckSelectGroup.test.tsx +1 -1
- package/src/__tests__/components/Fields/NoteField/NoteField.test.tsx +1 -1
- package/src/__tests__/components/Fields/NumberField/NumberField.test.tsx +1 -1
- package/src/__tests__/components/Fields/RadioField/RadioField.test.tsx +1 -1
- package/src/__tests__/components/Fields/ReferenceField/ReferenceField.test.tsx +1 -1
- package/src/__tests__/components/Fields/RichText/RichText.test.tsx +1 -1
- package/src/__tests__/components/Fields/Select/Select.test.tsx +1 -1
- package/src/__tests__/components/Fields/SliderField/SliderField.test.tsx +1 -1
- package/src/__tests__/components/Fields/SummaryButton/SummaryButton.test.tsx +1 -1
- package/src/__tests__/components/Fields/ToggleField/ToggleField.test.tsx +1 -1
- package/src/__tests__/components/Fields/Tooltip/Tooltip.test.tsx +1 -1
- package/src/__tests__/components/Fields/TranslateButton/TranslateButton.test.tsx +1 -1
- package/src/__tests__/components/Fields/UrlField/UrlField.test.tsx +1 -1
- package/src/__tests__/components/Fields/VisualUniqueSelection/ImageSelection/ImageSelection.test.tsx +1 -1
- package/src/__tests__/components/Fields/VisualUniqueSelection/ScrollableSelection/ScrollableSelection.test.tsx +1 -1
- package/src/__tests__/components/Fields/VisualUniqueSelection/VisualUniqueSelection.test.tsx +2 -2
- package/src/__tests__/components/Fields/Wysiwyg/Wysiwyg.atoms.test.tsx +1 -5
- package/src/__tests__/components/Fields/Wysiwyg/Wysiwyg.test.tsx +7 -31
- package/src/__tests__/components/Flag/Flag.test.tsx +1 -1
- package/src/__tests__/components/FloatingPanel/FloatingPanel.test.tsx +1 -1
- package/src/__tests__/components/GuardModal/GuardModal.test.tsx +1 -1
- package/src/__tests__/components/HeadingsPreviewModal/HeadingsPreviewModal.test.tsx +1 -1
- package/src/__tests__/components/HeadingsPreviewModal/HeadingsPreviewModal.utils.test.tsx +5 -1
- package/src/__tests__/components/Icon/Icon.test.tsx +1 -1
- package/src/__tests__/components/IconAction/IconAction.test.tsx +1 -1
- package/src/__tests__/components/InformativeMenu/InformativeMenu.test.tsx +1 -1
- package/src/__tests__/components/KeywordsPreviewModal/KeywordsPreviewModal.test.tsx +1 -1
- package/src/__tests__/components/KeywordsPreviewModal/atoms.test.tsx +1 -1
- package/src/__tests__/components/Lists/Lists.test.tsx +1 -1
- package/src/__tests__/components/Loader/Loader.test.tsx +1 -1
- package/src/__tests__/components/Login/Login.test.tsx +1 -1
- package/src/__tests__/components/Login/RecoveryModal/RecoveryModal.test.tsx +1 -1
- package/src/__tests__/components/MainWrapper/AppBar/AppBar.test.tsx +1 -1
- package/src/__tests__/components/MainWrapper/MainWrapper.test.tsx +1 -1
- package/src/__tests__/components/MenuItem/MenuItem.test.tsx +1 -1
- package/src/__tests__/components/Modal/Modal.test.tsx +1 -1
- package/src/__tests__/components/Nav/Nav.test.tsx +1 -1
- package/src/__tests__/components/Notification/Notification.test.tsx +1 -1
- package/src/__tests__/components/Notification/SubNotification/Subnotification.test.tsx +1 -1
- package/src/__tests__/components/Pagination/Pagination.test.tsx +0 -1
- package/src/__tests__/components/ProgressBar/ProgressBar.test.tsx +1 -1
- package/src/__tests__/components/ReorderArrows/ReorderArrows.test.tsx +1 -1
- package/src/__tests__/components/ResizePanel/ResizePanel.test.tsx +1 -0
- package/src/__tests__/components/RestrictionsModal/UsersList/UsersList.test.tsx +96 -9
- package/src/__tests__/components/SearchField/SearchField.test.tsx +1 -1
- package/src/__tests__/components/SubNav/SubNav.test.tsx +1 -1
- package/src/__tests__/components/TableCounter/TableCounter.test.tsx +1 -1
- package/src/__tests__/components/TableFilters/CategoryFilter/CategoryFilter.test.tsx +3 -3
- package/src/__tests__/components/TableFilters/CustomizeFilters/CustomizeFilters.test.tsx +2 -2
- package/src/__tests__/components/TableFilters/DateFilter/DateFilter.test.tsx +3 -3
- package/src/__tests__/components/TableFilters/LiveFilter/LiveFilter.test.tsx +3 -3
- package/src/__tests__/components/TableFilters/NameFilter/NameFilter.test.tsx +3 -3
- package/src/__tests__/components/TableFilters/RoleFilter/RoleFilter.test.tsx +3 -3
- package/src/__tests__/components/TableFilters/SiteFilter/SiteFilter.test.tsx +3 -3
- package/src/__tests__/components/TableFilters/StatusFilter/StatusFilter.test.tsx +3 -3
- package/src/__tests__/components/TableFilters/TranslationsFilter/TranslationsFilter.test.tsx +3 -3
- package/src/__tests__/components/TableFilters/TypeFilter/TypeFilter.test.tsx +3 -3
- package/src/__tests__/components/TableFilters/UsersFilter/UsersFilter.test.tsx +3 -3
- package/src/__tests__/components/TableList/TableList.test.tsx +1 -1
- package/src/__tests__/components/Tabs/Tabs.test.tsx +1 -1
- package/src/__tests__/components/Tag/Tag.test.tsx +1 -1
- package/src/__tests__/components/Toast/Toast.test.tsx +1 -1
- package/src/__tests__/hooks/users.test.tsx +12 -4
- package/src/__tests__/modules/Settings/Integrations/Integrations.test.tsx +1 -1
- package/src/__tests__/modules/Sites/SitesList/WelcomeModal/FinalStep/FinalStep.test.tsx +9 -1
- package/src/__tests__/modules/Sites/SitesList/WelcomeModal/ImageStep/ImageStep.test.tsx +2 -0
- package/src/__tests__/modules/Sites/SitesList/WelcomeModal/ImageStep/UploadView/UploadView.test.tsx +1 -0
- package/src/__tests__/modules/Users/Roles/BulkHeader/BulkHeader.test.tsx +2 -2
- package/src/__tests__/modules/Users/Roles/Roles.test.tsx +3 -3
- package/src/__tests__/modules/Users/UserCreate/SiteItem/RolesModal/RoleItem/RoleItem.test.tsx +3 -1
- package/src/__tests__/modules/Users/UserCreate/SiteItem/RolesModal/RolesModal.test.tsx +1 -1
- package/src/__tests__/modules/Users/UserCreate/SiteItem/SiteItem.test.tsx +1 -1
- package/src/__tests__/modules/Users/UserCreate/UserCreate.test.tsx +2 -2
- package/src/api/analytics.tsx +3 -3
- package/src/api/dataPack.tsx +1 -1
- package/src/api/domains.tsx +2 -2
- package/src/api/files.tsx +2 -2
- package/src/api/folders.tsx +1 -1
- package/src/api/forms.tsx +2 -2
- package/src/api/global.tsx +2 -2
- package/src/api/images.tsx +2 -2
- package/src/api/integrations.tsx +3 -3
- package/src/api/languages.tsx +1 -1
- package/src/api/logs.tsx +3 -3
- package/src/api/menus.tsx +1 -1
- package/src/api/navigation.tsx +1 -1
- package/src/api/redirects.tsx +1 -1
- package/src/api/roles.tsx +3 -3
- package/src/api/social.tsx +1 -1
- package/src/api/users.tsx +1 -1
- package/src/api/utils.tsx +1 -1
- package/src/components/Avatar/index.tsx +1 -1
- package/src/components/Breadcrumb/index.tsx +1 -1
- package/src/components/Button/index.tsx +1 -1
- package/src/components/ConfigPanel/Form/ConnectedField/PageConnectedField/TemplateManager/index.tsx +1 -1
- package/src/components/ConfigPanel/NavigationForm/Field/index.tsx +1 -1
- package/src/components/ConfigPanel/NavigationForm/index.tsx +1 -1
- package/src/components/ConfigPanel/PreviewForm/index.tsx +1 -1
- package/src/components/DragAndDrop/index.tsx +2 -1
- package/src/components/EmptyState/index.tsx +1 -1
- package/src/components/ErrorCenter/index.tsx +1 -1
- package/src/components/FieldContainer/index.tsx +1 -1
- package/src/components/Fields/AIReferenceField/AIConfigPanel/index.tsx +1 -1
- package/src/components/Fields/AIReferenceField/index.tsx +1 -1
- package/src/components/Fields/ArrayFieldGroup/helpers.ts +1 -7
- package/src/components/Fields/CheckGroup/index.tsx +2 -2
- package/src/components/Fields/ColorPicker/Picker/index.tsx +2 -1
- package/src/components/Fields/ColorPicker/index.tsx +2 -1
- package/src/components/Fields/ComponentContainer/style.tsx +1 -1
- package/src/components/Fields/ConditionalField/index.tsx +1 -3
- package/src/components/Fields/FormCategorySelect/index.tsx +2 -2
- package/src/components/Fields/FormContainer/FormModal/index.tsx +2 -2
- package/src/components/Fields/FormContainer/index.tsx +1 -1
- package/src/components/Fields/FormFieldArray/index.tsx +1 -1
- package/src/components/Fields/IntegrationsField/IntegrationItem/CustomPanel/index.tsx +1 -1
- package/src/components/Fields/IntegrationsField/IntegrationItem/VariablesPanel/helpers.ts +1 -1
- package/src/components/Fields/IntegrationsField/IntegrationItem/VariablesPanel/index.tsx +1 -1
- package/src/components/Fields/IntegrationsField/SideModal/SideModalOption/index.tsx +1 -1
- package/src/components/Fields/LinkField/index.tsx +1 -1
- package/src/components/Fields/RadioGroup/index.tsx +2 -2
- package/src/components/Fields/SliderField/index.tsx +2 -1
- package/src/components/Fields/TimeField/HourInput/index.tsx +2 -1
- package/src/components/Fields/UrlField/utils.tsx +1 -1
- package/src/components/Fields/VisualOption/index.tsx +1 -1
- package/src/components/Fields/Wysiwyg/atoms.tsx +13 -2
- package/src/components/Fields/Wysiwyg/helpers.tsx +10 -2
- package/src/components/FileGallery/FolderItem/index.tsx +1 -1
- package/src/components/FileGallery/GridItem/index.tsx +1 -1
- package/src/components/FloatingButton/index.tsx +1 -1
- package/src/components/Gallery/FolderItem/index.tsx +1 -1
- package/src/components/HeadingsPreviewModal/index.tsx +11 -2
- package/src/components/HeadingsPreviewModal/utils.tsx +8 -1
- package/src/components/Icon/components/Party.jsx +6 -12
- package/src/components/Icon/components/Republish.jsx +12 -18
- package/src/components/Icon/components/Sync.jsx +6 -12
- package/src/components/KeywordsPreviewModal/index.tsx +7 -1
- package/src/components/Lists/index.tsx +1 -1
- package/src/components/Nav/index.tsx +1 -1
- package/src/components/TableFilters/CustomizeFilters/index.tsx +1 -1
- package/src/components/TableFilters/DateFilter/index.tsx +1 -1
- package/src/components/TableFilters/LastAccessFilter/index.tsx +1 -1
- package/src/components/TableFilters/NameFilter/index.tsx +1 -1
- package/src/components/TableFilters/PermissionsFilter/index.tsx +1 -1
- package/src/components/TableFilters/StateFilter/index.tsx +1 -1
- package/src/components/TableFilters/StatusFilter/index.tsx +1 -1
- package/src/components/TableFilters/TypeFilter/index.tsx +1 -1
- package/src/components/TableFilters/UsersFilter/index.tsx +1 -1
- package/src/components/Tag/index.tsx +15 -2
- package/src/containers/ActivityLog/actions.tsx +4 -5
- package/src/containers/ActivityLog/interfaces.tsx +2 -2
- package/src/containers/ActivityLog/reducer.tsx +1 -2
- package/src/containers/Analytics/actions.tsx +3 -3
- package/src/containers/Analytics/interfaces.tsx +2 -2
- package/src/containers/Analytics/reducer.tsx +2 -2
- package/src/containers/Domains/actions.tsx +2 -2
- package/src/containers/Domains/interfaces.tsx +2 -2
- package/src/containers/Domains/reducer.tsx +2 -2
- package/src/containers/FileDrive/actions.tsx +3 -3
- package/src/containers/FileDrive/interfaces.tsx +2 -2
- package/src/containers/FileDrive/reducer.tsx +1 -1
- package/src/containers/Gallery/interfaces.tsx +3 -3
- package/src/containers/Gallery/reducer.tsx +2 -2
- package/src/containers/Integrations/actions.tsx +3 -3
- package/src/containers/Integrations/interfaces.tsx +2 -2
- package/src/containers/Integrations/reducer.tsx +2 -2
- package/src/containers/Navigation/Defaults/actions.tsx +3 -3
- package/src/containers/Navigation/Defaults/interfaces.tsx +2 -2
- package/src/containers/Navigation/Menu/actions.tsx +3 -3
- package/src/containers/Navigation/Menu/interfaces.tsx +3 -3
- package/src/containers/Navigation/Menu/reducer.tsx +2 -2
- package/src/containers/PageEditor/utils.tsx +2 -2
- package/src/containers/Redirects/actions.tsx +1 -1
- package/src/containers/Redirects/interfaces.tsx +1 -1
- package/src/containers/Redirects/reducer.tsx +2 -2
- package/src/containers/Settings/DataPacks/interfaces.tsx +1 -1
- package/src/containers/Settings/DataPacks/reducer.tsx +1 -1
- package/src/containers/Settings/Languages/actions.tsx +2 -2
- package/src/containers/Settings/Social/actions.tsx +2 -2
- package/src/containers/Settings/Social/interfaces.tsx +2 -2
- package/src/containers/Settings/Social/reducer.tsx +2 -2
- package/src/containers/Sites/interfaces.tsx +2 -2
- package/src/containers/Users/interfaces.tsx +2 -2
- package/src/forms/validators.tsx +1 -1
- package/src/guards/error/index.tsx +1 -1
- package/src/helpers/customColumns.tsx +1 -1
- package/src/helpers/dates.tsx +3 -3
- package/src/helpers/files.tsx +1 -1
- package/src/helpers/parseTheme.js +2 -2
- package/src/helpers/strings.tsx +1 -1
- package/src/hooks/content.tsx +1 -1
- package/src/hooks/index.tsx +7 -1
- package/src/hooks/users.tsx +1 -3
- package/src/modules/ActivityLog/DetailModal/index.tsx +3 -3
- package/src/modules/ActivityLog/DownloadModal/index.tsx +3 -3
- package/src/modules/ActivityLog/ItemLog/index.tsx +1 -1
- package/src/modules/ActivityLog/LogFilters/ContentFilter/index.tsx +1 -1
- package/src/modules/ActivityLog/LogFilters/EventFilter/index.tsx +1 -1
- package/src/modules/ActivityLog/TableHeader/index.tsx +1 -1
- package/src/modules/ActivityLog/hooks.tsx +1 -1
- package/src/modules/ActivityLog/index.tsx +2 -2
- package/src/modules/ActivityLog/utils.tsx +1 -1
- package/src/modules/Analytics/DimensionPanel/index.tsx +1 -1
- package/src/modules/Analytics/index.tsx +1 -1
- package/src/modules/App/Routing/NavMenu/NavItem/NavSubItem/index.tsx +1 -1
- package/src/modules/App/Routing/PrivateRoute/index.tsx +1 -1
- package/src/modules/App/index.tsx +1 -1
- package/src/modules/Categories/CategoriesList/CategoryNav/NavItem/index.tsx +1 -1
- package/src/modules/Categories/CategoriesList/CategoryNav/index.tsx +1 -1
- package/src/modules/Categories/CategoriesList/CategoryPanel/Form/index.tsx +1 -1
- package/src/modules/Categories/CategoriesList/atoms.tsx +1 -8
- package/src/modules/Categories/CategoriesList/helpers.tsx +1 -1
- package/src/modules/Categories/CategoriesList/hooks.tsx +1 -1
- package/src/modules/Content/BulkHeader/TableHeader/index.tsx +1 -1
- package/src/modules/Content/ContentFilters/utils.tsx +1 -1
- package/src/modules/Content/hooks.tsx +1 -1
- package/src/modules/FileDrive/Breadcrumb/index.tsx +1 -1
- package/src/modules/FileDrive/FileFilters/SortBy/index.tsx +1 -1
- package/src/modules/FileDrive/FileFilters/Type/index.tsx +1 -1
- package/src/modules/FileDrive/FileModal/DetailPanel/UsageContent/ItemGroup/index.tsx +3 -2
- package/src/modules/FileDrive/FileModal/DetailPanel/UsageContent/index.tsx +2 -2
- package/src/modules/FileDrive/FolderTree/MenuItem/index.tsx +3 -2
- package/src/modules/FileDrive/FolderTree/MenuList/index.tsx +1 -1
- package/src/modules/FileDrive/FolderTree/index.tsx +1 -1
- package/src/modules/FileDrive/hooks.tsx +1 -1
- package/src/modules/Forms/FormCategoriesList/CategoryItem/style.tsx +1 -1
- package/src/modules/Forms/FormCategoriesList/CategoryPanel/Form/index.tsx +1 -1
- package/src/modules/Forms/FormCategoriesList/CategoryPanel/index.tsx +1 -1
- package/src/modules/Forms/FormCategoriesList/hooks.tsx +1 -1
- package/src/modules/Forms/FormEditor/Editor/FormConfigPanel/Form/ConnectedField/Field/index.tsx +1 -1
- package/src/modules/Forms/FormEditor/Editor/FormConfigPanel/Form/ConnectedField/TemplateManager/index.tsx +1 -1
- package/src/modules/Forms/FormEditor/Editor/FormConfigPanel/Header/index.tsx +3 -2
- package/src/modules/Forms/FormEditor/Editor/FormConfigPanel/index.tsx +1 -1
- package/src/modules/Forms/FormEditor/Editor/index.tsx +3 -2
- package/src/modules/Forms/FormList/BulkHeader/TableHeader/index.tsx +1 -1
- package/src/modules/Forms/FormList/FormItem/index.tsx +7 -1
- package/src/modules/Forms/FormList/Summary/index.tsx +1 -1
- package/src/modules/Forms/FormList/TemplateModal/index.tsx +3 -2
- package/src/modules/Forms/FormList/hooks.tsx +1 -1
- package/src/modules/Forms/FormUseModal/utils.tsx +1 -1
- package/src/modules/Forms/FormsMenu/index.tsx +1 -1
- package/src/modules/Forms/atoms.tsx +5 -1
- package/src/modules/Forms/utils.tsx +1 -1
- package/src/modules/FramePreview/HeadingsOverlay/index.tsx +3 -4
- package/src/modules/GlobalSettings/Robots/Item/index.tsx +1 -1
- package/src/modules/MediaGallery/Breadcrumb/index.tsx +1 -1
- package/src/modules/MediaGallery/FolderTree/MenuItem/index.tsx +3 -2
- package/src/modules/MediaGallery/FolderTree/MenuList/index.tsx +1 -1
- package/src/modules/MediaGallery/FolderTree/index.tsx +1 -1
- package/src/modules/MediaGallery/GridItem/index.tsx +6 -1
- package/src/modules/MediaGallery/ImageFilters/Orientation/index.tsx +1 -1
- package/src/modules/MediaGallery/ImageFilters/SortBy/index.tsx +1 -1
- package/src/modules/MediaGallery/ImageFilters/Type/index.tsx +1 -1
- package/src/modules/MediaGallery/ImageFilters/Usage/index.tsx +1 -1
- package/src/modules/MediaGallery/ImageModal/DetailPanel/UsageContent/ItemGroup/index.tsx +3 -2
- package/src/modules/MediaGallery/ImageModal/DetailPanel/UsageContent/index.tsx +2 -2
- package/src/modules/MediaGallery/hooks.tsx +1 -1
- package/src/modules/Navigation/Defaults/DefaultsEditor/Editor/DefaultsBrowser/index.tsx +2 -2
- package/src/modules/Navigation/Defaults/DefaultsEditor/Editor/index.tsx +2 -2
- package/src/modules/Navigation/Defaults/ReplaceNavModal/index.tsx +1 -1
- package/src/modules/Navigation/Menus/List/Nav/index.tsx +1 -1
- package/src/modules/Navigation/Menus/List/Table/Header/index.tsx +1 -1
- package/src/modules/Navigation/Menus/List/Table/Item/index.tsx +6 -1
- package/src/modules/Navigation/Menus/List/Table/Item/style.tsx +1 -1
- package/src/modules/Navigation/Menus/List/Table/helpers.tsx +1 -1
- package/src/modules/PublicPreview/index.tsx +5 -13
- package/src/modules/Redirects/BulkHeader/TableHeader/index.tsx +1 -1
- package/src/modules/Redirects/BulkHeader/index.tsx +1 -1
- package/src/modules/Redirects/RedirectPanel/index.tsx +1 -1
- package/src/modules/Redirects/hooks.tsx +1 -1
- package/src/modules/Settings/ContentTypes/DataPacks/AddModal/Filter/index.tsx +1 -1
- package/src/modules/Settings/ContentTypes/DataPacks/AddModal/SidePanel/DetailPanel/index.tsx +1 -1
- package/src/modules/Settings/ContentTypes/DataPacks/AddModal/SidePanel/index.tsx +1 -1
- package/src/modules/Settings/ContentTypes/DataPacks/AddModal/index.tsx +1 -1
- package/src/modules/Settings/ContentTypes/DataPacks/Config/Form/TemplateConfig/TemplateEditor/Editor/ConfigPanel/IntegrationsField/index.tsx +1 -1
- package/src/modules/Settings/ContentTypes/DataPacks/Config/Form/TemplateConfig/TemplateEditor/Editor/ConfigPanel/index.tsx +1 -1
- package/src/modules/Settings/ContentTypes/DataPacks/Config/Form/TemplateConfig/TemplateEditor/Editor/TemplateBrowser/index.tsx +1 -1
- package/src/modules/Settings/ContentTypes/DataPacks/Config/Form/TemplateConfig/TemplateEditor/index.tsx +1 -1
- package/src/modules/Settings/ContentTypes/DataPacks/Config/Form/TemplateConfig/index.tsx +2 -2
- package/src/modules/Settings/ContentTypes/DataPacks/Item/index.tsx +3 -2
- package/src/modules/Settings/ContentTypes/DataPacks/List/index.tsx +2 -2
- package/src/modules/Settings/ContentTypes/DataPacks/Nav/index.tsx +1 -1
- package/src/modules/Settings/Globals/NavigationModules/SideModal/index.tsx +1 -1
- package/src/modules/Settings/Globals/NavigationModules/index.tsx +1 -1
- package/src/modules/Settings/Globals/constants.tsx +1 -1
- package/src/modules/Settings/Integrations/BulkHeader/TableHeader/index.tsx +1 -1
- package/src/modules/Settings/Integrations/IntegrationForm/VariableItem/index.tsx +1 -1
- package/src/modules/Settings/Integrations/IntegrationForm/VariablePanel/index.tsx +1 -1
- package/src/modules/Settings/Integrations/IntegrationForm/index.tsx +2 -2
- package/src/modules/Settings/Integrations/IntegrationItem/style.tsx +1 -1
- package/src/modules/Settings/Integrations/hooks.tsx +1 -1
- package/src/modules/Settings/Integrations/index.tsx +0 -1
- package/src/modules/Settings/Integrations/utils.tsx +1 -1
- package/src/modules/Settings/Languages/LanguagePanel/Form/ConnectedField/index.tsx +1 -1
- package/src/modules/Settings/Languages/LanguagePanel/Form/index.tsx +1 -1
- package/src/modules/Settings/Languages/LanguagePanel/index.tsx +1 -1
- package/src/modules/Settings/Languages/Table/Header/index.tsx +1 -1
- package/src/modules/Settings/Languages/Table/Item/index.tsx +1 -1
- package/src/modules/Settings/Languages/Table/index.tsx +1 -1
- package/src/modules/Settings/Languages/index.tsx +1 -1
- package/src/modules/Settings/SeoAnalyticsSettings/Analytics/atoms.tsx +2 -2
- package/src/modules/Settings/index.tsx +1 -1
- package/src/modules/Sites/SitesList/ListView/ListSiteItem/index.tsx +7 -1
- package/src/modules/StructuredData/StructuredDataList/ContentFilters/utils.tsx +1 -1
- package/src/modules/StructuredData/StructuredDataList/GlobalPageItem/index.tsx +6 -1
- package/src/modules/StructuredData/StructuredDataList/GlobalPageItem/utils.tsx +1 -1
- package/src/modules/StructuredData/StructuredDataList/StructuredDataItem/index.tsx +16 -2
- package/src/modules/StructuredData/StructuredDataList/hooks.tsx +1 -1
- package/src/modules/Users/Roles/BulkHeader/TableHeader/index.tsx +1 -1
- package/src/modules/Users/Roles/SideModal/index.tsx +1 -1
- package/src/modules/Users/Roles/hooks.tsx +1 -1
- package/src/modules/Users/UserCreate/OptionItem/index.tsx +1 -1
- package/src/modules/Users/UserCreate/SiteItem/RolesModal/index.tsx +1 -1
- package/src/modules/Users/UserCreate/SiteItem/style.tsx +13 -1
- package/src/modules/Users/UserList/UserItem/index.tsx +10 -1
- package/src/modules/Users/UserList/hooks.tsx +1 -1
- package/tsconfig.json +11 -4
- package/tsconfig.paths.json +19 -20
package/src/forms/validators.tsx
CHANGED
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
} from "@ax/helpers";
|
|
18
18
|
|
|
19
19
|
import { findByEditorID } from "@ax/forms";
|
|
20
|
-
import { IErrorItem, ISchemaField, ITemplate } from "@ax/types";
|
|
20
|
+
import type { IErrorItem, ISchemaField, ITemplate } from "@ax/types";
|
|
21
21
|
import { ERRORS } from "./errors";
|
|
22
22
|
|
|
23
23
|
const VALIDATORS = {
|
|
@@ -3,7 +3,7 @@ import { createPortal } from "react-dom";
|
|
|
3
3
|
import { connect } from "react-redux";
|
|
4
4
|
|
|
5
5
|
import { appActions } from "@ax/containers/App";
|
|
6
|
-
import { IRootState } from "@ax/types";
|
|
6
|
+
import type { IRootState } from "@ax/types";
|
|
7
7
|
import { Notification } from "@ax/components";
|
|
8
8
|
|
|
9
9
|
const blockingErrors: any[] = [];
|
package/src/helpers/dates.tsx
CHANGED
|
@@ -6,7 +6,7 @@ const formatString = "dd/MM/yyyy";
|
|
|
6
6
|
const dateToString = (date: Date, formatDate = formatString): string => format(new Date(date), formatDate);
|
|
7
7
|
|
|
8
8
|
const stringToDate = (value: string): Date => {
|
|
9
|
-
const regEx = /^[0-9]{4}[
|
|
9
|
+
const regEx = /^[0-9]{4}[/][0-9]{2}[/][0-9]{2}$/g;
|
|
10
10
|
const isInversed = regEx.test(value);
|
|
11
11
|
const formatDate = isInversed ? "yyyy/MM/dd" : "dd/MM/yyyy";
|
|
12
12
|
|
|
@@ -14,8 +14,8 @@ const stringToDate = (value: string): Date => {
|
|
|
14
14
|
};
|
|
15
15
|
|
|
16
16
|
const isValidDate = (value: string): boolean => {
|
|
17
|
-
const regEx = /^[0-9]{4}[
|
|
18
|
-
const regEx2 = /^[0-9]{2}[
|
|
17
|
+
const regEx = /^[0-9]{4}[/][0-9]{2}[/][0-9]{2}$/g;
|
|
18
|
+
const regEx2 = /^[0-9]{2}[/][0-9]{2}[/][0-9]{4}$/g;
|
|
19
19
|
|
|
20
20
|
if (regEx.test(value) || regEx2.test(value)) {
|
|
21
21
|
const date = stringToDate(value);
|
package/src/helpers/files.tsx
CHANGED
|
@@ -209,7 +209,7 @@ const parseShadows = (theme) => {
|
|
|
209
209
|
const parseMediaqueries = (theme) => {
|
|
210
210
|
try {
|
|
211
211
|
const mediaqueries = theme.mediaquery.mediaqueries;
|
|
212
|
-
|
|
212
|
+
const mqObject = {};
|
|
213
213
|
mediaqueries.forEach((mq) => {
|
|
214
214
|
if (mq.label !== "default") {
|
|
215
215
|
const minWidth = mq.minWidth ? `and (min-width: ${mq.minWidth})` : "";
|
|
@@ -267,7 +267,7 @@ export const parseTextStyles = (theme) => {
|
|
|
267
267
|
const textStyles = theme.textStyle.textStyles;
|
|
268
268
|
|
|
269
269
|
// fontRes
|
|
270
|
-
|
|
270
|
+
const textStyleObject = {};
|
|
271
271
|
textStyles.forEach((style) => {
|
|
272
272
|
let FONTSIZE = getUnitValue(style.fontSize);
|
|
273
273
|
let CROPTOP = style.croptop !== undefined ? style.croptop : 0;
|
package/src/helpers/strings.tsx
CHANGED
|
@@ -41,7 +41,7 @@ const capitalize = (s: string): string => {
|
|
|
41
41
|
const getInitials = (name?: string): string => {
|
|
42
42
|
if (!name) return "";
|
|
43
43
|
|
|
44
|
-
const rgx =
|
|
44
|
+
const rgx = /(\p{L}{1})\p{L}+/gu;
|
|
45
45
|
const words: string[] = name.match(rgx) || [];
|
|
46
46
|
const initials = words.reduce((previous: string[], current: string) => [...previous, current[0]], []);
|
|
47
47
|
return initials.join("").slice(0, 2).toUpperCase();
|
package/src/hooks/content.tsx
CHANGED
package/src/hooks/index.tsx
CHANGED
|
@@ -13,7 +13,13 @@ import { useURLSearchParam } from "./location";
|
|
|
13
13
|
import { useContextMenu, useHandleClickOutside, useModal, useModals, useToast } from "./modals";
|
|
14
14
|
import { useNetworkStatus } from "./network";
|
|
15
15
|
import { useResizable } from "./resize";
|
|
16
|
-
import {
|
|
16
|
+
import {
|
|
17
|
+
useGlobalPermission,
|
|
18
|
+
usePermission,
|
|
19
|
+
usePermissions,
|
|
20
|
+
usePermissionsForPage,
|
|
21
|
+
usePermissionsForSite,
|
|
22
|
+
} from "./users";
|
|
17
23
|
import { useFirefoxScrollLock, useWindowSize } from "./window";
|
|
18
24
|
|
|
19
25
|
export {
|
package/src/hooks/users.tsx
CHANGED
|
@@ -241,9 +241,7 @@ const usePermissionsForPage = <T extends Record<string, string | string[]>>(
|
|
|
241
241
|
|
|
242
242
|
// Check if user has access via originalGlobalPage inheritance
|
|
243
243
|
if (originalGlobalPage !== undefined && currentUser.pagePermissions?.length) {
|
|
244
|
-
const globalSiteEntry = currentUser.pagePermissions.find(
|
|
245
|
-
(entry) => entry.siteId === "global",
|
|
246
|
-
);
|
|
244
|
+
const globalSiteEntry = currentUser.pagePermissions.find((entry) => entry.siteId === "global");
|
|
247
245
|
hasPermissionBypass = globalSiteEntry?.pageIds.includes(originalGlobalPage) ?? false;
|
|
248
246
|
}
|
|
249
247
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import React from "react";
|
|
1
|
+
import type React from "react";
|
|
2
2
|
import { format } from "date-fns";
|
|
3
3
|
|
|
4
|
-
import { LogActivityDTO } from "@griddo/api-types";
|
|
4
|
+
import type { LogActivityDTO } from "@griddo/api-types";
|
|
5
5
|
|
|
6
|
-
import { IModal } from "@ax/types";
|
|
6
|
+
import type { IModal } from "@ax/types";
|
|
7
7
|
import { Button, Modal } from "@ax/components";
|
|
8
8
|
import { eventKey } from "../constants";
|
|
9
9
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import React from "react";
|
|
1
|
+
import type React from "react";
|
|
2
2
|
|
|
3
|
-
import { IModal } from "@ax/types";
|
|
3
|
+
import type { IModal } from "@ax/types";
|
|
4
4
|
import { FieldsBehavior, Modal } from "@ax/components";
|
|
5
|
-
import { IDownloadFormState } from "..";
|
|
5
|
+
import type { IDownloadFormState } from "..";
|
|
6
6
|
|
|
7
7
|
import * as S from "./style";
|
|
8
8
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React, { useEffect, useState } from "react";
|
|
2
2
|
|
|
3
3
|
import { CheckGroupFilter } from "@ax/components";
|
|
4
|
-
import { IQueryValue } from "@ax/types";
|
|
4
|
+
import type { IQueryValue } from "@ax/types";
|
|
5
5
|
import { isReqOk } from "@ax/helpers";
|
|
6
6
|
import { schemas } from "@ax/api";
|
|
7
7
|
|
|
@@ -3,7 +3,7 @@ import React, { useEffect, useState } from "react";
|
|
|
3
3
|
import { CheckGroupFilter } from "@ax/components";
|
|
4
4
|
import { isReqOk } from "@ax/helpers";
|
|
5
5
|
import { logs } from "@ax/api";
|
|
6
|
-
import { IQueryValue } from "@ax/types";
|
|
6
|
+
import type { IQueryValue } from "@ax/types";
|
|
7
7
|
|
|
8
8
|
const EventFilter = (props: IEventFilterProps): JSX.Element => {
|
|
9
9
|
const { filterItems, value } = props;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { SiteFilter } from "@ax/components";
|
|
3
|
-
import { IQueryValue } from "@ax/types";
|
|
3
|
+
import type { IQueryValue } from "@ax/types";
|
|
4
4
|
|
|
5
5
|
import UserFilter from "../LogFilters/UserFilter";
|
|
6
6
|
import EventFilter from "../LogFilters/EventFilter";
|
|
@@ -2,8 +2,8 @@ import React, { useCallback, useEffect, useRef, useState } from "react";
|
|
|
2
2
|
import { connect } from "react-redux";
|
|
3
3
|
import { format, subDays } from "date-fns";
|
|
4
4
|
|
|
5
|
-
import { LogActivityExportRequest, LogActivityPaginationRequest } from "@griddo/api-types";
|
|
6
|
-
import { ILogItemsByDay, ILogItemsByUser, IQueryValue, IRootState, IStructuredData } from "@ax/types";
|
|
5
|
+
import type { LogActivityExportRequest, LogActivityPaginationRequest } from "@griddo/api-types";
|
|
6
|
+
import type { ILogItemsByDay, ILogItemsByUser, IQueryValue, IRootState, IStructuredData } from "@ax/types";
|
|
7
7
|
import { EmptyState, ErrorToast, FilterTagsBar, MainWrapper, SearchTagsBar, Select, TableList } from "@ax/components";
|
|
8
8
|
import { activityLogActions } from "@ax/containers/ActivityLog";
|
|
9
9
|
import { structuredDataActions } from "@ax/containers/StructuredData";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { pages, structuredData } from "@ax/api";
|
|
2
2
|
import { isReqOk } from "@ax/helpers";
|
|
3
|
-
import { IPage, IStructuredDataContent } from "@ax/types";
|
|
3
|
+
import type { IPage, IStructuredDataContent } from "@ax/types";
|
|
4
4
|
|
|
5
5
|
const getPageSchemaVersion = async (id: number) => {
|
|
6
6
|
try {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { useEffect, useState } from "react";
|
|
2
2
|
|
|
3
|
-
import { IDimension } from "@ax/types";
|
|
3
|
+
import type { IDimension } from "@ax/types";
|
|
4
4
|
import { FloatingPanel, Button, FieldsBehavior, NoteField } from "@ax/components";
|
|
5
5
|
import { splitAndJoin } from "@ax/helpers";
|
|
6
6
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React, { useEffect, useState } from "react";
|
|
2
2
|
import { connect } from "react-redux";
|
|
3
3
|
|
|
4
|
-
import { IAnalytics, IDimension, IDimensionsGroup, IRootState } from "@ax/types";
|
|
4
|
+
import type { IAnalytics, IDimension, IDimensionsGroup, IRootState } from "@ax/types";
|
|
5
5
|
import { appActions } from "@ax/containers/App";
|
|
6
6
|
import { analyticsActions } from "@ax/containers/Analytics";
|
|
7
7
|
import { MainWrapper, ErrorToast, Loading, FieldsBehavior } from "@ax/components";
|
|
@@ -2,7 +2,7 @@ import React from "react";
|
|
|
2
2
|
import { Route, Redirect } from "react-router-dom";
|
|
3
3
|
|
|
4
4
|
import { usePermission } from "@ax/hooks";
|
|
5
|
-
import { IUser } from "@ax/types";
|
|
5
|
+
import type { IUser } from "@ax/types";
|
|
6
6
|
import { ErrorPage } from "@ax/components";
|
|
7
7
|
|
|
8
8
|
const PrivateRoute = (props: IProps): JSX.Element => {
|
|
@@ -2,7 +2,7 @@ import React from "react";
|
|
|
2
2
|
import { connect } from "react-redux";
|
|
3
3
|
import { ErrorBoundary } from "react-error-boundary";
|
|
4
4
|
|
|
5
|
-
import { IRootState } from "@ax/types";
|
|
5
|
+
import type { IRootState } from "@ax/types";
|
|
6
6
|
import { ErrorPage, Loading } from "@ax/components";
|
|
7
7
|
|
|
8
8
|
import Routing from "./Routing";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React, { useState } from "react";
|
|
2
2
|
import { NavLink } from "react-router-dom";
|
|
3
3
|
|
|
4
|
-
import { IDataPack, IStructuredData } from "@ax/types";
|
|
4
|
+
import type { IDataPack, IStructuredData } from "@ax/types";
|
|
5
5
|
import { Icon, MenuItem } from "@ax/components";
|
|
6
6
|
|
|
7
7
|
import * as S from "./style";
|
|
@@ -2,7 +2,7 @@ import React from "react";
|
|
|
2
2
|
|
|
3
3
|
import { FieldsBehavior } from "@ax/components";
|
|
4
4
|
import { slugify } from "@ax/helpers";
|
|
5
|
-
import { IFormState } from "..";
|
|
5
|
+
import type { IFormState } from "..";
|
|
6
6
|
|
|
7
7
|
const Form = (props: IFormProps): JSX.Element => {
|
|
8
8
|
const { edit, form, isTranslation, setForm } = props;
|
|
@@ -53,14 +53,7 @@ interface IDeleteGroupModal extends IDeleteModal {
|
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
const DeleteGroupModal = (props: IDeleteGroupModal): JSX.Element => {
|
|
56
|
-
const {
|
|
57
|
-
isOpen,
|
|
58
|
-
toggleModal,
|
|
59
|
-
onDelete,
|
|
60
|
-
isLoading = false,
|
|
61
|
-
deleteGroupCategories,
|
|
62
|
-
setDeleteGroupCategories,
|
|
63
|
-
} = props;
|
|
56
|
+
const { isOpen, toggleModal, onDelete, isLoading = false, deleteGroupCategories, setDeleteGroupCategories } = props;
|
|
64
57
|
|
|
65
58
|
const mainModalAction = {
|
|
66
59
|
title: isLoading ? "deleting" : "delete",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import { IContentFilter, IDynamicFilter, IStructuredData } from "@ax/types";
|
|
2
|
+
import type { IContentFilter, IDynamicFilter, IStructuredData } from "@ax/types";
|
|
3
3
|
|
|
4
4
|
const getDynamicFilters = (values: IStructuredData[]): IDynamicFilter[] =>
|
|
5
5
|
values &&
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React, { useEffect, useState } from "react";
|
|
2
2
|
import { FloatingMenu, Icon, ListTitle, CheckGroup } from "@ax/components";
|
|
3
3
|
import { areEquals } from "@ax/helpers";
|
|
4
|
-
import { IFilterValue, IQueryValue } from "@ax/types";
|
|
4
|
+
import type { IFilterValue, IQueryValue } from "@ax/types";
|
|
5
5
|
|
|
6
6
|
import * as S from "./style";
|
|
7
7
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import React
|
|
2
|
-
import {
|
|
1
|
+
import type React from "react";
|
|
2
|
+
import { useState } from "react";
|
|
3
|
+
import type { IFileUseItem } from "@ax/types";
|
|
3
4
|
import Item from "../Item";
|
|
4
5
|
|
|
5
6
|
import * as S from "./style";
|
|
@@ -4,8 +4,8 @@ import { appActions } from "@ax/containers/App";
|
|
|
4
4
|
import { pageEditorActions } from "@ax/containers/PageEditor";
|
|
5
5
|
import { sitesActions } from "@ax/containers/Sites";
|
|
6
6
|
import { structuredDataActions } from "@ax/containers/StructuredData";
|
|
7
|
-
import { ISetCurrentPageIDAction } from "@ax/containers/PageEditor/interfaces";
|
|
8
|
-
import { IFile, IFileUseItem, IFileUsePages, IRootState } from "@ax/types";
|
|
7
|
+
import type { ISetCurrentPageIDAction } from "@ax/containers/PageEditor/interfaces";
|
|
8
|
+
import type { IFile, IFileUseItem, IFileUsePages, IRootState } from "@ax/types";
|
|
9
9
|
import Item from "./Item";
|
|
10
10
|
import ItemGroup from "./ItemGroup";
|
|
11
11
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import type React from "react";
|
|
2
|
+
import { useState } from "react";
|
|
2
3
|
import MenuList from "../MenuList";
|
|
3
|
-
import { IFolderTree } from "@ax/types";
|
|
4
|
+
import type { IFolderTree } from "@ax/types";
|
|
4
5
|
import { Icon } from "@ax/components";
|
|
5
6
|
import { trimText } from "@ax/helpers";
|
|
6
7
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import styled from "styled-components";
|
|
2
|
-
import { CSS, Transform } from "@dnd-kit/utilities";
|
|
2
|
+
import { CSS, type Transform } from "@dnd-kit/utilities";
|
|
3
3
|
|
|
4
4
|
import { Cell, Row } from "@ax/components/TableList/TableItem/style";
|
|
5
5
|
import { ActionMenu } from "@ax/components";
|
|
@@ -2,7 +2,7 @@ import React from "react";
|
|
|
2
2
|
|
|
3
3
|
import { FieldsBehavior } from "@ax/components";
|
|
4
4
|
import { slugify } from "@ax/helpers";
|
|
5
|
-
import { IFormState } from "..";
|
|
5
|
+
import type { IFormState } from "..";
|
|
6
6
|
|
|
7
7
|
const Form = (props: IFormProps): JSX.Element => {
|
|
8
8
|
const { edit, form, setForm } = props;
|
|
@@ -2,7 +2,7 @@ import React, { useState } from "react";
|
|
|
2
2
|
import { connect } from "react-redux";
|
|
3
3
|
|
|
4
4
|
import { formsActions } from "@ax/containers/Forms";
|
|
5
|
-
import { FormCategory } from "@ax/types";
|
|
5
|
+
import type { FormCategory } from "@ax/types";
|
|
6
6
|
import { Button, FloatingPanel } from "@ax/components";
|
|
7
7
|
import Form from "./Form";
|
|
8
8
|
|
package/src/modules/Forms/FormEditor/Editor/FormConfigPanel/Form/ConnectedField/Field/index.tsx
CHANGED
|
@@ -2,7 +2,7 @@ import React from "react";
|
|
|
2
2
|
|
|
3
3
|
import { getInnerFields } from "@ax/forms";
|
|
4
4
|
import { FieldContainer, FieldGroup } from "@ax/components";
|
|
5
|
-
import { IErrorItem, IPage, ISite, ILanguage } from "@ax/types";
|
|
5
|
+
import type { IErrorItem, IPage, ISite, ILanguage } from "@ax/types";
|
|
6
6
|
|
|
7
7
|
const Field = (props: IFieldProps): JSX.Element => {
|
|
8
8
|
const {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import type React from "react";
|
|
2
|
+
import { memo, useCallback, useEffect, useState } from "react";
|
|
2
3
|
|
|
3
|
-
import { IBreadcrumbItem, ISchema } from "@ax/types";
|
|
4
|
+
import type { IBreadcrumbItem, ISchema } from "@ax/types";
|
|
4
5
|
import { Breadcrumb, Toast } from "@ax/components";
|
|
5
6
|
import { useToast } from "@ax/hooks";
|
|
6
7
|
|
|
@@ -2,7 +2,7 @@ import React, { useEffect, useRef, useState } from "react";
|
|
|
2
2
|
|
|
3
3
|
import { isEmptyObj } from "@ax/helpers";
|
|
4
4
|
import { Loading } from "@ax/components";
|
|
5
|
-
import { IBreadcrumbItem, IErrorItem, ISchema } from "@ax/types";
|
|
5
|
+
import type { IBreadcrumbItem, IErrorItem, ISchema } from "@ax/types";
|
|
6
6
|
|
|
7
7
|
import Form from "./Form";
|
|
8
8
|
import Header from "./Header";
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import type React from "react";
|
|
2
|
+
import { useEffect, useState } from "react";
|
|
2
3
|
import { connect } from "react-redux";
|
|
3
4
|
import { ResizePanel } from "@ax/components";
|
|
4
|
-
import { IBreadcrumbItem, IErrorItem, IModule, INotification, IRootState, ISchema, ISchemaField } from "@ax/types";
|
|
5
|
+
import type { IBreadcrumbItem, IErrorItem, IModule, INotification, IRootState, ISchema, ISchemaField } from "@ax/types";
|
|
5
6
|
import { formsActions } from "@ax/containers/Forms";
|
|
6
7
|
import { getFormTemplate } from "@ax/helpers";
|
|
7
8
|
import PageBrowser from "../PageBrowser";
|
|
@@ -262,7 +262,13 @@ const FormItem = (props: IFormItemProps): JSX.Element => {
|
|
|
262
262
|
|
|
263
263
|
return (
|
|
264
264
|
<>
|
|
265
|
-
<S.FormRow
|
|
265
|
+
<S.FormRow
|
|
266
|
+
role="rowgroup"
|
|
267
|
+
selected={isSelected}
|
|
268
|
+
onClick={handleClick}
|
|
269
|
+
onContextMenu={handleContextMenu}
|
|
270
|
+
clickable={isAllowedTo.editForms}
|
|
271
|
+
>
|
|
266
272
|
<S.CheckCell role="cell" onClick={handleCheckClick}>
|
|
267
273
|
<CheckField name={`form-${id}`} value={id} checked={isSelected || hoverCheck} onChange={handleOnChange} />
|
|
268
274
|
</S.CheckCell>
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import type React from "react";
|
|
2
|
+
import { useState } from "react";
|
|
2
3
|
|
|
3
|
-
import { IModal, ISchema } from "@ax/types";
|
|
4
|
+
import type { IModal, ISchema } from "@ax/types";
|
|
4
5
|
import { EmptyState, Modal, SearchField, Select } from "@ax/components";
|
|
5
6
|
import { getFormTemplateCategories, getFormTemplateThumbnailProps } from "@ax/helpers";
|
|
6
7
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { navigation, pages, sites } from "@ax/api";
|
|
2
2
|
import { getStructuredDataTitle, isReqOk } from "@ax/helpers";
|
|
3
|
-
import { IFilterValue, IGetPagesParams, INavigation, IPage, ISite } from "@ax/types";
|
|
3
|
+
import type { IFilterValue, IGetPagesParams, INavigation, IPage, ISite } from "@ax/types";
|
|
4
4
|
|
|
5
5
|
const getSite = async (siteID: number) => {
|
|
6
6
|
try {
|
|
@@ -9,7 +9,7 @@ import { getSchemaFormCategories } from "@ax/helpers";
|
|
|
9
9
|
import MenuGroup from "./MenuGroup";
|
|
10
10
|
|
|
11
11
|
import * as S from "./style";
|
|
12
|
-
import { IRootState, ISite } from "@ax/types";
|
|
12
|
+
import type { IRootState, ISite } from "@ax/types";
|
|
13
13
|
|
|
14
14
|
const FormsMenu = (props: IProps): JSX.Element => {
|
|
15
15
|
const { selected, currentSiteInfo, setHistoryPush } = props;
|
|
@@ -71,7 +71,11 @@ const UnPublishModal = (props: IUnpublishModal): JSX.Element => {
|
|
|
71
71
|
|
|
72
72
|
const formTitle = title ? <strong>{title}</strong> : "this form";
|
|
73
73
|
|
|
74
|
-
const mainAction = {
|
|
74
|
+
const mainAction = {
|
|
75
|
+
title: isUnpublishing ? "Unpublishing" : "Unpublish form",
|
|
76
|
+
onClick: onUnpublish,
|
|
77
|
+
disabled: isUnpublishing,
|
|
78
|
+
};
|
|
75
79
|
const secondaryAction = { title: "Cancel", onClick: toggleModal };
|
|
76
80
|
|
|
77
81
|
return (
|