@griddo/ax 11.10.11-rc.0 → 11.10.11
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 +56 -3
- package/config/env.js +56 -56
- package/config/getHttpsConfig.js +32 -32
- package/config/griddo-config/cx-polyfills/builder.ssr.js +1 -2
- package/config/griddo-config/index.js +71 -71
- package/config/griddo-config/ssrHelpers.js +21 -23
- package/config/jest/componentsMock.js +1633 -1633
- package/config/jest/cssTransform.js +7 -7
- package/config/jest/fileMock.js +1 -1
- package/config/jest/fileTransform.js +13 -13
- package/config/jest/setup.js +9 -9
- package/config/jest/test-utils.js +11 -11
- package/config/modules.js +94 -92
- package/config/paths.js +73 -73
- package/config/pnpTs.js +8 -8
- package/config/webpack/persistentCache/createEnvironmentHash.js +3 -3
- package/config/webpack.config.js +624 -624
- package/config/webpackDevServer.config.js +111 -111
- package/config/webpackSchemas.config.js +50 -50
- package/package.json +219 -227
- package/public/fonts/fonts.css +216 -168
- package/public/manifest.json +6 -6
- package/scripts/build.js +114 -114
- package/scripts/griddo-sync-schemas.js +115 -115
- package/scripts/griddo.js +24 -24
- package/scripts/start.js +73 -73
- package/src/GlobalStore.tsx +62 -62
- package/src/Style/index.tsx +11 -8
- package/src/__mocks__/axios/ReferenceField.ts +455 -455
- package/src/__mocks__/axios/Roles.ts +6 -7
- package/src/__mocks__/axios/SitesList.ts +107 -107
- package/src/__mocks__/axios/SitesListCategories.ts +22 -22
- package/src/__mocks__/axios/SitesListDataPack.ts +148 -168
- package/src/__mocks__/axios/SitesListOptions.ts +15 -15
- package/src/__mocks__/axios/UserList.ts +525 -525
- package/src/__mocks__/mockedAxios.ts +2203 -2203
- package/src/__mocks__/reducers/structuredData.tsx +4 -5
- package/src/__mocks__/store/GenericStore.ts +26 -26
- package/src/__mocks__/store/ReferenceField.ts +1663 -1663
- package/src/__mocks__/store/Roles.ts +1045 -1045
- package/src/__mocks__/store/SitesList.ts +733 -733
- package/src/__mocks__/store/UserList.ts +468 -468
- package/src/__mocks__/store/UsersCreate.ts +287 -287
- package/src/__tests__/components/ActionMenu/ActionMenu.test.tsx +230 -230
- package/src/__tests__/components/Avatar/Avatar.test.tsx +107 -107
- package/src/__tests__/components/Breadcrumb/Breadcrumb.test.tsx +83 -83
- package/src/__tests__/components/Browser/Browser.test.tsx +174 -174
- package/src/__tests__/components/BulkSelectionOptions/BulkSelectionOptions.test.tsx +147 -147
- package/src/__tests__/components/CategoryCell/CategoryCell.test.tsx +40 -40
- package/src/__tests__/components/ConfigPanel/ConfigPanel.test.tsx +206 -206
- package/src/__tests__/components/ConfigPanel/Form/ConnectedField/ConnectedField.test.tsx +147 -147
- package/src/__tests__/components/ConfigPanel/Form/ConnectedField/NavConnectedField/NavConnectedField.test.tsx +134 -134
- package/src/__tests__/components/ConfigPanel/Form/ConnectedField/PageConnectedField/Field/Field.test.tsx +92 -92
- package/src/__tests__/components/ConfigPanel/Form/ConnectedField/PageConnectedField/PageConnectedField.test.tsx +360 -360
- package/src/__tests__/components/ConfigPanel/Form/ConnectedField/PageConnectedField/TemplateManager/TemplateManager.test.tsx +121 -121
- package/src/__tests__/components/ConfigPanel/Form/Form.test.tsx +198 -198
- package/src/__tests__/components/ConfigPanel/GlobalPageForm/GlobalPageForm.test.tsx +198 -198
- package/src/__tests__/components/ConfigPanel/Header/Header.test.tsx +115 -115
- package/src/__tests__/components/ConfigPanel/NavigationForm/Field/Field.test.tsx +174 -174
- package/src/__tests__/components/ConfigPanel/NavigationForm/NavigationForm.test.tsx +66 -66
- package/src/__tests__/components/ConfigPanel/PreviewForm/PreviewForm.test.tsx +62 -62
- package/src/__tests__/components/DragAndDrop/DragAndDrop.test.tsx +68 -68
- package/src/__tests__/components/ElementsTooltip/ElementsTooltip.test.tsx +79 -79
- package/src/__tests__/components/EmptyState/EmptyState.test.tsx +49 -49
- package/src/__tests__/components/ErrorCenter/ErrorCenter.test.tsx +164 -164
- package/src/__tests__/components/ErrorToast/ErrorToast.test.tsx +42 -42
- package/src/__tests__/components/FieldContainer/FieldContainer.test.tsx +57 -57
- package/src/__tests__/components/Fields/AnalyticsField/AnalyticsField.test.tsx +64 -64
- package/src/__tests__/components/Fields/AnalyticsField/PageAnalytics/PageAnalytics.test.tsx +171 -171
- package/src/__tests__/components/Fields/AnalyticsField/StructuredDataAnalytics/StructuredDataAnalytics.test.tsx +105 -105
- package/src/__tests__/components/Fields/ArrayFieldGroup/ArrayFieldGroup.test.tsx +238 -238
- package/src/__tests__/components/Fields/AsyncCheckGroup/AsyncCheckGroup.test.tsx +89 -87
- package/src/__tests__/components/Fields/AsyncSelect/AsyncSelect.test.tsx +238 -238
- package/src/__tests__/components/Fields/Button/Button.test.tsx +100 -100
- package/src/__tests__/components/Fields/CheckField/CheckField.test.tsx +138 -138
- package/src/__tests__/components/Fields/CheckGroup/CheckGroup.test.tsx +331 -331
- package/src/__tests__/components/Fields/ColorPicker/ColorPicker.test.tsx +170 -171
- package/src/__tests__/components/Fields/ComponentArray/ComponentArray.test.tsx +111 -111
- package/src/__tests__/components/Fields/ComponentArray/MixableComponentArray/MixableComponentArray.test.tsx +248 -248
- package/src/__tests__/components/Fields/ComponentArray/MixableComponentArray/PasteModuleButton/PasteModuleButton.test.tsx +84 -84
- package/src/__tests__/components/Fields/ComponentArray/SameComponentArray/SameComponentArray.test.tsx +164 -164
- package/src/__tests__/components/Fields/ComponentContainer/ComponentContainer.test.tsx +480 -480
- package/src/__tests__/components/Fields/ConditionalField/ConditionalField.test.tsx +67 -67
- package/src/__tests__/components/Fields/DateField/DateField.test.tsx +49 -49
- package/src/__tests__/components/Fields/FieldGroup/FieldGroup.test.tsx +46 -46
- package/src/__tests__/components/Fields/FieldsDivider/FieldsDivider.test.tsx +10 -10
- package/src/__tests__/components/Fields/FileField/FileField.test.tsx +96 -96
- package/src/__tests__/components/Fields/HeadingField/HeadingField.test.tsx +54 -54
- package/src/__tests__/components/Fields/HiddenField/HiddenField.test.tsx +43 -43
- package/src/__tests__/components/Fields/ImageField/ImageField.test.tsx +450 -450
- package/src/__tests__/components/Fields/IntegrationsField/IntegrationsField.test.tsx +412 -412
- package/src/__tests__/components/Fields/MultiCheckSelect/MultiCheckSelect.test.tsx +36 -36
- package/src/__tests__/components/Fields/MultiCheckSelectGroup/MultiCheckSelectGroup.test.tsx +100 -100
- package/src/__tests__/components/Fields/NoteField/NoteField.test.tsx +36 -36
- package/src/__tests__/components/Fields/NumberField/NumberField.test.tsx +87 -87
- package/src/__tests__/components/Fields/RadioField/RadioField.test.tsx +79 -79
- package/src/__tests__/components/Fields/ReferenceField/ReferenceField.test.tsx +404 -406
- package/src/__tests__/components/Fields/RichText/RichText.test.tsx +20 -20
- package/src/__tests__/components/Fields/Select/Select.test.tsx +38 -38
- package/src/__tests__/components/Fields/SliderField/SliderField.test.tsx +45 -45
- package/src/__tests__/components/Fields/SummaryButton/SummaryButton.test.tsx +35 -35
- package/src/__tests__/components/Fields/TagField/TagField.test.tsx +119 -119
- package/src/__tests__/components/Fields/TextArea/TextArea.test.tsx +45 -45
- package/src/__tests__/components/Fields/TextField/TextField.test.tsx +126 -126
- package/src/__tests__/components/Fields/TimeField/HourInput/HourInput.test.tsx +121 -121
- package/src/__tests__/components/Fields/TimeField/TimeField.test.tsx +80 -80
- package/src/__tests__/components/Fields/ToggleField/ToggleField.test.tsx +107 -107
- package/src/__tests__/components/Fields/Tooltip/Tooltip.test.tsx +129 -129
- package/src/__tests__/components/Fields/TranslateButton/TranslateButton.test.tsx +215 -215
- package/src/__tests__/components/Fields/UniqueCheck/UniqueCheck.test.tsx +24 -24
- package/src/__tests__/components/Fields/UrlField/UrlField.test.tsx +395 -395
- package/src/__tests__/components/Fields/VisualUniqueSelection/ImageSelection/ImageSelection.test.tsx +60 -60
- package/src/__tests__/components/Fields/VisualUniqueSelection/ScrollableSelection/ScrollableSelection.test.tsx +125 -125
- package/src/__tests__/components/Fields/VisualUniqueSelection/VisualUniqueSelection.test.tsx +30 -30
- package/src/__tests__/components/Fields/Wysiwyg/Wysiwyg.test.tsx +98 -98
- package/src/__tests__/components/FieldsBehavior/FieldsBehavior.test.tsx +135 -135
- package/src/__tests__/components/Flag/Flag.test.tsx +46 -46
- package/src/__tests__/components/FloatingMenu/FloatingMenu.test.tsx +693 -693
- package/src/__tests__/components/FloatingPanel/FloatingPanel.test.tsx +132 -132
- package/src/__tests__/components/GuardModal/GuardModal.test.tsx +12 -12
- package/src/__tests__/components/Icon/Icon.test.tsx +51 -51
- package/src/__tests__/components/IconAction/IconAction.test.tsx +74 -74
- package/src/__tests__/components/Image/Image.test.tsx +27 -27
- package/src/__tests__/components/InformativeMenu/InformativeMenu.test.tsx +70 -70
- package/src/__tests__/components/LanguageMenu/LanguageMenu.test.tsx +196 -196
- package/src/__tests__/components/Lists/Lists.test.tsx +40 -40
- package/src/__tests__/components/Loader/Loader.test.tsx +41 -41
- package/src/__tests__/components/Loading/Loading.test.tsx +9 -9
- package/src/__tests__/components/Login/Login.test.tsx +223 -223
- package/src/__tests__/components/Login/RecoveryModal/RecoveryModal.test.tsx +160 -160
- package/src/__tests__/components/MainWrapper/AppBar/AppBar.test.tsx +503 -503
- package/src/__tests__/components/MainWrapper/MainWrapper.test.tsx +122 -122
- package/src/__tests__/components/MenuItem/MenuItem.test.tsx +123 -123
- package/src/__tests__/components/Modal/Modal.test.tsx +294 -294
- package/src/__tests__/components/Nav/Nav.test.tsx +41 -41
- package/src/__tests__/components/Notification/Notification.test.tsx +186 -186
- package/src/__tests__/components/Notification/SubNotification/Subnotification.test.tsx +32 -32
- package/src/__tests__/components/Pagination/Pagination.test.tsx +222 -222
- package/src/__tests__/components/ProgressBar/ProgressBar.test.tsx +12 -12
- package/src/__tests__/components/ReorderArrows/ReorderArrows.test.tsx +67 -67
- package/src/__tests__/components/ResizePanel/ResizePanel.test.tsx +135 -145
- package/src/__tests__/components/SearchField/SearchField.test.tsx +354 -354
- package/src/__tests__/components/SideModal/SideModal.test.tsx +321 -321
- package/src/__tests__/components/SubNav/SubNav.test.tsx +21 -21
- package/src/__tests__/components/TableCounter/TableCounter.test.tsx +35 -35
- package/src/__tests__/components/TableFilters/CategoryFilter/CategoryFilter.test.tsx +223 -223
- package/src/__tests__/components/TableFilters/CustomizeFilters/CustomizeFilters.test.tsx +115 -115
- package/src/__tests__/components/TableFilters/DateFilter/DateFilter.test.tsx +129 -129
- package/src/__tests__/components/TableFilters/LiveFilter/LiveFilter.test.tsx +280 -280
- package/src/__tests__/components/TableFilters/NameFilter/NameFilter.test.tsx +178 -178
- package/src/__tests__/components/TableFilters/RoleFilter/RoleFilter.test.tsx +147 -147
- package/src/__tests__/components/TableFilters/SiteFilter/SiteFilter.test.tsx +297 -297
- package/src/__tests__/components/TableFilters/StatusFilter/StatusFilter.test.tsx +178 -178
- package/src/__tests__/components/TableFilters/TranslationsFilter/TranslationsFilter.test.tsx +138 -138
- package/src/__tests__/components/TableFilters/TypeFilter/TypeFilter.test.tsx +147 -147
- package/src/__tests__/components/TableFilters/UsersFilter/UsersFilter.test.tsx +135 -135
- package/src/__tests__/components/TableList/TableList.test.tsx +95 -95
- package/src/__tests__/components/Tabs/Tabs.test.tsx +187 -187
- package/src/__tests__/components/Tag/Tag.test.tsx +121 -121
- package/src/__tests__/components/Toast/Toast.test.tsx +87 -87
- package/src/__tests__/modules/Settings/Integrations/Integrations.test.tsx +143 -143
- package/src/__tests__/modules/Sites/Sites.test.tsx +238 -238
- package/src/__tests__/modules/Sites/SitesList/ListView/BulkHeader/BulkHeader.test.tsx +34 -34
- package/src/__tests__/modules/Sites/SitesList/SitesList.test.tsx +917 -917
- package/src/__tests__/modules/Users/Roles/BulkHeader/BulkHeader.test.tsx +133 -133
- package/src/__tests__/modules/Users/Roles/Roles.test.tsx +589 -589
- package/src/__tests__/modules/Users/UserCreate/SiteItem/RolesModal/RoleItem/RoleItem.test.tsx +75 -75
- package/src/__tests__/modules/Users/UserCreate/SiteItem/RolesModal/RolesModal.test.tsx +137 -137
- package/src/__tests__/modules/Users/UserCreate/SiteItem/SiteItem.test.tsx +153 -153
- package/src/__tests__/modules/Users/UserCreate/UserCreate.test.tsx +260 -260
- package/src/__tests__/modules/Users/UserList/UserItem/UserItem.test.tsx +363 -363
- package/src/__tests__/modules/Users/UserList/UserList.test.tsx +264 -264
- package/src/api/analytics.tsx +64 -64
- package/src/api/checkgroups.tsx +36 -36
- package/src/api/config.tsx +10 -10
- package/src/api/dataPack.tsx +127 -127
- package/src/api/domains.tsx +12 -12
- package/src/api/files.tsx +137 -137
- package/src/api/folders.tsx +39 -39
- package/src/api/forms.tsx +164 -164
- package/src/api/global.tsx +55 -55
- package/src/api/images.tsx +160 -160
- package/src/api/index.tsx +24 -24
- package/src/api/integrations.tsx +112 -112
- package/src/api/languages.tsx +50 -50
- package/src/api/logs.tsx +60 -60
- package/src/api/menus.tsx +21 -21
- package/src/api/navigation.tsx +158 -158
- package/src/api/pages.tsx +212 -212
- package/src/api/redirects.tsx +62 -62
- package/src/api/roles.tsx +51 -51
- package/src/api/schemas.tsx +7 -7
- package/src/api/selects.tsx +37 -37
- package/src/api/sites.tsx +302 -302
- package/src/api/social.tsx +24 -24
- package/src/api/structuredData.tsx +269 -269
- package/src/api/users.tsx +106 -106
- package/src/api/utils.tsx +157 -159
- package/src/components/ActionMenu/index.tsx +48 -48
- package/src/components/Avatar/index.tsx +9 -9
- package/src/components/BackFolder/index.tsx +14 -14
- package/src/components/BackFolder/style.tsx +3 -3
- package/src/components/Breadcrumb/index.tsx +27 -27
- package/src/components/Breadcrumb/style.tsx +10 -10
- package/src/components/Browser/index.tsx +193 -193
- package/src/components/BrowserContent/index.tsx +75 -75
- package/src/components/BulkSelectionOptions/index.tsx +41 -41
- package/src/components/Button/index.tsx +86 -86
- package/src/components/Button/style.tsx +1 -1
- package/src/components/CategoryCell/index.tsx +13 -13
- package/src/components/Circle/index.tsx +4 -4
- package/src/components/ConfigPanel/Form/ConnectedField/NavConnectedField/index.tsx +146 -146
- package/src/components/ConfigPanel/Form/ConnectedField/PageConnectedField/Field/index.tsx +106 -106
- package/src/components/ConfigPanel/Form/ConnectedField/PageConnectedField/TemplateManager/index.tsx +150 -150
- package/src/components/ConfigPanel/Form/ConnectedField/PageConnectedField/index.tsx +243 -243
- package/src/components/ConfigPanel/Form/ConnectedField/index.tsx +3 -3
- package/src/components/ConfigPanel/Form/index.tsx +144 -144
- package/src/components/ConfigPanel/GlobalPageForm/index.tsx +169 -169
- package/src/components/ConfigPanel/Header/index.tsx +124 -124
- package/src/components/ConfigPanel/NavigationForm/Field/index.tsx +141 -140
- package/src/components/ConfigPanel/NavigationForm/Field/style.tsx +21 -27
- package/src/components/ConfigPanel/NavigationForm/index.tsx +14 -14
- package/src/components/ConfigPanel/NavigationForm/style.tsx +5 -5
- package/src/components/ConfigPanel/PreviewForm/index.tsx +22 -22
- package/src/components/ConfigPanel/index.tsx +116 -116
- package/src/components/DragAndDrop/index.tsx +47 -47
- package/src/components/ElementsTooltip/index.tsx +65 -65
- package/src/components/EmptyState/index.tsx +17 -17
- package/src/components/ErrorCenter/index.tsx +58 -58
- package/src/components/ErrorPage/index.tsx +98 -98
- package/src/components/ErrorPage/style.tsx +13 -13
- package/src/components/ErrorToast/index.tsx +4 -4
- package/src/components/ErrorToast/style.tsx +11 -11
- package/src/components/ExportButton/index.tsx +40 -40
- package/src/components/FieldContainer/index.tsx +63 -63
- package/src/components/Fields/AIReferenceField/AIConfigPanel/index.tsx +139 -139
- package/src/components/Fields/AIReferenceField/index.tsx +73 -73
- package/src/components/Fields/AIReferenceField/style.tsx +1 -1
- package/src/components/Fields/AnalyticsField/PageAnalytics/atoms.tsx +70 -70
- package/src/components/Fields/AnalyticsField/PageAnalytics/index.tsx +131 -131
- package/src/components/Fields/AnalyticsField/StructuredDataAnalytics/atoms.tsx +67 -67
- package/src/components/Fields/AnalyticsField/StructuredDataAnalytics/index.tsx +63 -63
- package/src/components/Fields/AnalyticsField/index.tsx +23 -23
- package/src/components/Fields/AnalyticsField/utils.tsx +6 -6
- package/src/components/Fields/ArrayFieldGroup/ArrayFieldInline/index.tsx +71 -71
- package/src/components/Fields/ArrayFieldGroup/ArrayFieldItem/index.tsx +105 -105
- package/src/components/Fields/ArrayFieldGroup/index.tsx +108 -108
- package/src/components/Fields/AsyncCheckGroup/index.tsx +210 -210
- package/src/components/Fields/AsyncSelect/index.tsx +180 -180
- package/src/components/Fields/AsyncSelect/style.tsx +6 -6
- package/src/components/Fields/CheckField/index.tsx +76 -76
- package/src/components/Fields/CheckField/style.tsx +33 -33
- package/src/components/Fields/CheckGroup/index.tsx +48 -48
- package/src/components/Fields/CheckGroup/style.tsx +2 -2
- package/src/components/Fields/ColorPicker/Picker/index.tsx +60 -60
- package/src/components/Fields/ColorPicker/Picker/style.tsx +14 -14
- package/src/components/Fields/ColorPicker/helpers.tsx +31 -26
- package/src/components/Fields/ColorPicker/index.tsx +120 -120
- package/src/components/Fields/ColorPicker/style.tsx +11 -11
- package/src/components/Fields/ComponentArray/BulkHeader/index.tsx +32 -32
- package/src/components/Fields/ComponentArray/MixableComponentArray/AddItemButton/index.tsx +27 -27
- package/src/components/Fields/ComponentArray/MixableComponentArray/PasteModuleButton/index.tsx +53 -53
- package/src/components/Fields/ComponentArray/MixableComponentArray/index.tsx +352 -353
- package/src/components/Fields/ComponentArray/SameComponentArray/AddItemButton/index.tsx +8 -8
- package/src/components/Fields/ComponentArray/SameComponentArray/index.tsx +241 -242
- package/src/components/Fields/ComponentArray/helpers.tsx +66 -66
- package/src/components/Fields/ComponentArray/index.tsx +3 -3
- package/src/components/Fields/ComponentContainer/EmptyContainer/index.tsx +36 -36
- package/src/components/Fields/ComponentContainer/atoms.tsx +12 -12
- package/src/components/Fields/ComponentContainer/index.tsx +258 -258
- package/src/components/Fields/ComponentContainer/style.tsx +20 -20
- package/src/components/Fields/ConditionalField/index.tsx +20 -20
- package/src/components/Fields/DateField/DatePickerInput/index.tsx +54 -54
- package/src/components/Fields/DateField/index.tsx +127 -127
- package/src/components/Fields/FieldGroup/index.tsx +18 -18
- package/src/components/Fields/FieldsDivider/index.tsx +9 -9
- package/src/components/Fields/FileField/index.tsx +100 -100
- package/src/components/Fields/FileField/style.tsx +11 -11
- package/src/components/Fields/FormCategorySelect/index.tsx +30 -30
- package/src/components/Fields/FormContainer/FormModal/index.tsx +190 -190
- package/src/components/Fields/FormContainer/FormModal/style.tsx +16 -16
- package/src/components/Fields/FormContainer/index.tsx +73 -73
- package/src/components/Fields/FormFieldArray/index.tsx +5 -5
- package/src/components/Fields/HeadingField/index.tsx +39 -39
- package/src/components/Fields/HiddenField/index.tsx +18 -18
- package/src/components/Fields/ImageField/index.tsx +194 -194
- package/src/components/Fields/ImageField/style.tsx +18 -18
- package/src/components/Fields/IntegrationsField/IntegrationItem/CustomPanel/index.tsx +82 -82
- package/src/components/Fields/IntegrationsField/IntegrationItem/CustomPanel/style.tsx +1 -1
- package/src/components/Fields/IntegrationsField/IntegrationItem/VariablesPanel/helpers.ts +24 -24
- package/src/components/Fields/IntegrationsField/IntegrationItem/VariablesPanel/index.tsx +97 -98
- package/src/components/Fields/IntegrationsField/IntegrationItem/VariablesPanel/style.tsx +1 -1
- package/src/components/Fields/IntegrationsField/IntegrationItem/atoms.tsx +15 -15
- package/src/components/Fields/IntegrationsField/IntegrationItem/index.tsx +114 -114
- package/src/components/Fields/IntegrationsField/PasteIntegrationButton/index.tsx +15 -15
- package/src/components/Fields/IntegrationsField/SideModal/SideModalOption/index.tsx +38 -38
- package/src/components/Fields/IntegrationsField/SideModal/index.tsx +40 -40
- package/src/components/Fields/IntegrationsField/index.tsx +119 -119
- package/src/components/Fields/LinkField/index.tsx +112 -112
- package/src/components/Fields/MultiCheckSelect/index.tsx +77 -77
- package/src/components/Fields/MultiCheckSelect/style.tsx +2 -2
- package/src/components/Fields/MultiCheckSelectGroup/index.tsx +68 -68
- package/src/components/Fields/NoteField/index.tsx +10 -10
- package/src/components/Fields/NumberField/index.tsx +89 -89
- package/src/components/Fields/NumberField/style.tsx +2 -2
- package/src/components/Fields/RadioField/index.tsx +30 -30
- package/src/components/Fields/RadioField/style.tsx +12 -12
- package/src/components/Fields/RadioGroup/index.tsx +43 -43
- package/src/components/Fields/RadioGroup/style.tsx +4 -4
- package/src/components/Fields/ReferenceField/AutoPanel/AutoItem/index.tsx +380 -380
- package/src/components/Fields/ReferenceField/AutoPanel/AutoItem/style.tsx +20 -20
- package/src/components/Fields/ReferenceField/AutoPanel/index.tsx +513 -513
- package/src/components/Fields/ReferenceField/AutoPanel/style.tsx +25 -25
- package/src/components/Fields/ReferenceField/Context/index.tsx +87 -87
- package/src/components/Fields/ReferenceField/ItemList/Item/index.tsx +45 -45
- package/src/components/Fields/ReferenceField/ItemList/Item/style.tsx +13 -13
- package/src/components/Fields/ReferenceField/ItemList/index.tsx +124 -124
- package/src/components/Fields/ReferenceField/ManualPanel/Item/index.tsx +25 -25
- package/src/components/Fields/ReferenceField/ManualPanel/index.tsx +227 -227
- package/src/components/Fields/ReferenceField/ManualPanel/style.tsx +10 -10
- package/src/components/Fields/ReferenceField/index.tsx +236 -236
- package/src/components/Fields/ReferenceField/style.tsx +12 -12
- package/src/components/Fields/RichText/index.tsx +123 -112
- package/src/components/Fields/RichText/style.tsx +1 -1
- package/src/components/Fields/RichText/utils.tsx +23 -23
- package/src/components/Fields/Select/index.tsx +70 -70
- package/src/components/Fields/Select/style.tsx +6 -6
- package/src/components/Fields/SliderField/index.tsx +50 -50
- package/src/components/Fields/SummaryButton/index.tsx +53 -53
- package/src/components/Fields/TagsField/index.tsx +49 -49
- package/src/components/Fields/TextArea/index.tsx +48 -47
- package/src/components/Fields/TextField/index.tsx +122 -123
- package/src/components/Fields/TextField/style.tsx +9 -9
- package/src/components/Fields/TimeField/HourInput/index.tsx +82 -82
- package/src/components/Fields/TimeField/HourInput/utils.tsx +23 -23
- package/src/components/Fields/TimeField/index.tsx +45 -45
- package/src/components/Fields/ToggleField/index.tsx +31 -31
- package/src/components/Fields/TranslateButton/index.tsx +137 -137
- package/src/components/Fields/UniqueCheck/index.tsx +30 -30
- package/src/components/Fields/UrlField/index.tsx +232 -232
- package/src/components/Fields/UrlField/utils.tsx +78 -78
- package/src/components/Fields/VisualOption/index.tsx +26 -26
- package/src/components/Fields/VisualOption/style.tsx +4 -4
- package/src/components/Fields/VisualUniqueSelection/ImageSelection/index.tsx +31 -31
- package/src/components/Fields/VisualUniqueSelection/ImageSelection/style.tsx +1 -1
- package/src/components/Fields/VisualUniqueSelection/ScrollableSelection/index.tsx +73 -73
- package/src/components/Fields/VisualUniqueSelection/index.tsx +3 -3
- package/src/components/Fields/VisualUniqueSelection/utils.tsx +13 -13
- package/src/components/Fields/Wysiwyg/config.tsx +95 -95
- package/src/components/Fields/Wysiwyg/helpers.tsx +69 -69
- package/src/components/Fields/Wysiwyg/index.tsx +81 -81
- package/src/components/Fields/Wysiwyg/languages.js +132 -132
- package/src/components/Fields/Wysiwyg/style.tsx +37 -37
- package/src/components/Fields/index.tsx +45 -45
- package/src/components/FieldsBehavior/index.tsx +114 -114
- package/src/components/FieldsBehavior/style.tsx +15 -15
- package/src/components/FileGallery/FolderItem/index.tsx +24 -24
- package/src/components/FileGallery/FolderItem/style.tsx +1 -1
- package/src/components/FileGallery/GalleryPanel/DetailPanel/index.tsx +133 -133
- package/src/components/FileGallery/GalleryPanel/DetailPanel/style.tsx +12 -12
- package/src/components/FileGallery/GalleryPanel/index.tsx +25 -25
- package/src/components/FileGallery/GalleryPanel/style.tsx +2 -2
- package/src/components/FileGallery/GridItem/index.tsx +32 -32
- package/src/components/FileGallery/index.tsx +310 -310
- package/src/components/FileGallery/style.tsx +22 -22
- package/src/components/FilterTagsBar/index.tsx +48 -48
- package/src/components/FilterTagsBar/style.tsx +1 -1
- package/src/components/Flag/components/Ca_ES.js +11 -11
- package/src/components/Flag/components/De_DE.js +13 -7
- package/src/components/Flag/components/En_GB.js +16 -16
- package/src/components/Flag/components/Es_ES.js +73 -61
- package/src/components/Flag/components/Eu_ES.js +16 -13
- package/src/components/Flag/components/Fr_FR.js +13 -7
- package/src/components/Flag/components/It_IT.js +13 -7
- package/src/components/Flag/components/Pt_PT.js +33 -27
- package/src/components/Flag/index.tsx +24 -24
- package/src/components/FloatingButton/index.tsx +20 -20
- package/src/components/FloatingMenu/index.tsx +121 -122
- package/src/components/FloatingPanel/index.tsx +55 -55
- package/src/components/FloatingPanel/style.tsx +3 -3
- package/src/components/Gallery/FolderItem/index.tsx +24 -24
- package/src/components/Gallery/FolderItem/style.tsx +1 -1
- package/src/components/Gallery/GalleryPanel/DetailPanel/index.tsx +138 -138
- package/src/components/Gallery/GalleryPanel/DetailPanel/style.tsx +13 -13
- package/src/components/Gallery/GalleryPanel/index.tsx +40 -40
- package/src/components/Gallery/GalleryPanel/style.tsx +2 -2
- package/src/components/Gallery/index.tsx +347 -348
- package/src/components/Gallery/style.tsx +24 -24
- package/src/components/GuardModal/index.tsx +34 -34
- package/src/components/GuardModal/style.tsx +3 -3
- package/src/components/Icon/components/Active.js +9 -9
- package/src/components/Icon/components/Add.js +4 -4
- package/src/components/Icon/components/AddCircle.js +7 -7
- package/src/components/Icon/components/Alert.js +10 -10
- package/src/components/Icon/components/Back.js +6 -6
- package/src/components/Icon/components/BulletList.js +10 -10
- package/src/components/Icon/components/Button.js +9 -4
- package/src/components/Icon/components/Calendar.js +9 -9
- package/src/components/Icon/components/CancelEvent.js +6 -6
- package/src/components/Icon/components/Category.js +6 -6
- package/src/components/Icon/components/Change.js +9 -9
- package/src/components/Icon/components/Close.js +7 -7
- package/src/components/Icon/components/ClosePanel.js +8 -8
- package/src/components/Icon/components/CodeBody.js +8 -8
- package/src/components/Icon/components/CodeHead.js +8 -8
- package/src/components/Icon/components/CodeHeadBody.js +8 -8
- package/src/components/Icon/components/Collapsed.js +10 -10
- package/src/components/Icon/components/ColorPicker.js +8 -8
- package/src/components/Icon/components/Compose.js +8 -8
- package/src/components/Icon/components/Copy.js +9 -9
- package/src/components/Icon/components/Copy2.js +9 -9
- package/src/components/Icon/components/Data.js +9 -9
- package/src/components/Icon/components/DataAdd.js +15 -15
- package/src/components/Icon/components/Deactivate.js +8 -8
- package/src/components/Icon/components/Delete.js +7 -4
- package/src/components/Icon/components/Desktop.js +8 -8
- package/src/components/Icon/components/Disabled.js +8 -8
- package/src/components/Icon/components/Done.js +5 -5
- package/src/components/Icon/components/DownArrow.js +4 -4
- package/src/components/Icon/components/Download.js +3 -3
- package/src/components/Icon/components/Drag.js +9 -9
- package/src/components/Icon/components/Duplicate.js +7 -7
- package/src/components/Icon/components/Edit.js +7 -7
- package/src/components/Icon/components/Empty.js +8 -8
- package/src/components/Icon/components/EmptyCheck.js +10 -10
- package/src/components/Icon/components/Extend.js +10 -10
- package/src/components/Icon/components/File.js +8 -8
- package/src/components/Icon/components/Filter.js +5 -5
- package/src/components/Icon/components/Form.js +8 -8
- package/src/components/Icon/components/FullArrowDown.js +4 -4
- package/src/components/Icon/components/FullArrowLeft.js +4 -4
- package/src/components/Icon/components/FullArrowRight.js +4 -4
- package/src/components/Icon/components/FullArrowUp.js +4 -4
- package/src/components/Icon/components/Grid.js +10 -10
- package/src/components/Icon/components/Grid2.js +10 -10
- package/src/components/Icon/components/HeroCard.js +10 -7
- package/src/components/Icon/components/Hide.js +16 -13
- package/src/components/Icon/components/History.js +9 -9
- package/src/components/Icon/components/Home.js +8 -3
- package/src/components/Icon/components/Ia.js +8 -8
- package/src/components/Icon/components/Image.js +7 -4
- package/src/components/Icon/components/Info.js +9 -9
- package/src/components/Icon/components/Laptop.js +9 -4
- package/src/components/Icon/components/LeftArrow.js +4 -4
- package/src/components/Icon/components/Link.js +9 -9
- package/src/components/Icon/components/Lock.js +7 -7
- package/src/components/Icon/components/Log.js +7 -7
- package/src/components/Icon/components/Map.js +9 -6
- package/src/components/Icon/components/Menu.js +4 -9
- package/src/components/Icon/components/Microsoft.js +6 -6
- package/src/components/Icon/components/Modified.js +9 -9
- package/src/components/Icon/components/Modules.js +8 -8
- package/src/components/Icon/components/More.js +10 -10
- package/src/components/Icon/components/NewFolder.js +6 -6
- package/src/components/Icon/components/Offline.js +8 -8
- package/src/components/Icon/components/OfflinePending.js +10 -10
- package/src/components/Icon/components/OpenOutside.js +10 -10
- package/src/components/Icon/components/OpenPanel.js +8 -8
- package/src/components/Icon/components/OutOfSection.js +8 -3
- package/src/components/Icon/components/Page.js +7 -7
- package/src/components/Icon/components/Paste.js +7 -7
- package/src/components/Icon/components/Phone.js +8 -8
- package/src/components/Icon/components/PhotoLibrary.js +7 -7
- package/src/components/Icon/components/Power.js +9 -9
- package/src/components/Icon/components/Preview.js +8 -8
- package/src/components/Icon/components/Project.js +9 -4
- package/src/components/Icon/components/QrCode.js +6 -6
- package/src/components/Icon/components/Question.js +10 -10
- package/src/components/Icon/components/Refresh.js +6 -6
- package/src/components/Icon/components/RightArrow.js +4 -4
- package/src/components/Icon/components/Scheduled.js +8 -8
- package/src/components/Icon/components/Search.js +9 -9
- package/src/components/Icon/components/SendEmail.js +8 -8
- package/src/components/Icon/components/Settings.js +15 -15
- package/src/components/Icon/components/Share.js +6 -6
- package/src/components/Icon/components/Subsection.js +8 -3
- package/src/components/Icon/components/Success.js +10 -10
- package/src/components/Icon/components/SuccessSolid.js +10 -10
- package/src/components/Icon/components/Tablet.js +8 -8
- package/src/components/Icon/components/Translate.js +6 -6
- package/src/components/Icon/components/Unlink.js +9 -9
- package/src/components/Icon/components/UpArrow.js +4 -4
- package/src/components/Icon/components/UploadFile.js +8 -8
- package/src/components/Icon/components/UploadPending.js +8 -8
- package/src/components/Icon/components/UrlLink.js +8 -8
- package/src/components/Icon/components/User.js +9 -9
- package/src/components/Icon/components/Users.js +8 -8
- package/src/components/Icon/components/Video.js +9 -9
- package/src/components/Icon/components/View.js +8 -8
- package/src/components/Icon/components/Warning.js +10 -10
- package/src/components/Icon/components/Web.js +10 -10
- package/src/components/Icon/components/Working.js +6 -6
- package/src/components/Icon/index.tsx +37 -37
- package/src/components/IconAction/index.tsx +27 -27
- package/src/components/IconAction/style.tsx +4 -4
- package/src/components/Image/index.tsx +21 -21
- package/src/components/Image/utils.ts +31 -31
- package/src/components/InformativeMenu/index.tsx +20 -20
- package/src/components/InformativeMenu/style.tsx +3 -3
- package/src/components/LanguageMenu/index.tsx +58 -58
- package/src/components/LanguageMenu/style.tsx +10 -10
- package/src/components/Lists/index.tsx +10 -10
- package/src/components/Loader/components/Circle.js +15 -8
- package/src/components/Loader/components/Dots.js +13 -13
- package/src/components/Loader/index.tsx +28 -28
- package/src/components/Loading/index.tsx +9 -9
- package/src/components/Login/LoginForm/RecoveryModal/index.tsx +64 -64
- package/src/components/Login/LoginForm/index.tsx +107 -107
- package/src/components/Login/LoginSSO/index.tsx +60 -60
- package/src/components/Login/LoginSSO/style.tsx +12 -12
- package/src/components/Login/LoginSlider/index.tsx +50 -50
- package/src/components/Login/index.tsx +69 -69
- package/src/components/MainWrapper/AppBar/atoms.tsx +39 -39
- package/src/components/MainWrapper/AppBar/index.tsx +282 -282
- package/src/components/MainWrapper/AppBar/style.tsx +24 -24
- package/src/components/MainWrapper/AppBar/utils.tsx +10 -14
- package/src/components/MainWrapper/index.tsx +50 -50
- package/src/components/MenuGroup/index.tsx +68 -68
- package/src/components/MenuGroup/style.tsx +5 -5
- package/src/components/MenuItem/index.tsx +47 -47
- package/src/components/Modal/index.tsx +83 -83
- package/src/components/Modal/style.tsx +20 -20
- package/src/components/Nav/index.tsx +33 -33
- package/src/components/Nav/style.tsx +1 -1
- package/src/components/Notification/SubNotification/index.tsx +18 -18
- package/src/components/Notification/index.tsx +82 -82
- package/src/components/OcassionalToast/index.tsx +11 -11
- package/src/components/PageFinder/SelectionListItem/index.tsx +29 -29
- package/src/components/PageFinder/index.tsx +278 -278
- package/src/components/PageFinder/style.tsx +12 -12
- package/src/components/Pagination/index.tsx +49 -44
- package/src/components/Pagination/style.tsx +4 -8
- package/src/components/ProgressBar/index.tsx +11 -11
- package/src/components/ProgressBar/style.tsx +4 -4
- package/src/components/ReorderArrows/index.tsx +25 -25
- package/src/components/ReorderArrows/style.tsx +3 -3
- package/src/components/ResizePanel/ResizeHandle/index.tsx +51 -19
- package/src/components/ResizePanel/index.tsx +40 -39
- package/src/components/ResizePanel/style.tsx +5 -5
- package/src/components/RestoreModal/index.tsx +37 -37
- package/src/components/ScheduleModal/index.tsx +84 -84
- package/src/components/SearchField/index.tsx +120 -120
- package/src/components/SearchField/style.tsx +10 -10
- package/src/components/SearchTagsBar/index.tsx +31 -31
- package/src/components/SearchTagsBar/style.tsx +1 -1
- package/src/components/SideModal/SideModalOption/index.tsx +42 -42
- package/src/components/SideModal/index.tsx +193 -194
- package/src/components/SideModal/style.tsx +15 -15
- package/src/components/SubNav/index.tsx +6 -6
- package/src/components/TableCounter/index.tsx +4 -4
- package/src/components/TableFilters/CategoryFilter/index.tsx +106 -107
- package/src/components/TableFilters/CheckGroupFilter/index.tsx +95 -95
- package/src/components/TableFilters/CustomizeFilters/index.tsx +41 -41
- package/src/components/TableFilters/DateFilter/index.tsx +38 -38
- package/src/components/TableFilters/LastAccessFilter/index.tsx +38 -38
- package/src/components/TableFilters/LiveFilter/index.tsx +100 -102
- package/src/components/TableFilters/NameFilter/index.tsx +48 -48
- package/src/components/TableFilters/PermissionsFilter/index.tsx +37 -37
- package/src/components/TableFilters/RoleFilter/index.tsx +50 -50
- package/src/components/TableFilters/SiteFilter/index.tsx +73 -73
- package/src/components/TableFilters/StateFilter/index.tsx +53 -53
- package/src/components/TableFilters/StatusFilter/index.tsx +40 -40
- package/src/components/TableFilters/TranslationsFilter/index.tsx +48 -49
- package/src/components/TableFilters/TypeFilter/index.tsx +50 -51
- package/src/components/TableFilters/UsersFilter/index.tsx +42 -42
- package/src/components/TableFilters/index.tsx +15 -15
- package/src/components/TableList/TableItem/style.tsx +4 -4
- package/src/components/TableList/index.tsx +44 -44
- package/src/components/TableList/style.tsx +14 -14
- package/src/components/Tabs/index.tsx +58 -58
- package/src/components/Tabs/style.tsx +6 -6
- package/src/components/Tag/index.tsx +50 -50
- package/src/components/Tag/style.tsx +1 -1
- package/src/components/Toast/index.tsx +39 -39
- package/src/components/Toast/style.tsx +1 -1
- package/src/components/Tooltip/index.tsx +109 -109
- package/src/components/Tooltip/style.tsx +8 -8
- package/src/components/index.tsx +175 -175
- package/src/containers/ActivityLog/actions.tsx +212 -212
- package/src/containers/ActivityLog/interfaces.tsx +4 -4
- package/src/containers/ActivityLog/reducer.tsx +11 -11
- package/src/containers/Analytics/actions.tsx +77 -77
- package/src/containers/Analytics/interfaces.tsx +2 -2
- package/src/containers/Analytics/reducer.tsx +14 -14
- package/src/containers/App/actions.tsx +191 -191
- package/src/containers/App/constants.tsx +12 -12
- package/src/containers/App/index.tsx +1 -4
- package/src/containers/App/interfaces.tsx +44 -44
- package/src/containers/App/reducer.tsx +97 -97
- package/src/containers/Domains/actions.tsx +41 -41
- package/src/containers/Domains/interfaces.tsx +2 -2
- package/src/containers/Domains/reducer.tsx +8 -8
- package/src/containers/FileDrive/actions.tsx +326 -326
- package/src/containers/FileDrive/constants.tsx +10 -10
- package/src/containers/FileDrive/index.tsx +1 -4
- package/src/containers/FileDrive/interfaces.tsx +27 -27
- package/src/containers/FileDrive/reducer.tsx +43 -43
- package/src/containers/Forms/actions.tsx +717 -717
- package/src/containers/Forms/constants.tsx +21 -21
- package/src/containers/Forms/interfaces.tsx +45 -45
- package/src/containers/Forms/reducer.tsx +67 -67
- package/src/containers/Forms/utils.tsx +27 -27
- package/src/containers/Gallery/actions.tsx +398 -397
- package/src/containers/Gallery/constants.tsx +13 -13
- package/src/containers/Gallery/index.tsx +1 -4
- package/src/containers/Gallery/interfaces.tsx +48 -48
- package/src/containers/Gallery/reducer.tsx +74 -74
- package/src/containers/Integrations/actions.tsx +165 -165
- package/src/containers/Integrations/constants.tsx +3 -3
- package/src/containers/Integrations/interfaces.tsx +12 -12
- package/src/containers/Integrations/reducer.tsx +17 -17
- package/src/containers/Navigation/Defaults/actions.tsx +735 -735
- package/src/containers/Navigation/Defaults/interfaces.tsx +54 -54
- package/src/containers/Navigation/Defaults/reducer.tsx +71 -71
- package/src/containers/Navigation/Defaults/utils.tsx +60 -60
- package/src/containers/Navigation/Menu/actions.tsx +233 -233
- package/src/containers/Navigation/Menu/index.tsx +2 -5
- package/src/containers/Navigation/Menu/interfaces.tsx +20 -20
- package/src/containers/Navigation/Menu/reducer.tsx +39 -39
- package/src/containers/Navigation/index.tsx +3 -8
- package/src/containers/PageEditor/actions.tsx +1344 -1344
- package/src/containers/PageEditor/interfaces.tsx +80 -80
- package/src/containers/PageEditor/reducer.tsx +102 -102
- package/src/containers/PageEditor/utils.tsx +128 -128
- package/src/containers/Redirects/actions.tsx +151 -151
- package/src/containers/Redirects/constants.tsx +12 -12
- package/src/containers/Redirects/interfaces.tsx +8 -8
- package/src/containers/Redirects/reducer.tsx +21 -21
- package/src/containers/Settings/DataPacks/actions.tsx +388 -388
- package/src/containers/Settings/DataPacks/constants.tsx +9 -9
- package/src/containers/Settings/DataPacks/index.tsx +1 -4
- package/src/containers/Settings/DataPacks/interfaces.tsx +23 -15
- package/src/containers/Settings/DataPacks/reducer.tsx +37 -37
- package/src/containers/Settings/Languages/actions.tsx +49 -49
- package/src/containers/Settings/Languages/reducer.tsx +19 -19
- package/src/containers/Settings/Social/actions.tsx +43 -43
- package/src/containers/Settings/Social/index.tsx +1 -4
- package/src/containers/Settings/Social/interfaces.tsx +2 -2
- package/src/containers/Settings/Social/reducer.tsx +6 -6
- package/src/containers/Settings/index.tsx +1 -8
- package/src/containers/Sites/actions.tsx +641 -641
- package/src/containers/Sites/constants.tsx +5 -5
- package/src/containers/Sites/index.tsx +1 -4
- package/src/containers/Sites/interfaces.tsx +54 -54
- package/src/containers/Sites/reducer.tsx +90 -90
- package/src/containers/StructuredData/actions.tsx +662 -662
- package/src/containers/StructuredData/constants.tsx +27 -27
- package/src/containers/StructuredData/index.tsx +1 -4
- package/src/containers/StructuredData/interfaces.tsx +53 -53
- package/src/containers/StructuredData/reducer.tsx +75 -75
- package/src/containers/StructuredData/utils.tsx +40 -40
- package/src/containers/Users/actions.tsx +302 -302
- package/src/containers/Users/index.tsx +1 -4
- package/src/containers/Users/interfaces.tsx +18 -18
- package/src/containers/Users/reducer.tsx +37 -37
- package/src/forms/editor.tsx +194 -194
- package/src/forms/elements.tsx +200 -200
- package/src/forms/errors.tsx +43 -43
- package/src/forms/fields.tsx +83 -83
- package/src/forms/index.tsx +66 -66
- package/src/forms/validators.tsx +467 -467
- package/src/guards/error/index.tsx +51 -51
- package/src/guards/restricted/index.tsx +9 -9
- package/src/guards/routeLeaving/index.tsx +53 -53
- package/src/guards/routeLeaving/style.tsx +2 -2
- package/src/helpers/arrays.tsx +13 -13
- package/src/helpers/containerEvaluations.tsx +53 -53
- package/src/helpers/customColumns.tsx +33 -33
- package/src/helpers/dataPacks.tsx +8 -8
- package/src/helpers/dates.tsx +52 -53
- package/src/helpers/environment.tsx +3 -3
- package/src/helpers/files.tsx +52 -52
- package/src/helpers/forms.tsx +9 -9
- package/src/helpers/imageResize.tsx +197 -167
- package/src/helpers/images.tsx +75 -75
- package/src/helpers/index.tsx +192 -192
- package/src/helpers/objects.tsx +117 -118
- package/src/helpers/parseTheme.js +274 -274
- package/src/helpers/requests.tsx +19 -19
- package/src/helpers/schemas.tsx +120 -120
- package/src/helpers/strings.tsx +103 -103
- package/src/helpers/structuredData.tsx +17 -17
- package/src/helpers/themes.tsx +56 -56
- package/src/helpers/thumbnails.tsx +47 -47
- package/src/hooks/bulk.tsx +133 -135
- package/src/hooks/content.tsx +93 -93
- package/src/hooks/forms.tsx +115 -115
- package/src/hooks/iframe.ts +48 -48
- package/src/hooks/index.tsx +20 -20
- package/src/hooks/location.tsx +5 -5
- package/src/hooks/modals.tsx +38 -38
- package/src/hooks/network.tsx +21 -20
- package/src/hooks/resize.ts +51 -51
- package/src/hooks/users.tsx +22 -22
- package/src/hooks/window.ts +10 -10
- package/src/index.tsx +16 -19
- package/src/modules/ActivityLog/DetailModal/index.tsx +81 -81
- package/src/modules/ActivityLog/DownloadModal/index.tsx +84 -84
- package/src/modules/ActivityLog/ItemGroup/index.tsx +14 -14
- package/src/modules/ActivityLog/ItemLog/EventItem/index.tsx +136 -136
- package/src/modules/ActivityLog/ItemLog/index.tsx +11 -11
- package/src/modules/ActivityLog/ItemLogUser/UserItem/EventItem/index.tsx +139 -139
- package/src/modules/ActivityLog/ItemLogUser/UserItem/index.tsx +33 -33
- package/src/modules/ActivityLog/ItemLogUser/index.tsx +12 -12
- package/src/modules/ActivityLog/LogFilters/ContentFilter/index.tsx +59 -59
- package/src/modules/ActivityLog/LogFilters/DateFilter/index.tsx +64 -64
- package/src/modules/ActivityLog/LogFilters/EventFilter/index.tsx +57 -57
- package/src/modules/ActivityLog/LogFilters/OrderFilter/index.tsx +36 -36
- package/src/modules/ActivityLog/LogFilters/UserFilter/index.tsx +59 -59
- package/src/modules/ActivityLog/TableHeader/index.tsx +52 -52
- package/src/modules/ActivityLog/TableHeader/style.tsx +9 -9
- package/src/modules/ActivityLog/constants.tsx +6 -6
- package/src/modules/ActivityLog/hooks.tsx +45 -46
- package/src/modules/ActivityLog/index.tsx +287 -287
- package/src/modules/ActivityLog/utils.tsx +20 -20
- package/src/modules/Analytics/DimensionItem/index.tsx +49 -49
- package/src/modules/Analytics/DimensionItem/style.tsx +2 -2
- package/src/modules/Analytics/DimensionPanel/index.tsx +129 -129
- package/src/modules/Analytics/DimensionPanel/style.tsx +1 -1
- package/src/modules/Analytics/GroupItem/index.tsx +61 -51
- package/src/modules/Analytics/GroupItem/style.tsx +5 -14
- package/src/modules/Analytics/GroupPanel/index.tsx +172 -172
- package/src/modules/Analytics/GroupPanel/style.tsx +2 -12
- package/src/modules/Analytics/GroupPanel/utils.tsx +17 -17
- package/src/modules/Analytics/index.tsx +180 -181
- package/src/modules/Analytics/style.tsx +9 -9
- package/src/modules/App/Routing/Logout/index.tsx +12 -12
- package/src/modules/App/Routing/NavMenu/NavItem/NavSubItem/index.tsx +16 -16
- package/src/modules/App/Routing/NavMenu/NavItem/NavSubItem/style.tsx +5 -5
- package/src/modules/App/Routing/NavMenu/NavItem/index.tsx +93 -93
- package/src/modules/App/Routing/NavMenu/NavItem/style.tsx +2 -2
- package/src/modules/App/Routing/NavMenu/context.tsx +2 -2
- package/src/modules/App/Routing/NavMenu/index.tsx +219 -219
- package/src/modules/App/Routing/NavMenu/style.tsx +1 -1
- package/src/modules/App/Routing/PrivateRoute/index.tsx +15 -15
- package/src/modules/App/Routing/index.tsx +106 -106
- package/src/modules/App/index.tsx +18 -18
- package/src/modules/Categories/CategoriesList/BulkHeader/TableHeader/index.tsx +35 -35
- package/src/modules/Categories/CategoriesList/BulkHeader/index.tsx +40 -40
- package/src/modules/Categories/CategoriesList/CategoryItem/index.tsx +284 -284
- package/src/modules/Categories/CategoriesList/CategoryItem/style.tsx +14 -14
- package/src/modules/Categories/CategoriesList/CategoryNav/NavItem/index.tsx +42 -42
- package/src/modules/Categories/CategoriesList/CategoryNav/index.tsx +28 -28
- package/src/modules/Categories/CategoriesList/CategoryNav/style.tsx +5 -5
- package/src/modules/Categories/CategoriesList/CategoryPanel/Form/index.tsx +97 -97
- package/src/modules/Categories/CategoriesList/CategoryPanel/index.tsx +181 -181
- package/src/modules/Categories/CategoriesList/atoms.tsx +66 -66
- package/src/modules/Categories/CategoriesList/helpers.tsx +106 -106
- package/src/modules/Categories/CategoriesList/hooks.tsx +54 -54
- package/src/modules/Categories/CategoriesList/index.tsx +465 -466
- package/src/modules/Categories/CategoriesList/style.tsx +9 -9
- package/src/modules/Categories/CategoriesList/utils.tsx +19 -19
- package/src/modules/Categories/index.tsx +6 -6
- package/src/modules/Content/BulkHeader/TableHeader/index.tsx +141 -141
- package/src/modules/Content/BulkHeader/TableHeader/style.tsx +13 -13
- package/src/modules/Content/BulkHeader/index.tsx +99 -99
- package/src/modules/Content/ContentFilters/index.tsx +83 -83
- package/src/modules/Content/ContentFilters/utils.tsx +53 -53
- package/src/modules/Content/OptionTable/index.tsx +205 -205
- package/src/modules/Content/OptionTable/store.tsx +19 -19
- package/src/modules/Content/PageImporter/index.tsx +122 -122
- package/src/modules/Content/PageImporter/style.tsx +15 -15
- package/src/modules/Content/PageItem/index.tsx +700 -700
- package/src/modules/Content/PageItem/style.tsx +24 -24
- package/src/modules/Content/atoms.tsx +103 -103
- package/src/modules/Content/hooks.tsx +99 -99
- package/src/modules/Content/index.tsx +1056 -1055
- package/src/modules/Content/style.tsx +8 -8
- package/src/modules/Content/utils.tsx +164 -164
- package/src/modules/CreatePass/index.tsx +64 -64
- package/src/modules/CreatePass/style.tsx +8 -9
- package/src/modules/FileDrive/Breadcrumb/index.tsx +27 -27
- package/src/modules/FileDrive/Breadcrumb/style.tsx +7 -7
- package/src/modules/FileDrive/BulkGridHeader/GridHeader/index.tsx +23 -23
- package/src/modules/FileDrive/BulkGridHeader/index.tsx +20 -20
- package/src/modules/FileDrive/BulkGridHeader/style.tsx +1 -1
- package/src/modules/FileDrive/BulkListHeader/TableHeader/index.tsx +34 -34
- package/src/modules/FileDrive/BulkListHeader/TableHeader/style.tsx +9 -9
- package/src/modules/FileDrive/BulkListHeader/index.tsx +30 -30
- package/src/modules/FileDrive/BulkListHeader/style.tsx +1 -1
- package/src/modules/FileDrive/FileDragAndDrop/index.tsx +255 -255
- package/src/modules/FileDrive/FileDragAndDrop/style.tsx +32 -32
- package/src/modules/FileDrive/FileFilters/SortBy/index.tsx +54 -54
- package/src/modules/FileDrive/FileFilters/Type/index.tsx +58 -59
- package/src/modules/FileDrive/FileFilters/Usage/index.tsx +46 -46
- package/src/modules/FileDrive/FileModal/DetailPanel/UsageContent/Item/index.tsx +17 -17
- package/src/modules/FileDrive/FileModal/DetailPanel/UsageContent/Item/style.tsx +0 -1
- package/src/modules/FileDrive/FileModal/DetailPanel/UsageContent/ItemGroup/index.tsx +27 -27
- package/src/modules/FileDrive/FileModal/DetailPanel/UsageContent/index.tsx +110 -110
- package/src/modules/FileDrive/FileModal/DetailPanel/index.tsx +179 -179
- package/src/modules/FileDrive/FileModal/index.tsx +176 -176
- package/src/modules/FileDrive/FileModal/style.tsx +12 -12
- package/src/modules/FileDrive/FolderItem/index.tsx +158 -158
- package/src/modules/FileDrive/FolderItem/style.tsx +1 -1
- package/src/modules/FileDrive/FolderTree/MenuItem/index.tsx +64 -64
- package/src/modules/FileDrive/FolderTree/MenuList/index.tsx +21 -21
- package/src/modules/FileDrive/FolderTree/index.tsx +43 -43
- package/src/modules/FileDrive/GridItem/index.tsx +168 -168
- package/src/modules/FileDrive/ListItem/index.tsx +182 -182
- package/src/modules/FileDrive/ListItem/style.tsx +12 -12
- package/src/modules/FileDrive/UploadItem/index.tsx +19 -19
- package/src/modules/FileDrive/UploadItem/style.tsx +1 -1
- package/src/modules/FileDrive/atoms.tsx +156 -156
- package/src/modules/FileDrive/hooks.tsx +82 -82
- package/src/modules/FileDrive/index.tsx +821 -822
- package/src/modules/FileDrive/style.tsx +28 -28
- package/src/modules/FileDrive/utils.tsx +11 -11
- package/src/modules/Forms/FormCategoriesList/BulkHeader/TableHeader/index.tsx +29 -29
- package/src/modules/Forms/FormCategoriesList/BulkHeader/index.tsx +24 -24
- package/src/modules/Forms/FormCategoriesList/CategoryItem/index.tsx +111 -111
- package/src/modules/Forms/FormCategoriesList/CategoryItem/style.tsx +9 -9
- package/src/modules/Forms/FormCategoriesList/CategoryPanel/Form/index.tsx +34 -34
- package/src/modules/Forms/FormCategoriesList/CategoryPanel/index.tsx +85 -85
- package/src/modules/Forms/FormCategoriesList/atoms.tsx +21 -21
- package/src/modules/Forms/FormCategoriesList/hooks.tsx +54 -54
- package/src/modules/Forms/FormCategoriesList/index.tsx +245 -245
- package/src/modules/Forms/FormCategoriesList/style.tsx +10 -10
- package/src/modules/Forms/FormEditor/Editor/FormConfigPanel/Form/ConnectedField/Field/index.tsx +91 -91
- package/src/modules/Forms/FormEditor/Editor/FormConfigPanel/Form/ConnectedField/TemplateManager/index.tsx +85 -85
- package/src/modules/Forms/FormEditor/Editor/FormConfigPanel/Form/ConnectedField/index.tsx +98 -98
- package/src/modules/Forms/FormEditor/Editor/FormConfigPanel/Form/index.tsx +70 -70
- package/src/modules/Forms/FormEditor/Editor/FormConfigPanel/Header/index.tsx +117 -117
- package/src/modules/Forms/FormEditor/Editor/FormConfigPanel/index.tsx +73 -73
- package/src/modules/Forms/FormEditor/Editor/SideModal/SectionOption/index.tsx +9 -9
- package/src/modules/Forms/FormEditor/Editor/SideModal/SideModalOption/index.tsx +18 -18
- package/src/modules/Forms/FormEditor/Editor/SideModal/index.tsx +91 -91
- package/src/modules/Forms/FormEditor/Editor/SideModal/style.tsx +13 -13
- package/src/modules/Forms/FormEditor/Editor/index.tsx +141 -141
- package/src/modules/Forms/FormEditor/PageBrowser/index.tsx +69 -69
- package/src/modules/Forms/FormEditor/index.tsx +372 -372
- package/src/modules/Forms/FormList/BulkHeader/TableHeader/index.tsx +131 -131
- package/src/modules/Forms/FormList/BulkHeader/index.tsx +52 -52
- package/src/modules/Forms/FormList/FormItem/index.tsx +366 -366
- package/src/modules/Forms/FormList/FormItem/style.tsx +11 -11
- package/src/modules/Forms/FormList/Summary/index.tsx +41 -41
- package/src/modules/Forms/FormList/TemplateModal/index.tsx +92 -92
- package/src/modules/Forms/FormList/TemplateModal/style.tsx +9 -9
- package/src/modules/Forms/FormList/hooks.tsx +91 -91
- package/src/modules/Forms/FormList/index.tsx +442 -442
- package/src/modules/Forms/FormUseModal/FormUseItem/index.tsx +29 -29
- package/src/modules/Forms/FormUseModal/index.tsx +262 -262
- package/src/modules/Forms/FormUseModal/utils.tsx +92 -92
- package/src/modules/Forms/FormsMenu/MenuGroup/index.tsx +43 -43
- package/src/modules/Forms/FormsMenu/index.tsx +65 -65
- package/src/modules/Forms/atoms.tsx +182 -182
- package/src/modules/Forms/utils.tsx +15 -15
- package/src/modules/FramePreview/index.tsx +139 -129
- package/src/modules/GlobalEditor/Editor/index.tsx +111 -111
- package/src/modules/GlobalEditor/PageBrowser/index.tsx +65 -65
- package/src/modules/GlobalEditor/Preview/index.tsx +7 -7
- package/src/modules/GlobalEditor/index.tsx +738 -738
- package/src/modules/GlobalSettings/Robots/Item/RobotsPanel/index.tsx +49 -49
- package/src/modules/GlobalSettings/Robots/Item/index.tsx +14 -14
- package/src/modules/GlobalSettings/Robots/index.tsx +92 -93
- package/src/modules/GlobalSettings/index.tsx +21 -21
- package/src/modules/Login/constants.tsx +2 -2
- package/src/modules/Login/index.tsx +112 -112
- package/src/modules/MediaGallery/Breadcrumb/index.tsx +27 -27
- package/src/modules/MediaGallery/Breadcrumb/style.tsx +7 -7
- package/src/modules/MediaGallery/BulkGridHeader/GridHeader/index.tsx +23 -23
- package/src/modules/MediaGallery/BulkGridHeader/index.tsx +20 -20
- package/src/modules/MediaGallery/BulkGridHeader/style.tsx +1 -1
- package/src/modules/MediaGallery/BulkListHeader/TableHeader/index.tsx +32 -32
- package/src/modules/MediaGallery/BulkListHeader/index.tsx +27 -27
- package/src/modules/MediaGallery/BulkListHeader/style.tsx +1 -1
- package/src/modules/MediaGallery/FolderItem/index.tsx +169 -169
- package/src/modules/MediaGallery/FolderItem/style.tsx +1 -1
- package/src/modules/MediaGallery/FolderTree/MenuItem/index.tsx +64 -64
- package/src/modules/MediaGallery/FolderTree/MenuList/index.tsx +22 -22
- package/src/modules/MediaGallery/FolderTree/index.tsx +43 -43
- package/src/modules/MediaGallery/GridItem/index.tsx +133 -133
- package/src/modules/MediaGallery/ImageDragAndDrop/index.tsx +267 -260
- package/src/modules/MediaGallery/ImageDragAndDrop/style.tsx +32 -32
- package/src/modules/MediaGallery/ImageFilters/Orientation/index.tsx +47 -47
- package/src/modules/MediaGallery/ImageFilters/SortBy/index.tsx +54 -54
- package/src/modules/MediaGallery/ImageFilters/Type/index.tsx +48 -48
- package/src/modules/MediaGallery/ImageFilters/Usage/index.tsx +53 -53
- package/src/modules/MediaGallery/ImageModal/DetailPanel/UsageContent/Item/index.tsx +20 -20
- package/src/modules/MediaGallery/ImageModal/DetailPanel/UsageContent/ItemGroup/index.tsx +29 -29
- package/src/modules/MediaGallery/ImageModal/DetailPanel/UsageContent/index.tsx +201 -202
- package/src/modules/MediaGallery/ImageModal/DetailPanel/index.tsx +179 -179
- package/src/modules/MediaGallery/ImageModal/index.tsx +150 -150
- package/src/modules/MediaGallery/ImageModal/style.tsx +11 -11
- package/src/modules/MediaGallery/ListItem/index.tsx +164 -164
- package/src/modules/MediaGallery/ListItem/style.tsx +12 -12
- package/src/modules/MediaGallery/UploadItem/index.tsx +19 -19
- package/src/modules/MediaGallery/UploadItem/style.tsx +1 -1
- package/src/modules/MediaGallery/atoms.tsx +156 -156
- package/src/modules/MediaGallery/hooks.tsx +88 -88
- package/src/modules/MediaGallery/index.tsx +890 -890
- package/src/modules/MediaGallery/style.tsx +28 -28
- package/src/modules/MediaGallery/utils.tsx +11 -11
- package/src/modules/Navigation/Defaults/BulkHeader/TableHeader/index.tsx +30 -30
- package/src/modules/Navigation/Defaults/BulkHeader/index.tsx +26 -26
- package/src/modules/Navigation/Defaults/DefaultsEditor/Editor/DefaultsBrowser/index.tsx +37 -37
- package/src/modules/Navigation/Defaults/DefaultsEditor/Editor/index.tsx +101 -101
- package/src/modules/Navigation/Defaults/DefaultsEditor/index.tsx +261 -261
- package/src/modules/Navigation/Defaults/Item/atoms.tsx +34 -34
- package/src/modules/Navigation/Defaults/Item/index.tsx +241 -241
- package/src/modules/Navigation/Defaults/Item/style.tsx +9 -9
- package/src/modules/Navigation/Defaults/Nav/index.tsx +21 -21
- package/src/modules/Navigation/Defaults/Nav/style.tsx +9 -9
- package/src/modules/Navigation/Defaults/ReplaceNavModal/index.tsx +180 -180
- package/src/modules/Navigation/Defaults/ReplaceNavModal/style.tsx +15 -15
- package/src/modules/Navigation/Defaults/atoms.tsx +17 -17
- package/src/modules/Navigation/Defaults/index.tsx +301 -301
- package/src/modules/Navigation/Defaults/style.tsx +7 -7
- package/src/modules/Navigation/Menus/List/Nav/index.tsx +37 -37
- package/src/modules/Navigation/Menus/List/Nav/style.tsx +3 -4
- package/src/modules/Navigation/Menus/List/Table/ConfigPanel/Form/index.tsx +49 -49
- package/src/modules/Navigation/Menus/List/Table/ConfigPanel/index.tsx +33 -33
- package/src/modules/Navigation/Menus/List/Table/Header/index.tsx +29 -29
- package/src/modules/Navigation/Menus/List/Table/Header/style.tsx +2 -2
- package/src/modules/Navigation/Menus/List/Table/Item/atoms.tsx +54 -54
- package/src/modules/Navigation/Menus/List/Table/Item/index.tsx +149 -149
- package/src/modules/Navigation/Menus/List/Table/SidePanel/Form/ConnectedField/index.tsx +22 -22
- package/src/modules/Navigation/Menus/List/Table/SidePanel/Form/index.tsx +71 -71
- package/src/modules/Navigation/Menus/List/Table/SidePanel/index.tsx +87 -87
- package/src/modules/Navigation/Menus/List/Table/SidePanel/style.tsx +1 -1
- package/src/modules/Navigation/Menus/List/Table/helpers.tsx +103 -103
- package/src/modules/Navigation/Menus/List/Table/index.tsx +170 -170
- package/src/modules/Navigation/Menus/List/Table/style.tsx +1 -7
- package/src/modules/Navigation/Menus/List/helpers.tsx +36 -36
- package/src/modules/Navigation/Menus/List/index.tsx +50 -50
- package/src/modules/Navigation/Menus/index.tsx +38 -38
- package/src/modules/PageEditor/Editor/index.tsx +153 -153
- package/src/modules/PageEditor/PageBrowser/index.tsx +73 -73
- package/src/modules/PageEditor/Preview/index.tsx +5 -5
- package/src/modules/PageEditor/atoms.tsx +58 -58
- package/src/modules/PageEditor/index.tsx +805 -805
- package/src/modules/PublicPreview/index.tsx +48 -48
- package/src/modules/Redirects/BulkHeader/TableHeader/index.tsx +51 -51
- package/src/modules/Redirects/BulkHeader/index.tsx +56 -56
- package/src/modules/Redirects/RedirectItem/index.tsx +141 -141
- package/src/modules/Redirects/RedirectItem/style.tsx +1 -10
- package/src/modules/Redirects/RedirectPanel/index.tsx +90 -90
- package/src/modules/Redirects/atoms.tsx +185 -185
- package/src/modules/Redirects/hooks.tsx +63 -63
- package/src/modules/Redirects/index.tsx +397 -397
- package/src/modules/Redirects/style.tsx +24 -24
- package/src/modules/Redirects/utils.tsx +10 -7
- package/src/modules/ResetPass/index.tsx +69 -69
- package/src/modules/ResetPass/style.tsx +8 -9
- package/src/modules/Settings/ContentTypes/DataPacks/AddModal/Filter/index.tsx +31 -31
- package/src/modules/Settings/ContentTypes/DataPacks/AddModal/Filter/style.tsx +3 -7
- package/src/modules/Settings/ContentTypes/DataPacks/AddModal/SidePanel/DetailPanel/Item/index.tsx +14 -12
- package/src/modules/Settings/ContentTypes/DataPacks/AddModal/SidePanel/DetailPanel/Item/style.tsx +3 -9
- package/src/modules/Settings/ContentTypes/DataPacks/AddModal/SidePanel/DetailPanel/index.tsx +28 -28
- package/src/modules/Settings/ContentTypes/DataPacks/AddModal/SidePanel/DetailPanel/style.tsx +11 -11
- package/src/modules/Settings/ContentTypes/DataPacks/AddModal/SidePanel/EmptyPanel/index.tsx +8 -8
- package/src/modules/Settings/ContentTypes/DataPacks/AddModal/SidePanel/EmptyPanel/style.tsx +2 -6
- package/src/modules/Settings/ContentTypes/DataPacks/AddModal/SidePanel/MultiplePanel/index.tsx +18 -18
- package/src/modules/Settings/ContentTypes/DataPacks/AddModal/SidePanel/index.tsx +12 -12
- package/src/modules/Settings/ContentTypes/DataPacks/AddModal/SidePanel/style.tsx +3 -5
- package/src/modules/Settings/ContentTypes/DataPacks/AddModal/SortFilter/index.tsx +32 -32
- package/src/modules/Settings/ContentTypes/DataPacks/AddModal/SortFilter/style.tsx +3 -7
- package/src/modules/Settings/ContentTypes/DataPacks/AddModal/index.tsx +113 -113
- package/src/modules/Settings/ContentTypes/DataPacks/AddModal/style.tsx +36 -24
- package/src/modules/Settings/ContentTypes/DataPacks/Config/Card/index.tsx +9 -9
- package/src/modules/Settings/ContentTypes/DataPacks/Config/Card/style.tsx +6 -6
- package/src/modules/Settings/ContentTypes/DataPacks/Config/Form/TemplateConfig/TemplateEditor/Editor/ConfigPanel/IntegrationsField/index.tsx +31 -31
- package/src/modules/Settings/ContentTypes/DataPacks/Config/Form/TemplateConfig/TemplateEditor/Editor/ConfigPanel/NavigationField/index.tsx +102 -102
- package/src/modules/Settings/ContentTypes/DataPacks/Config/Form/TemplateConfig/TemplateEditor/Editor/ConfigPanel/NavigationField/style.tsx +17 -21
- package/src/modules/Settings/ContentTypes/DataPacks/Config/Form/TemplateConfig/TemplateEditor/Editor/ConfigPanel/index.tsx +33 -33
- package/src/modules/Settings/ContentTypes/DataPacks/Config/Form/TemplateConfig/TemplateEditor/Editor/TemplateBrowser/index.tsx +33 -33
- package/src/modules/Settings/ContentTypes/DataPacks/Config/Form/TemplateConfig/TemplateEditor/Editor/index.tsx +6 -6
- package/src/modules/Settings/ContentTypes/DataPacks/Config/Form/TemplateConfig/TemplateEditor/index.tsx +45 -45
- package/src/modules/Settings/ContentTypes/DataPacks/Config/Form/TemplateConfig/TemplateEditor/style.tsx +3 -7
- package/src/modules/Settings/ContentTypes/DataPacks/Config/Form/TemplateConfig/index.tsx +35 -35
- package/src/modules/Settings/ContentTypes/DataPacks/Config/Form/TemplateConfig/style.tsx +7 -14
- package/src/modules/Settings/ContentTypes/DataPacks/Config/Form/index.tsx +219 -219
- package/src/modules/Settings/ContentTypes/DataPacks/Config/Form/style.tsx +2 -2
- package/src/modules/Settings/ContentTypes/DataPacks/Config/index.tsx +61 -61
- package/src/modules/Settings/ContentTypes/DataPacks/Config/style.tsx +6 -7
- package/src/modules/Settings/ContentTypes/DataPacks/Item/index.tsx +102 -102
- package/src/modules/Settings/ContentTypes/DataPacks/Item/style.tsx +10 -18
- package/src/modules/Settings/ContentTypes/DataPacks/List/index.tsx +15 -15
- package/src/modules/Settings/ContentTypes/DataPacks/List/style.tsx +1 -3
- package/src/modules/Settings/ContentTypes/DataPacks/Nav/index.tsx +65 -65
- package/src/modules/Settings/ContentTypes/DataPacks/Nav/style.tsx +11 -18
- package/src/modules/Settings/ContentTypes/DataPacks/hooks.tsx +12 -12
- package/src/modules/Settings/ContentTypes/DataPacks/index.tsx +220 -220
- package/src/modules/Settings/ContentTypes/DataPacks/style.tsx +4 -9
- package/src/modules/Settings/ContentTypes/index.tsx +5 -5
- package/src/modules/Settings/Globals/NavigationModules/SideModal/SideModalOption/index.tsx +16 -16
- package/src/modules/Settings/Globals/NavigationModules/SideModal/index.tsx +85 -85
- package/src/modules/Settings/Globals/NavigationModules/index.tsx +69 -69
- package/src/modules/Settings/Globals/constants.tsx +436 -436
- package/src/modules/Settings/Globals/index.tsx +198 -194
- package/src/modules/Settings/Integrations/BulkHeader/TableHeader/index.tsx +102 -102
- package/src/modules/Settings/Integrations/BulkHeader/TableHeader/style.tsx +8 -8
- package/src/modules/Settings/Integrations/BulkHeader/index.tsx +40 -40
- package/src/modules/Settings/Integrations/IntegrationForm/VariableItem/index.tsx +69 -69
- package/src/modules/Settings/Integrations/IntegrationForm/VariablePanel/index.tsx +118 -118
- package/src/modules/Settings/Integrations/IntegrationForm/index.tsx +275 -275
- package/src/modules/Settings/Integrations/IntegrationForm/style.tsx +11 -11
- package/src/modules/Settings/Integrations/IntegrationItem/CopyModal/index.tsx +31 -31
- package/src/modules/Settings/Integrations/IntegrationItem/index.tsx +278 -278
- package/src/modules/Settings/Integrations/IntegrationItem/style.tsx +21 -21
- package/src/modules/Settings/Integrations/atoms.tsx +32 -32
- package/src/modules/Settings/Integrations/hooks.tsx +67 -67
- package/src/modules/Settings/Integrations/index.tsx +327 -327
- package/src/modules/Settings/Integrations/style.tsx +10 -10
- package/src/modules/Settings/Integrations/utils.tsx +27 -27
- package/src/modules/Settings/Languages/LanguagePanel/Form/ConnectedField/index.tsx +24 -24
- package/src/modules/Settings/Languages/LanguagePanel/Form/index.tsx +41 -41
- package/src/modules/Settings/Languages/LanguagePanel/index.tsx +59 -59
- package/src/modules/Settings/Languages/Table/Header/index.tsx +20 -20
- package/src/modules/Settings/Languages/Table/Header/style.tsx +2 -2
- package/src/modules/Settings/Languages/Table/Item/index.tsx +61 -61
- package/src/modules/Settings/Languages/Table/index.tsx +11 -11
- package/src/modules/Settings/Languages/index.tsx +36 -36
- package/src/modules/Settings/Languages/style.tsx +1 -1
- package/src/modules/Settings/SeoAnalyticsSettings/Analytics/atoms.tsx +129 -129
- package/src/modules/Settings/SeoAnalyticsSettings/Analytics/index.tsx +118 -118
- package/src/modules/Settings/SeoAnalyticsSettings/Analytics/style.tsx +14 -14
- package/src/modules/Settings/SeoAnalyticsSettings/index.tsx +21 -21
- package/src/modules/Settings/Social/index.tsx +93 -93
- package/src/modules/Settings/Social/style.tsx +1 -1
- package/src/modules/Settings/index.tsx +30 -29
- package/src/modules/Sites/SitesList/GridView/GridHeaderFilter/index.tsx +53 -53
- package/src/modules/Sites/SitesList/GridView/GridSiteItem/index.tsx +179 -179
- package/src/modules/Sites/SitesList/ListView/BulkHeader/TableHeader/index.tsx +57 -57
- package/src/modules/Sites/SitesList/ListView/BulkHeader/index.tsx +66 -66
- package/src/modules/Sites/SitesList/ListView/ListSiteItem/index.tsx +205 -205
- package/src/modules/Sites/SitesList/ListView/ListSiteItem/style.tsx +12 -12
- package/src/modules/Sites/SitesList/RecentSiteItem/index.tsx +27 -27
- package/src/modules/Sites/SitesList/SiteModal/index.tsx +67 -67
- package/src/modules/Sites/SitesList/atoms.tsx +29 -29
- package/src/modules/Sites/SitesList/hooks.tsx +98 -98
- package/src/modules/Sites/SitesList/index.tsx +412 -412
- package/src/modules/Sites/SitesList/style.tsx +26 -26
- package/src/modules/Sites/SitesList/utils.tsx +21 -21
- package/src/modules/Sites/index.tsx +60 -60
- package/src/modules/StructuredData/Form/ConnectedField/index.tsx +85 -85
- package/src/modules/StructuredData/Form/index.tsx +464 -464
- package/src/modules/StructuredData/StructuredDataList/BulkHeader/TableHeader/index.tsx +143 -143
- package/src/modules/StructuredData/StructuredDataList/BulkHeader/TableHeader/style.tsx +13 -13
- package/src/modules/StructuredData/StructuredDataList/BulkHeader/index.tsx +96 -96
- package/src/modules/StructuredData/StructuredDataList/ContentFilters/index.tsx +51 -51
- package/src/modules/StructuredData/StructuredDataList/ContentFilters/utils.tsx +42 -42
- package/src/modules/StructuredData/StructuredDataList/GlobalPageItem/atoms.tsx +109 -109
- package/src/modules/StructuredData/StructuredDataList/GlobalPageItem/index.tsx +507 -507
- package/src/modules/StructuredData/StructuredDataList/GlobalPageItem/style.tsx +22 -22
- package/src/modules/StructuredData/StructuredDataList/GlobalPageItem/utils.tsx +11 -11
- package/src/modules/StructuredData/StructuredDataList/OptionTable/index.tsx +102 -102
- package/src/modules/StructuredData/StructuredDataList/OptionTable/store.tsx +19 -19
- package/src/modules/StructuredData/StructuredDataList/OptionTable/style.tsx +1 -1
- package/src/modules/StructuredData/StructuredDataList/StructuredDataItem/index.tsx +298 -298
- package/src/modules/StructuredData/StructuredDataList/StructuredDataItem/style.tsx +12 -12
- package/src/modules/StructuredData/StructuredDataList/StructuredDataItem/utils.tsx +48 -48
- package/src/modules/StructuredData/StructuredDataList/atoms.tsx +65 -65
- package/src/modules/StructuredData/StructuredDataList/hooks.tsx +108 -108
- package/src/modules/StructuredData/StructuredDataList/index.tsx +782 -782
- package/src/modules/StructuredData/StructuredDataList/utils.tsx +161 -161
- package/src/modules/StructuredData/index.tsx +8 -8
- package/src/modules/Users/Profile/atoms.tsx +32 -32
- package/src/modules/Users/Profile/index.tsx +82 -82
- package/src/modules/Users/Roles/BulkHeader/TableHeader/index.tsx +50 -50
- package/src/modules/Users/Roles/BulkHeader/TableHeader/style.tsx +1 -1
- package/src/modules/Users/Roles/BulkHeader/index.tsx +60 -60
- package/src/modules/Users/Roles/RoleItem/index.tsx +80 -80
- package/src/modules/Users/Roles/RoleItem/style.tsx +13 -13
- package/src/modules/Users/Roles/SideModal/index.tsx +64 -64
- package/src/modules/Users/Roles/SideModal/style.tsx +20 -21
- package/src/modules/Users/Roles/hooks.tsx +74 -74
- package/src/modules/Users/Roles/index.tsx +218 -218
- package/src/modules/Users/Roles/utils.tsx +7 -7
- package/src/modules/Users/UserCreate/OptionItem/index.tsx +32 -32
- package/src/modules/Users/UserCreate/OptionItem/style.tsx +5 -5
- package/src/modules/Users/UserCreate/SiteItem/RolesModal/RoleItem/index.tsx +32 -32
- package/src/modules/Users/UserCreate/SiteItem/RolesModal/index.tsx +124 -123
- package/src/modules/Users/UserCreate/SiteItem/RolesModal/style.tsx +12 -12
- package/src/modules/Users/UserCreate/SiteItem/index.tsx +101 -101
- package/src/modules/Users/UserCreate/SiteItem/style.tsx +5 -5
- package/src/modules/Users/UserCreate/index.tsx +315 -315
- package/src/modules/Users/UserCreate/style.tsx +20 -20
- package/src/modules/Users/UserEdit/index.tsx +159 -159
- package/src/modules/Users/UserEdit/style.tsx +2 -2
- package/src/modules/Users/UserForm/atoms.tsx +100 -100
- package/src/modules/Users/UserForm/helpers.tsx +4 -4
- package/src/modules/Users/UserForm/index.tsx +494 -494
- package/src/modules/Users/UserForm/style.tsx +18 -18
- package/src/modules/Users/UserList/BulkHeader/TableHeader/index.tsx +86 -86
- package/src/modules/Users/UserList/BulkHeader/index.tsx +62 -62
- package/src/modules/Users/UserList/UserItem/index.tsx +231 -231
- package/src/modules/Users/UserList/UserItem/style.tsx +15 -15
- package/src/modules/Users/UserList/hooks.tsx +73 -73
- package/src/modules/Users/UserList/index.tsx +312 -312
- package/src/modules/Users/UserList/style.tsx +3 -3
- package/src/modules/Users/UserList/utils.tsx +6 -6
- package/src/modules/Users/index.tsx +36 -36
- package/src/react-app-env.d.ts +36 -36
- package/src/routes/index.tsx +15 -15
- package/src/routes/multisite.tsx +205 -205
- package/src/routes/publicRoutes.tsx +5 -5
- package/src/routes/site.tsx +260 -260
- package/src/schemas/index.tsx +1 -1
- package/src/schemas/pages/FormPage.tsx +48 -48
- package/src/schemas/pages/GlobalPage.tsx +208 -208
- package/src/schemas/pages/Page.tsx +278 -278
- package/src/serviceWorker.ts +99 -109
- package/src/themes/theme.json +370 -370
- package/src/types/files.tsx +72 -72
- package/src/types/forms.tsx +54 -54
- package/src/types/index.tsx +794 -794
- package/src/types/logs.tsx +4 -4
- package/tsconfig.json +21 -35
- package/tsconfig.paths.json +20 -20
- package/scripts/start/build-dev.sh +0 -2
- package/scripts/start/build.sh +0 -2
- package/scripts/start/check-node-version.sh +0 -2
- package/scripts/start/start-dev.sh +0 -2
- package/scripts/start/start-local.sh +0 -2
- package/scripts/start/start-staging.sh +0 -2
- package/scripts/start/start-test.sh +0 -2
|
@@ -1,1671 +1,1671 @@
|
|
|
1
1
|
export const structuredDataMock = {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
2
|
+
isActive: false,
|
|
3
|
+
categories: {
|
|
4
|
+
global: [
|
|
5
|
+
{
|
|
6
|
+
id: "STORY_TYPE",
|
|
7
|
+
title: "Story Type",
|
|
8
|
+
dataPacks: ["STORIES"],
|
|
9
|
+
local: false,
|
|
10
|
+
taxonomy: true,
|
|
11
|
+
fromPage: false,
|
|
12
|
+
translate: true,
|
|
13
|
+
schema: null,
|
|
14
|
+
clone: null,
|
|
15
|
+
defaults: null,
|
|
16
|
+
editable: true,
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
id: "STORY_PROFILE",
|
|
20
|
+
title: "Story Profile",
|
|
21
|
+
dataPacks: ["STORIES", "PEOPLE"],
|
|
22
|
+
local: false,
|
|
23
|
+
taxonomy: true,
|
|
24
|
+
fromPage: false,
|
|
25
|
+
translate: true,
|
|
26
|
+
schema: null,
|
|
27
|
+
clone: null,
|
|
28
|
+
defaults: null,
|
|
29
|
+
editable: true,
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
id: "PROGRAM_TYPES",
|
|
33
|
+
title: "Program Type",
|
|
34
|
+
dataPacks: ["EVENTS", "STORIES", "STUDIES"],
|
|
35
|
+
local: false,
|
|
36
|
+
taxonomy: true,
|
|
37
|
+
fromPage: false,
|
|
38
|
+
translate: true,
|
|
39
|
+
schema: null,
|
|
40
|
+
clone: null,
|
|
41
|
+
defaults: null,
|
|
42
|
+
editable: true,
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
id: "PROGRAM_FORMAT",
|
|
46
|
+
title: "Program Format",
|
|
47
|
+
dataPacks: ["EVENTS", "STORIES", "STUDIES"],
|
|
48
|
+
local: false,
|
|
49
|
+
taxonomy: true,
|
|
50
|
+
fromPage: false,
|
|
51
|
+
translate: true,
|
|
52
|
+
schema: null,
|
|
53
|
+
clone: null,
|
|
54
|
+
defaults: null,
|
|
55
|
+
editable: true,
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
id: "SCHOOLS",
|
|
59
|
+
title: "Schools",
|
|
60
|
+
dataPacks: ["NEWS", "STUDIES", "TEACHERS", "TESTIMONIALS"],
|
|
61
|
+
local: false,
|
|
62
|
+
taxonomy: true,
|
|
63
|
+
fromPage: false,
|
|
64
|
+
translate: true,
|
|
65
|
+
schema: null,
|
|
66
|
+
clone: null,
|
|
67
|
+
defaultValues: null,
|
|
68
|
+
editable: true,
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
id: "PATHWAYS",
|
|
72
|
+
title: "Pathways",
|
|
73
|
+
dataPacks: ["NEWS", "STUDIES", "TEACHERS"],
|
|
74
|
+
local: false,
|
|
75
|
+
taxonomy: true,
|
|
76
|
+
fromPage: false,
|
|
77
|
+
translate: true,
|
|
78
|
+
schema: null,
|
|
79
|
+
clone: null,
|
|
80
|
+
defaultValues: null,
|
|
81
|
+
editable: true,
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
id: "NEWS_AREAS",
|
|
85
|
+
title: "News Areas",
|
|
86
|
+
dataPacks: ["NEWS"],
|
|
87
|
+
local: false,
|
|
88
|
+
taxonomy: true,
|
|
89
|
+
fromPage: false,
|
|
90
|
+
translate: true,
|
|
91
|
+
schema: null,
|
|
92
|
+
clone: null,
|
|
93
|
+
defaults: null,
|
|
94
|
+
editable: true,
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
id: "GLOBAL_NEWS",
|
|
98
|
+
title: "Global News",
|
|
99
|
+
dataPacks: ["NEWS"],
|
|
100
|
+
local: false,
|
|
101
|
+
taxonomy: true,
|
|
102
|
+
fromPage: false,
|
|
103
|
+
translate: true,
|
|
104
|
+
schema: null,
|
|
105
|
+
clone: null,
|
|
106
|
+
defaults: null,
|
|
107
|
+
editable: true,
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
id: "EVENT_AREAS",
|
|
111
|
+
title: "Event Areas",
|
|
112
|
+
dataPacks: ["EVENTS"],
|
|
113
|
+
local: false,
|
|
114
|
+
taxonomy: true,
|
|
115
|
+
fromPage: false,
|
|
116
|
+
translate: true,
|
|
117
|
+
schema: null,
|
|
118
|
+
clone: null,
|
|
119
|
+
defaults: null,
|
|
120
|
+
editable: true,
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
id: "LOCATION",
|
|
124
|
+
title: "Location",
|
|
125
|
+
dataPacks: ["EVENTS"],
|
|
126
|
+
local: false,
|
|
127
|
+
taxonomy: true,
|
|
128
|
+
fromPage: false,
|
|
129
|
+
translate: true,
|
|
130
|
+
schema: null,
|
|
131
|
+
clone: null,
|
|
132
|
+
defaults: null,
|
|
133
|
+
editable: true,
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
id: "EVENT_FORMATS",
|
|
137
|
+
title: "Event Formats",
|
|
138
|
+
dataPacks: ["EVENTS"],
|
|
139
|
+
local: false,
|
|
140
|
+
taxonomy: true,
|
|
141
|
+
fromPage: false,
|
|
142
|
+
translate: true,
|
|
143
|
+
schema: null,
|
|
144
|
+
clone: null,
|
|
145
|
+
defaults: null,
|
|
146
|
+
editable: true,
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
id: "EVENT_LOCATIONS",
|
|
150
|
+
title: "Event Locations",
|
|
151
|
+
dataPacks: ["EVENTS"],
|
|
152
|
+
local: false,
|
|
153
|
+
taxonomy: true,
|
|
154
|
+
fromPage: false,
|
|
155
|
+
translate: true,
|
|
156
|
+
schema: null,
|
|
157
|
+
clone: null,
|
|
158
|
+
defaults: null,
|
|
159
|
+
editable: true,
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
id: "EVENT_REGION",
|
|
163
|
+
title: "Event Region",
|
|
164
|
+
dataPacks: ["EVENTS"],
|
|
165
|
+
local: false,
|
|
166
|
+
taxonomy: true,
|
|
167
|
+
fromPage: false,
|
|
168
|
+
translate: true,
|
|
169
|
+
schema: null,
|
|
170
|
+
clone: null,
|
|
171
|
+
defaults: null,
|
|
172
|
+
editable: true,
|
|
173
|
+
},
|
|
174
|
+
],
|
|
175
|
+
site: [],
|
|
176
|
+
},
|
|
177
|
+
structuredData: {
|
|
178
|
+
global: [
|
|
179
|
+
{
|
|
180
|
+
id: "PROGRAMS",
|
|
181
|
+
title: "Programs",
|
|
182
|
+
dataPacks: ["STUDIES"],
|
|
183
|
+
local: false,
|
|
184
|
+
taxonomy: false,
|
|
185
|
+
fromPage: true,
|
|
186
|
+
translate: true,
|
|
187
|
+
clone: null,
|
|
188
|
+
defaultValues: null,
|
|
189
|
+
schema: {
|
|
190
|
+
templates: ["ProgramDetail"],
|
|
191
|
+
searchFrom: [],
|
|
192
|
+
fields: [
|
|
193
|
+
{
|
|
194
|
+
key: "title",
|
|
195
|
+
title: "Title",
|
|
196
|
+
type: "TextField",
|
|
197
|
+
from: "title",
|
|
198
|
+
showList: false,
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
key: "programType",
|
|
202
|
+
title: "Type of program",
|
|
203
|
+
type: "AsyncCheckGroup",
|
|
204
|
+
source: "PROGRAM_TYPES",
|
|
205
|
+
from: "programType",
|
|
206
|
+
showList: false,
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
key: "programFormat",
|
|
210
|
+
title: "Format of program",
|
|
211
|
+
type: "AsyncCheckGroup",
|
|
212
|
+
source: "PROGRAM_FORMAT",
|
|
213
|
+
from: "programFormat",
|
|
214
|
+
showList: false,
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
key: "schoolsData",
|
|
218
|
+
title: "Schools",
|
|
219
|
+
name: "Schools Data",
|
|
220
|
+
type: "AsyncCheckGroup",
|
|
221
|
+
from: "schoolsData",
|
|
222
|
+
source: "SCHOOLS",
|
|
223
|
+
indexable: true,
|
|
224
|
+
showList: true,
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
key: "pathWaysData",
|
|
228
|
+
title: "PathWay Data",
|
|
229
|
+
name: "PathWay Data",
|
|
230
|
+
type: "ReferenceField",
|
|
231
|
+
from: "pathWaysData",
|
|
232
|
+
showList: false,
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
key: "abstract",
|
|
236
|
+
title: "Abstract",
|
|
237
|
+
type: "RichText",
|
|
238
|
+
from: "abstract",
|
|
239
|
+
showList: false,
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
key: "programQuickFactsSection",
|
|
243
|
+
title: "Program Quick Facts",
|
|
244
|
+
type: "ComponentArray",
|
|
245
|
+
from: "programQuickFactsSection",
|
|
246
|
+
showList: false,
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
key: "heroSection",
|
|
250
|
+
title: "Hero Section",
|
|
251
|
+
type: "ComponentArray",
|
|
252
|
+
from: "heroSection",
|
|
253
|
+
showList: false,
|
|
254
|
+
},
|
|
255
|
+
],
|
|
256
|
+
},
|
|
257
|
+
editable: true,
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
id: "TEACHERS",
|
|
261
|
+
title: "Teachers",
|
|
262
|
+
dataPacks: ["TEACHERS"],
|
|
263
|
+
local: false,
|
|
264
|
+
taxonomy: false,
|
|
265
|
+
fromPage: true,
|
|
266
|
+
translate: true,
|
|
267
|
+
schema: {
|
|
268
|
+
templates: ["TeacherDetail"],
|
|
269
|
+
fields: [
|
|
270
|
+
{
|
|
271
|
+
key: "title",
|
|
272
|
+
title: "Name",
|
|
273
|
+
type: "TextField",
|
|
274
|
+
from: "title",
|
|
275
|
+
mandatory: true,
|
|
276
|
+
showList: false,
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
key: "image",
|
|
280
|
+
title: "Image",
|
|
281
|
+
type: "ImageField",
|
|
282
|
+
from: "image",
|
|
283
|
+
mandatory: true,
|
|
284
|
+
showList: false,
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
key: "position",
|
|
288
|
+
title: "Position",
|
|
289
|
+
type: "TextField",
|
|
290
|
+
from: "position",
|
|
291
|
+
mandatory: true,
|
|
292
|
+
showList: false,
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
key: "linkedin",
|
|
296
|
+
title: "Linkedin",
|
|
297
|
+
from: "linkedin",
|
|
298
|
+
type: "UrlField",
|
|
299
|
+
showList: false,
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
key: "units",
|
|
303
|
+
title: "Unit",
|
|
304
|
+
from: "categories.units",
|
|
305
|
+
type: "AsyncCheckGroup",
|
|
306
|
+
source: "UNIT",
|
|
307
|
+
showList: false,
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
key: "categories.schools",
|
|
311
|
+
title: "Schools",
|
|
312
|
+
from: "categories.schools",
|
|
313
|
+
type: "AsyncCheckGroup",
|
|
314
|
+
source: "SCHOOLS",
|
|
315
|
+
indexable: true,
|
|
316
|
+
showList: true,
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
key: "pathways",
|
|
320
|
+
title: "Pathways",
|
|
321
|
+
from: "categories.pathways",
|
|
322
|
+
type: "AsyncCheckGroup",
|
|
323
|
+
source: "PATHWAYS",
|
|
324
|
+
showList: false,
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
key: "programs",
|
|
328
|
+
title: "Programs",
|
|
329
|
+
from: "categories.programs",
|
|
330
|
+
type: "AsyncCheckGroup",
|
|
331
|
+
source: "PROGRAMS",
|
|
332
|
+
showList: false,
|
|
333
|
+
},
|
|
334
|
+
],
|
|
335
|
+
},
|
|
336
|
+
clone: null,
|
|
337
|
+
defaults: null,
|
|
338
|
+
editable: true,
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
id: "ARTICLES",
|
|
342
|
+
title: "Articles",
|
|
343
|
+
dataPacks: ["ARTICLES"],
|
|
344
|
+
local: false,
|
|
345
|
+
taxonomy: false,
|
|
346
|
+
fromPage: false,
|
|
347
|
+
translate: true,
|
|
348
|
+
schema: {
|
|
349
|
+
fields: [
|
|
350
|
+
{
|
|
351
|
+
key: "title",
|
|
352
|
+
title: "Title",
|
|
353
|
+
type: "TextField",
|
|
354
|
+
mandatory: true,
|
|
355
|
+
showList: false,
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
key: "subtitle",
|
|
359
|
+
title: "Subtitle",
|
|
360
|
+
type: "TextField",
|
|
361
|
+
mandatory: true,
|
|
362
|
+
showList: false,
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
key: "content",
|
|
366
|
+
title: "Content",
|
|
367
|
+
type: "RichText",
|
|
368
|
+
mandatory: true,
|
|
369
|
+
showList: false,
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
key: "linkText",
|
|
373
|
+
title: "Link text",
|
|
374
|
+
type: "TextField",
|
|
375
|
+
mandatory: true,
|
|
376
|
+
showList: false,
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
key: "link",
|
|
380
|
+
title: "Link",
|
|
381
|
+
type: "UrlField",
|
|
382
|
+
mandatory: true,
|
|
383
|
+
showList: false,
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
key: "image",
|
|
387
|
+
title: "Image",
|
|
388
|
+
type: "ImageField",
|
|
389
|
+
mandatory: true,
|
|
390
|
+
showList: false,
|
|
391
|
+
},
|
|
392
|
+
],
|
|
393
|
+
},
|
|
394
|
+
clone: null,
|
|
395
|
+
defaultValues: null,
|
|
396
|
+
editable: true,
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
id: "NEWS",
|
|
400
|
+
title: "News",
|
|
401
|
+
dataPacks: ["NEWS"],
|
|
402
|
+
local: false,
|
|
403
|
+
taxonomy: false,
|
|
404
|
+
fromPage: true,
|
|
405
|
+
translate: true,
|
|
406
|
+
schema: {
|
|
407
|
+
templates: ["NewsDetail"],
|
|
408
|
+
fields: [
|
|
409
|
+
{
|
|
410
|
+
key: "title",
|
|
411
|
+
title: "Title",
|
|
412
|
+
from: "title",
|
|
413
|
+
type: "TextField",
|
|
414
|
+
showList: false,
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
key: "abstract",
|
|
418
|
+
title: "Abstract",
|
|
419
|
+
from: "abstract",
|
|
420
|
+
type: "TextField",
|
|
421
|
+
showList: false,
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
key: "image",
|
|
425
|
+
title: "Image",
|
|
426
|
+
from: "image",
|
|
427
|
+
type: "ImageField",
|
|
428
|
+
showList: false,
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
key: "categories",
|
|
432
|
+
title: "Categories",
|
|
433
|
+
from: "categories",
|
|
434
|
+
type: "AsyncCheckGroup",
|
|
435
|
+
source: "NEWS_AREAS",
|
|
436
|
+
indexable: true,
|
|
437
|
+
showList: true,
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
key: "lead",
|
|
441
|
+
title: "Lead",
|
|
442
|
+
from: "lead",
|
|
443
|
+
type: "TextField",
|
|
444
|
+
showList: false,
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
key: "longAbstract",
|
|
448
|
+
title: "longAbstract",
|
|
449
|
+
from: "longAbstract",
|
|
450
|
+
type: "TextField",
|
|
451
|
+
showList: false,
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
key: "content",
|
|
455
|
+
title: "Content",
|
|
456
|
+
from: "content",
|
|
457
|
+
type: "TextField",
|
|
458
|
+
showList: false,
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
key: "date",
|
|
462
|
+
title: "Date",
|
|
463
|
+
from: "date",
|
|
464
|
+
type: "TextField",
|
|
465
|
+
showList: false,
|
|
466
|
+
},
|
|
467
|
+
],
|
|
468
|
+
searchFrom: ["lead", "longAbstract", "content"],
|
|
469
|
+
},
|
|
470
|
+
clone: null,
|
|
471
|
+
defaultValues: null,
|
|
472
|
+
editable: true,
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
id: "STORIES",
|
|
476
|
+
title: "Stories",
|
|
477
|
+
dataPacks: ["STORIES"],
|
|
478
|
+
local: false,
|
|
479
|
+
taxonomy: false,
|
|
480
|
+
fromPage: true,
|
|
481
|
+
translate: true,
|
|
482
|
+
schema: {
|
|
483
|
+
templates: ["StoryDetail"],
|
|
484
|
+
fields: [
|
|
485
|
+
{
|
|
486
|
+
key: "title",
|
|
487
|
+
title: "Title",
|
|
488
|
+
type: "TextField",
|
|
489
|
+
from: "title",
|
|
490
|
+
mandatory: true,
|
|
491
|
+
indexable: true,
|
|
492
|
+
showList: false,
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
key: "storyType",
|
|
496
|
+
title: "Type of story",
|
|
497
|
+
type: "AsyncCheckGroup",
|
|
498
|
+
source: "STORY_TYPE",
|
|
499
|
+
from: "storyType",
|
|
500
|
+
mandatory: true,
|
|
501
|
+
showList: false,
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
key: "storyProfile",
|
|
505
|
+
title: "Profile",
|
|
506
|
+
type: "AsyncCheckGroup",
|
|
507
|
+
source: "STORY_PROFILE",
|
|
508
|
+
from: "storyProfile",
|
|
509
|
+
mandatory: true,
|
|
510
|
+
indexable: true,
|
|
511
|
+
showList: true,
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
key: "quote",
|
|
515
|
+
title: "Quote",
|
|
516
|
+
type: "RichText",
|
|
517
|
+
from: "quote",
|
|
518
|
+
mandatory: true,
|
|
519
|
+
showList: false,
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
key: "image",
|
|
523
|
+
title: "Image",
|
|
524
|
+
type: "TextField",
|
|
525
|
+
from: "image",
|
|
526
|
+
showList: false,
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
key: "who",
|
|
530
|
+
title: "Who",
|
|
531
|
+
type: "TextField",
|
|
532
|
+
from: "who",
|
|
533
|
+
mandatory: true,
|
|
534
|
+
showList: false,
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
key: "position",
|
|
538
|
+
title: "Position",
|
|
539
|
+
type: "TextField",
|
|
540
|
+
from: "position",
|
|
541
|
+
mandatory: true,
|
|
542
|
+
showList: false,
|
|
543
|
+
},
|
|
544
|
+
],
|
|
545
|
+
searchFrom: ["quote", "who", "position"],
|
|
546
|
+
},
|
|
547
|
+
clone: null,
|
|
548
|
+
defaultValues: null,
|
|
549
|
+
editable: true,
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
id: "PEOPLE",
|
|
553
|
+
title: "People",
|
|
554
|
+
dataPacks: ["PEOPLE"],
|
|
555
|
+
local: false,
|
|
556
|
+
taxonomy: false,
|
|
557
|
+
fromPage: false,
|
|
558
|
+
translate: true,
|
|
559
|
+
schema: {
|
|
560
|
+
fields: [
|
|
561
|
+
{
|
|
562
|
+
key: "title",
|
|
563
|
+
title: "Name",
|
|
564
|
+
type: "TextField",
|
|
565
|
+
mandatory: true,
|
|
566
|
+
showList: false,
|
|
567
|
+
},
|
|
568
|
+
{
|
|
569
|
+
key: "profile",
|
|
570
|
+
title: "Profile",
|
|
571
|
+
from: "profile",
|
|
572
|
+
type: "AsyncCheckGroup",
|
|
573
|
+
source: "STORY_PROFILE",
|
|
574
|
+
indexable: true,
|
|
575
|
+
showList: true,
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
key: "image",
|
|
579
|
+
title: "Image",
|
|
580
|
+
type: "ImageField",
|
|
581
|
+
mandatory: true,
|
|
582
|
+
showList: false,
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
key: "position",
|
|
586
|
+
title: "Position",
|
|
587
|
+
type: "TextField",
|
|
588
|
+
mandatory: true,
|
|
589
|
+
showList: false,
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
key: "linkedin",
|
|
593
|
+
title: "Linkedin",
|
|
594
|
+
type: "UrlField",
|
|
595
|
+
showList: false,
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
key: "phone",
|
|
599
|
+
title: "Phone",
|
|
600
|
+
type: "TextField",
|
|
601
|
+
showList: false,
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
key: "email",
|
|
605
|
+
title: "Email",
|
|
606
|
+
type: "TextField",
|
|
607
|
+
showList: false,
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
key: "imageBackground",
|
|
611
|
+
title: "imageBackground",
|
|
612
|
+
type: "ImageField",
|
|
613
|
+
showList: false,
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
key: "modalDetail",
|
|
617
|
+
title: "Modal Detail",
|
|
618
|
+
type: "RichText",
|
|
619
|
+
showList: false,
|
|
620
|
+
},
|
|
621
|
+
],
|
|
622
|
+
searchFrom: [],
|
|
623
|
+
},
|
|
624
|
+
clone: null,
|
|
625
|
+
defaultValues: null,
|
|
626
|
+
editable: true,
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
id: "TESTIMONIALS",
|
|
630
|
+
title: "Testimonials",
|
|
631
|
+
dataPacks: ["TESTIMONIALS"],
|
|
632
|
+
local: false,
|
|
633
|
+
taxonomy: false,
|
|
634
|
+
fromPage: false,
|
|
635
|
+
translate: true,
|
|
636
|
+
schema: {
|
|
637
|
+
fields: [
|
|
638
|
+
{
|
|
639
|
+
key: "image",
|
|
640
|
+
title: "Image",
|
|
641
|
+
type: "ImageField",
|
|
642
|
+
mandatory: true,
|
|
643
|
+
showList: false,
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
key: "quote",
|
|
647
|
+
title: "Quote",
|
|
648
|
+
type: "RichText",
|
|
649
|
+
mandatory: true,
|
|
650
|
+
showList: false,
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
key: "title",
|
|
654
|
+
title: "Author",
|
|
655
|
+
type: "TextField",
|
|
656
|
+
mandatory: true,
|
|
657
|
+
searchable: false,
|
|
658
|
+
showList: false,
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
key: "jobTitle",
|
|
662
|
+
title: "Job Title",
|
|
663
|
+
type: "RichText",
|
|
664
|
+
mandatory: true,
|
|
665
|
+
showList: false,
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
key: "school",
|
|
669
|
+
title: "School",
|
|
670
|
+
from: "school",
|
|
671
|
+
type: "AsyncCheckGroup",
|
|
672
|
+
source: "SCHOOLS",
|
|
673
|
+
indexable: true,
|
|
674
|
+
showList: true,
|
|
675
|
+
},
|
|
676
|
+
],
|
|
677
|
+
},
|
|
678
|
+
clone: null,
|
|
679
|
+
defaultValues: {
|
|
680
|
+
quote: "Lorem ipsum",
|
|
681
|
+
title: "Title",
|
|
682
|
+
jobTitle: "Job title",
|
|
683
|
+
},
|
|
684
|
+
editable: true,
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
id: "EVENTS",
|
|
688
|
+
title: "Events",
|
|
689
|
+
dataPacks: ["EVENTS"],
|
|
690
|
+
local: false,
|
|
691
|
+
taxonomy: false,
|
|
692
|
+
fromPage: true,
|
|
693
|
+
translate: true,
|
|
694
|
+
schema: {
|
|
695
|
+
templates: ["EventDetail"],
|
|
696
|
+
fields: [
|
|
697
|
+
{
|
|
698
|
+
key: "title",
|
|
699
|
+
title: "Title",
|
|
700
|
+
type: "TextField",
|
|
701
|
+
from: "title",
|
|
702
|
+
showList: false,
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
key: "image",
|
|
706
|
+
title: "Image",
|
|
707
|
+
type: "ImageField",
|
|
708
|
+
from: "image",
|
|
709
|
+
showList: false,
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
key: "tag",
|
|
713
|
+
title: "Tag",
|
|
714
|
+
type: "TextField",
|
|
715
|
+
from: "tag",
|
|
716
|
+
showList: false,
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
key: "dateTime",
|
|
720
|
+
title: "Event date and time",
|
|
721
|
+
type: "DateField",
|
|
722
|
+
from: "dateTime",
|
|
723
|
+
indexable: true,
|
|
724
|
+
showList: false,
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
key: "eventHour",
|
|
728
|
+
title: "Event Hour",
|
|
729
|
+
type: "TextField",
|
|
730
|
+
from: "eventHour",
|
|
731
|
+
showList: false,
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
key: "language",
|
|
735
|
+
title: "Language",
|
|
736
|
+
type: "TextField",
|
|
737
|
+
from: "language",
|
|
738
|
+
showList: false,
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
key: "address",
|
|
742
|
+
title: "Address",
|
|
743
|
+
type: "TextField",
|
|
744
|
+
from: "address",
|
|
745
|
+
showList: false,
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
key: "country",
|
|
749
|
+
title: "Country",
|
|
750
|
+
type: "TextField",
|
|
751
|
+
from: "country",
|
|
752
|
+
showList: false,
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
key: "distributorDescription",
|
|
756
|
+
title: "Distributor description",
|
|
757
|
+
type: "TextField",
|
|
758
|
+
from: "distributorDescription",
|
|
759
|
+
showList: false,
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
key: "addToCalendar",
|
|
763
|
+
title: "Add to calendar button",
|
|
764
|
+
type: "ComponentContainer",
|
|
765
|
+
from: "addToCalendar",
|
|
766
|
+
showList: false,
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
key: "eventAreas",
|
|
770
|
+
title: "Event Areas",
|
|
771
|
+
type: "AsyncCheckGroup",
|
|
772
|
+
source: "EVENT_AREAS",
|
|
773
|
+
from: "eventAreas",
|
|
774
|
+
showList: false,
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
key: "eventLocation",
|
|
778
|
+
title: "Event Locations",
|
|
779
|
+
type: "AsyncCheckGroup",
|
|
780
|
+
source: "EVENT_LOCATIONS",
|
|
781
|
+
from: "eventLocation",
|
|
782
|
+
showList: false,
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
key: "eventFormat",
|
|
786
|
+
title: "Event Formats",
|
|
787
|
+
type: "AsyncCheckGroup",
|
|
788
|
+
source: "EVENT_FORMATS",
|
|
789
|
+
from: "eventFormat",
|
|
790
|
+
showList: false,
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
key: "programType",
|
|
794
|
+
title: "Program Type",
|
|
795
|
+
type: "AsyncCheckGroup",
|
|
796
|
+
source: "PROGRAM_TYPES",
|
|
797
|
+
from: "programType",
|
|
798
|
+
showList: false,
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
key: "eventRegion",
|
|
802
|
+
title: "Region",
|
|
803
|
+
type: "AsyncCheckGroup",
|
|
804
|
+
source: "EVENT_REGION",
|
|
805
|
+
from: "eventRegion",
|
|
806
|
+
indexable: true,
|
|
807
|
+
showList: true,
|
|
808
|
+
},
|
|
809
|
+
],
|
|
810
|
+
searchFrom: ["tag"],
|
|
811
|
+
},
|
|
812
|
+
clone: null,
|
|
813
|
+
defaultValues: null,
|
|
814
|
+
editable: true,
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
id: "STUDYPLANS",
|
|
818
|
+
title: "StudyPlans",
|
|
819
|
+
dataPacks: ["STUDYPLANS"],
|
|
820
|
+
local: false,
|
|
821
|
+
taxonomy: false,
|
|
822
|
+
fromPage: false,
|
|
823
|
+
translate: true,
|
|
824
|
+
schema: {
|
|
825
|
+
fields: [
|
|
826
|
+
{
|
|
827
|
+
key: "title",
|
|
828
|
+
title: "Title",
|
|
829
|
+
type: "TextField",
|
|
830
|
+
mandatory: true,
|
|
831
|
+
searchable: false,
|
|
832
|
+
showList: false,
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
type: "ArrayFieldGroup",
|
|
836
|
+
title: "",
|
|
837
|
+
key: "years",
|
|
838
|
+
name: "Year",
|
|
839
|
+
fields: [
|
|
840
|
+
{
|
|
841
|
+
title: "Title",
|
|
842
|
+
type: "TextField",
|
|
843
|
+
key: "yearTitle",
|
|
844
|
+
mandatory: "true",
|
|
845
|
+
isTitle: true,
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
title: "Title Description",
|
|
849
|
+
type: "TextField",
|
|
850
|
+
key: "yearSubtitle",
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
title: "Year Description",
|
|
854
|
+
type: "RichText",
|
|
855
|
+
key: "yearDescription",
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
key: "divider",
|
|
859
|
+
title: "",
|
|
860
|
+
type: "FieldsDivider",
|
|
861
|
+
data: {
|
|
862
|
+
title: "Year Media",
|
|
863
|
+
text: "You can add a video or image to the year. if you add both, image will be the thumbnail of the video.",
|
|
864
|
+
},
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
key: "yearVideo",
|
|
868
|
+
title: "Year Video URL",
|
|
869
|
+
type: "TextField",
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
key: "yearImg",
|
|
873
|
+
title: "Year Image",
|
|
874
|
+
type: "ImageField",
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
type: "ArrayFieldGroup",
|
|
878
|
+
title: "SEMESTERS",
|
|
879
|
+
key: "semesters",
|
|
880
|
+
name: "Semester",
|
|
881
|
+
mandatory: "true",
|
|
882
|
+
fields: [
|
|
883
|
+
{
|
|
884
|
+
title: "Title",
|
|
885
|
+
type: "TextField",
|
|
886
|
+
key: "semTitle",
|
|
887
|
+
mandatory: "true",
|
|
888
|
+
isTitle: true,
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
type: "ArrayFieldGroup",
|
|
892
|
+
title: "Subjects",
|
|
893
|
+
key: "subjects",
|
|
894
|
+
name: "Subject",
|
|
895
|
+
mandatory: "true",
|
|
896
|
+
fields: [
|
|
897
|
+
{
|
|
898
|
+
title: "Title",
|
|
899
|
+
type: "TextField",
|
|
900
|
+
key: "subjTitle",
|
|
901
|
+
mandatory: "true",
|
|
902
|
+
isTitle: true,
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
title: "Type",
|
|
906
|
+
type: "TextField",
|
|
907
|
+
key: "subjType",
|
|
908
|
+
mandatory: "true",
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
title: "Credits",
|
|
912
|
+
type: "NumberField",
|
|
913
|
+
key: "subjCredits",
|
|
914
|
+
mandatory: "true",
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
type: "ReferenceField",
|
|
918
|
+
source: ["TEACHERS"],
|
|
919
|
+
key: "subjTeachers",
|
|
920
|
+
title: "Teachers",
|
|
921
|
+
selectionType: ["manual"],
|
|
922
|
+
maxItems: 4,
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
title: "Document",
|
|
926
|
+
type: "ConditionalField",
|
|
927
|
+
key: "documentConditional",
|
|
928
|
+
options: [
|
|
929
|
+
{
|
|
930
|
+
value: "file",
|
|
931
|
+
title: "Upload File",
|
|
932
|
+
name: "file",
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
value: "url",
|
|
936
|
+
title: "Url",
|
|
937
|
+
name: "url",
|
|
938
|
+
},
|
|
939
|
+
],
|
|
940
|
+
fields: [
|
|
941
|
+
{
|
|
942
|
+
title: "Document File",
|
|
943
|
+
type: "FileField",
|
|
944
|
+
key: "subjDocumentFile",
|
|
945
|
+
condition: "file",
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
title: "Document URL",
|
|
949
|
+
type: "TextField",
|
|
950
|
+
key: "subjDocumentUrl",
|
|
951
|
+
placeholder: "https://",
|
|
952
|
+
condition: "url",
|
|
953
|
+
},
|
|
954
|
+
],
|
|
955
|
+
},
|
|
956
|
+
],
|
|
957
|
+
arrayType: "drowpDown",
|
|
958
|
+
divider: {
|
|
959
|
+
title: "SUBJECT DATA",
|
|
960
|
+
text: "You can add one or more subjects to this Semester",
|
|
961
|
+
},
|
|
962
|
+
},
|
|
963
|
+
],
|
|
964
|
+
arrayType: "drowpDown",
|
|
965
|
+
divider: {
|
|
966
|
+
title: "",
|
|
967
|
+
text: "",
|
|
968
|
+
},
|
|
969
|
+
},
|
|
970
|
+
],
|
|
971
|
+
arrayType: "drowpDown",
|
|
972
|
+
divider: {
|
|
973
|
+
title: "STUDY PLAN DATA",
|
|
974
|
+
text: "You can add one or more years to this Study Plan",
|
|
975
|
+
},
|
|
976
|
+
showList: false,
|
|
977
|
+
},
|
|
978
|
+
{
|
|
979
|
+
type: "ArrayFieldGroup",
|
|
980
|
+
title: "",
|
|
981
|
+
key: "CCS",
|
|
982
|
+
name: "Credit",
|
|
983
|
+
fields: [
|
|
984
|
+
{
|
|
985
|
+
title: "Credits Title",
|
|
986
|
+
type: "TextField",
|
|
987
|
+
key: "CCSTitle",
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
title: "Credits Number",
|
|
991
|
+
type: "NumberField",
|
|
992
|
+
key: "CCSNumber",
|
|
993
|
+
},
|
|
994
|
+
],
|
|
995
|
+
arrayType: "inline",
|
|
996
|
+
divider: {
|
|
997
|
+
title: "COURSE CREDITS SUMMARY",
|
|
998
|
+
text: "You can create a table with course credits summary",
|
|
999
|
+
},
|
|
1000
|
+
showList: false,
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
key: "divider",
|
|
1004
|
+
title: "",
|
|
1005
|
+
type: "FieldsDivider",
|
|
1006
|
+
data: {
|
|
1007
|
+
title: "",
|
|
1008
|
+
text: "",
|
|
1009
|
+
},
|
|
1010
|
+
showList: false,
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
title: "Total Credits Title",
|
|
1014
|
+
type: "TextField",
|
|
1015
|
+
key: "totalCreditsTitle",
|
|
1016
|
+
showList: false,
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
title: "Total Credits Number",
|
|
1020
|
+
type: "NumberField",
|
|
1021
|
+
key: "totalCreditsNumber",
|
|
1022
|
+
showList: false,
|
|
1023
|
+
},
|
|
1024
|
+
{
|
|
1025
|
+
key: "divider",
|
|
1026
|
+
title: "",
|
|
1027
|
+
type: "FieldsDivider",
|
|
1028
|
+
data: {
|
|
1029
|
+
title: "Adviser Module",
|
|
1030
|
+
text: "You can add an Adviser Module",
|
|
1031
|
+
},
|
|
1032
|
+
showList: false,
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
title: "Adviser Module Title",
|
|
1036
|
+
type: "TextField",
|
|
1037
|
+
key: "adTitle",
|
|
1038
|
+
showList: false,
|
|
1039
|
+
},
|
|
1040
|
+
{
|
|
1041
|
+
title: "Adviser Module Detail",
|
|
1042
|
+
type: "TextField",
|
|
1043
|
+
key: "adDetail",
|
|
1044
|
+
showList: false,
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
title: "Adviser Module Link",
|
|
1048
|
+
type: "UrlField",
|
|
1049
|
+
key: "adUrl",
|
|
1050
|
+
showList: false,
|
|
1051
|
+
},
|
|
1052
|
+
],
|
|
1053
|
+
},
|
|
1054
|
+
clone: null,
|
|
1055
|
+
defaultValues: null,
|
|
1056
|
+
editable: true,
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
id: "UNIT",
|
|
1060
|
+
title: "Unit",
|
|
1061
|
+
dataPacks: ["NEWS", "STORIES", "TEACHERS", "STUDIES"],
|
|
1062
|
+
local: false,
|
|
1063
|
+
taxonomy: false,
|
|
1064
|
+
fromPage: false,
|
|
1065
|
+
translate: true,
|
|
1066
|
+
schema: {
|
|
1067
|
+
fields: [
|
|
1068
|
+
{
|
|
1069
|
+
key: "title",
|
|
1070
|
+
title: "Title",
|
|
1071
|
+
type: "TextField",
|
|
1072
|
+
mandatory: true,
|
|
1073
|
+
showList: false,
|
|
1074
|
+
},
|
|
1075
|
+
],
|
|
1076
|
+
},
|
|
1077
|
+
clone: null,
|
|
1078
|
+
defaults: null,
|
|
1079
|
+
editable: true,
|
|
1080
|
+
},
|
|
1081
|
+
],
|
|
1082
|
+
site: [
|
|
1083
|
+
{
|
|
1084
|
+
id: "PROGRAMS",
|
|
1085
|
+
title: "Programs",
|
|
1086
|
+
dataPacks: ["STUDIES"],
|
|
1087
|
+
local: false,
|
|
1088
|
+
taxonomy: false,
|
|
1089
|
+
fromPage: true,
|
|
1090
|
+
translate: true,
|
|
1091
|
+
clone: null,
|
|
1092
|
+
defaultValues: null,
|
|
1093
|
+
schema: {
|
|
1094
|
+
templates: ["ProgramDetail"],
|
|
1095
|
+
searchFrom: [],
|
|
1096
|
+
fields: [
|
|
1097
|
+
{
|
|
1098
|
+
key: "title",
|
|
1099
|
+
title: "Title",
|
|
1100
|
+
type: "TextField",
|
|
1101
|
+
from: "title",
|
|
1102
|
+
showList: false,
|
|
1103
|
+
},
|
|
1104
|
+
{
|
|
1105
|
+
key: "programType",
|
|
1106
|
+
title: "Type of program",
|
|
1107
|
+
type: "AsyncCheckGroup",
|
|
1108
|
+
source: "PROGRAM_TYPES",
|
|
1109
|
+
from: "programType",
|
|
1110
|
+
showList: false,
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
key: "programFormat",
|
|
1114
|
+
title: "Format of program",
|
|
1115
|
+
type: "AsyncCheckGroup",
|
|
1116
|
+
source: "PROGRAM_FORMAT",
|
|
1117
|
+
from: "programFormat",
|
|
1118
|
+
showList: false,
|
|
1119
|
+
},
|
|
1120
|
+
{
|
|
1121
|
+
key: "schoolsData",
|
|
1122
|
+
title: "Schools",
|
|
1123
|
+
name: "Schools Data",
|
|
1124
|
+
type: "AsyncCheckGroup",
|
|
1125
|
+
from: "schoolsData",
|
|
1126
|
+
source: "SCHOOLS",
|
|
1127
|
+
indexable: true,
|
|
1128
|
+
showList: true,
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
key: "pathWaysData",
|
|
1132
|
+
title: "PathWay Data",
|
|
1133
|
+
name: "PathWay Data",
|
|
1134
|
+
type: "ReferenceField",
|
|
1135
|
+
from: "pathWaysData",
|
|
1136
|
+
showList: false,
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
key: "abstract",
|
|
1140
|
+
title: "Abstract",
|
|
1141
|
+
type: "RichText",
|
|
1142
|
+
from: "abstract",
|
|
1143
|
+
showList: false,
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
key: "programQuickFactsSection",
|
|
1147
|
+
title: "Program Quick Facts",
|
|
1148
|
+
type: "ComponentArray",
|
|
1149
|
+
from: "programQuickFactsSection",
|
|
1150
|
+
showList: false,
|
|
1151
|
+
},
|
|
1152
|
+
{
|
|
1153
|
+
key: "heroSection",
|
|
1154
|
+
title: "Hero Section",
|
|
1155
|
+
type: "ComponentArray",
|
|
1156
|
+
from: "heroSection",
|
|
1157
|
+
showList: false,
|
|
1158
|
+
},
|
|
1159
|
+
],
|
|
1160
|
+
},
|
|
1161
|
+
editable: true,
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
id: "TEACHERS",
|
|
1165
|
+
title: "Teachers",
|
|
1166
|
+
dataPacks: ["TEACHERS"],
|
|
1167
|
+
local: false,
|
|
1168
|
+
taxonomy: false,
|
|
1169
|
+
fromPage: true,
|
|
1170
|
+
translate: true,
|
|
1171
|
+
schema: {
|
|
1172
|
+
templates: ["TeacherDetail"],
|
|
1173
|
+
fields: [
|
|
1174
|
+
{
|
|
1175
|
+
key: "title",
|
|
1176
|
+
title: "Name",
|
|
1177
|
+
type: "TextField",
|
|
1178
|
+
from: "title",
|
|
1179
|
+
mandatory: true,
|
|
1180
|
+
showList: false,
|
|
1181
|
+
},
|
|
1182
|
+
{
|
|
1183
|
+
key: "image",
|
|
1184
|
+
title: "Image",
|
|
1185
|
+
type: "ImageField",
|
|
1186
|
+
from: "image",
|
|
1187
|
+
mandatory: true,
|
|
1188
|
+
showList: false,
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
key: "position",
|
|
1192
|
+
title: "Position",
|
|
1193
|
+
type: "TextField",
|
|
1194
|
+
from: "position",
|
|
1195
|
+
mandatory: true,
|
|
1196
|
+
showList: false,
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
key: "linkedin",
|
|
1200
|
+
title: "Linkedin",
|
|
1201
|
+
from: "linkedin",
|
|
1202
|
+
type: "UrlField",
|
|
1203
|
+
showList: false,
|
|
1204
|
+
},
|
|
1205
|
+
{
|
|
1206
|
+
key: "units",
|
|
1207
|
+
title: "Unit",
|
|
1208
|
+
from: "categories.units",
|
|
1209
|
+
type: "AsyncCheckGroup",
|
|
1210
|
+
source: "UNIT",
|
|
1211
|
+
showList: false,
|
|
1212
|
+
},
|
|
1213
|
+
{
|
|
1214
|
+
key: "categories.schools",
|
|
1215
|
+
title: "Schools",
|
|
1216
|
+
from: "categories.schools",
|
|
1217
|
+
type: "AsyncCheckGroup",
|
|
1218
|
+
source: "SCHOOLS",
|
|
1219
|
+
indexable: true,
|
|
1220
|
+
showList: true,
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
key: "pathways",
|
|
1224
|
+
title: "Pathways",
|
|
1225
|
+
from: "categories.pathways",
|
|
1226
|
+
type: "AsyncCheckGroup",
|
|
1227
|
+
source: "PATHWAYS",
|
|
1228
|
+
showList: false,
|
|
1229
|
+
},
|
|
1230
|
+
{
|
|
1231
|
+
key: "programs",
|
|
1232
|
+
title: "Programs",
|
|
1233
|
+
from: "categories.programs",
|
|
1234
|
+
type: "AsyncCheckGroup",
|
|
1235
|
+
source: "PROGRAMS",
|
|
1236
|
+
showList: false,
|
|
1237
|
+
},
|
|
1238
|
+
],
|
|
1239
|
+
},
|
|
1240
|
+
clone: null,
|
|
1241
|
+
defaults: null,
|
|
1242
|
+
editable: true,
|
|
1243
|
+
},
|
|
1244
|
+
{
|
|
1245
|
+
id: "NEWS",
|
|
1246
|
+
title: "News",
|
|
1247
|
+
dataPacks: ["NEWS"],
|
|
1248
|
+
local: false,
|
|
1249
|
+
taxonomy: false,
|
|
1250
|
+
fromPage: true,
|
|
1251
|
+
translate: true,
|
|
1252
|
+
schema: {
|
|
1253
|
+
templates: ["NewsDetail"],
|
|
1254
|
+
fields: [
|
|
1255
|
+
{
|
|
1256
|
+
key: "title",
|
|
1257
|
+
title: "Title",
|
|
1258
|
+
from: "title",
|
|
1259
|
+
type: "TextField",
|
|
1260
|
+
showList: false,
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
key: "abstract",
|
|
1264
|
+
title: "Abstract",
|
|
1265
|
+
from: "abstract",
|
|
1266
|
+
type: "TextField",
|
|
1267
|
+
showList: false,
|
|
1268
|
+
},
|
|
1269
|
+
{
|
|
1270
|
+
key: "image",
|
|
1271
|
+
title: "Image",
|
|
1272
|
+
from: "image",
|
|
1273
|
+
type: "ImageField",
|
|
1274
|
+
showList: false,
|
|
1275
|
+
},
|
|
1276
|
+
{
|
|
1277
|
+
key: "categories",
|
|
1278
|
+
title: "Categories",
|
|
1279
|
+
from: "categories",
|
|
1280
|
+
type: "AsyncCheckGroup",
|
|
1281
|
+
source: "NEWS_AREAS",
|
|
1282
|
+
indexable: true,
|
|
1283
|
+
showList: true,
|
|
1284
|
+
},
|
|
1285
|
+
{
|
|
1286
|
+
key: "lead",
|
|
1287
|
+
title: "Lead",
|
|
1288
|
+
from: "lead",
|
|
1289
|
+
type: "TextField",
|
|
1290
|
+
showList: false,
|
|
1291
|
+
},
|
|
1292
|
+
{
|
|
1293
|
+
key: "longAbstract",
|
|
1294
|
+
title: "longAbstract",
|
|
1295
|
+
from: "longAbstract",
|
|
1296
|
+
type: "TextField",
|
|
1297
|
+
showList: false,
|
|
1298
|
+
},
|
|
1299
|
+
{
|
|
1300
|
+
key: "content",
|
|
1301
|
+
title: "Content",
|
|
1302
|
+
from: "content",
|
|
1303
|
+
type: "TextField",
|
|
1304
|
+
showList: false,
|
|
1305
|
+
},
|
|
1306
|
+
{
|
|
1307
|
+
key: "date",
|
|
1308
|
+
title: "Date",
|
|
1309
|
+
from: "date",
|
|
1310
|
+
type: "TextField",
|
|
1311
|
+
showList: false,
|
|
1312
|
+
},
|
|
1313
|
+
],
|
|
1314
|
+
searchFrom: ["lead", "longAbstract", "content"],
|
|
1315
|
+
},
|
|
1316
|
+
clone: null,
|
|
1317
|
+
defaultValues: null,
|
|
1318
|
+
editable: true,
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
id: "STORIES",
|
|
1322
|
+
title: "Stories",
|
|
1323
|
+
dataPacks: ["STORIES"],
|
|
1324
|
+
local: false,
|
|
1325
|
+
taxonomy: false,
|
|
1326
|
+
fromPage: true,
|
|
1327
|
+
translate: true,
|
|
1328
|
+
schema: {
|
|
1329
|
+
templates: ["StoryDetail"],
|
|
1330
|
+
fields: [
|
|
1331
|
+
{
|
|
1332
|
+
key: "title",
|
|
1333
|
+
title: "Title",
|
|
1334
|
+
type: "TextField",
|
|
1335
|
+
from: "title",
|
|
1336
|
+
mandatory: true,
|
|
1337
|
+
indexable: true,
|
|
1338
|
+
showList: false,
|
|
1339
|
+
},
|
|
1340
|
+
{
|
|
1341
|
+
key: "storyType",
|
|
1342
|
+
title: "Type of story",
|
|
1343
|
+
type: "AsyncCheckGroup",
|
|
1344
|
+
source: "STORY_TYPE",
|
|
1345
|
+
from: "storyType",
|
|
1346
|
+
mandatory: true,
|
|
1347
|
+
showList: false,
|
|
1348
|
+
},
|
|
1349
|
+
{
|
|
1350
|
+
key: "storyProfile",
|
|
1351
|
+
title: "Profile",
|
|
1352
|
+
type: "AsyncCheckGroup",
|
|
1353
|
+
source: "STORY_PROFILE",
|
|
1354
|
+
from: "storyProfile",
|
|
1355
|
+
mandatory: true,
|
|
1356
|
+
indexable: true,
|
|
1357
|
+
showList: true,
|
|
1358
|
+
},
|
|
1359
|
+
{
|
|
1360
|
+
key: "quote",
|
|
1361
|
+
title: "Quote",
|
|
1362
|
+
type: "RichText",
|
|
1363
|
+
from: "quote",
|
|
1364
|
+
mandatory: true,
|
|
1365
|
+
showList: false,
|
|
1366
|
+
},
|
|
1367
|
+
{
|
|
1368
|
+
key: "image",
|
|
1369
|
+
title: "Image",
|
|
1370
|
+
type: "TextField",
|
|
1371
|
+
from: "image",
|
|
1372
|
+
showList: false,
|
|
1373
|
+
},
|
|
1374
|
+
{
|
|
1375
|
+
key: "who",
|
|
1376
|
+
title: "Who",
|
|
1377
|
+
type: "TextField",
|
|
1378
|
+
from: "who",
|
|
1379
|
+
mandatory: true,
|
|
1380
|
+
showList: false,
|
|
1381
|
+
},
|
|
1382
|
+
{
|
|
1383
|
+
key: "position",
|
|
1384
|
+
title: "Position",
|
|
1385
|
+
type: "TextField",
|
|
1386
|
+
from: "position",
|
|
1387
|
+
mandatory: true,
|
|
1388
|
+
showList: false,
|
|
1389
|
+
},
|
|
1390
|
+
],
|
|
1391
|
+
searchFrom: ["quote", "who", "position"],
|
|
1392
|
+
},
|
|
1393
|
+
clone: null,
|
|
1394
|
+
defaultValues: null,
|
|
1395
|
+
editable: true,
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
id: "EVENTS",
|
|
1399
|
+
title: "Events",
|
|
1400
|
+
dataPacks: ["EVENTS"],
|
|
1401
|
+
local: false,
|
|
1402
|
+
taxonomy: false,
|
|
1403
|
+
fromPage: true,
|
|
1404
|
+
translate: true,
|
|
1405
|
+
schema: {
|
|
1406
|
+
templates: ["EventDetail"],
|
|
1407
|
+
fields: [
|
|
1408
|
+
{
|
|
1409
|
+
key: "title",
|
|
1410
|
+
title: "Title",
|
|
1411
|
+
type: "TextField",
|
|
1412
|
+
from: "title",
|
|
1413
|
+
showList: false,
|
|
1414
|
+
},
|
|
1415
|
+
{
|
|
1416
|
+
key: "image",
|
|
1417
|
+
title: "Image",
|
|
1418
|
+
type: "ImageField",
|
|
1419
|
+
from: "image",
|
|
1420
|
+
showList: false,
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
key: "tag",
|
|
1424
|
+
title: "Tag",
|
|
1425
|
+
type: "TextField",
|
|
1426
|
+
from: "tag",
|
|
1427
|
+
showList: false,
|
|
1428
|
+
},
|
|
1429
|
+
{
|
|
1430
|
+
key: "dateTime",
|
|
1431
|
+
title: "Event date and time",
|
|
1432
|
+
type: "DateField",
|
|
1433
|
+
from: "dateTime",
|
|
1434
|
+
indexable: true,
|
|
1435
|
+
showList: false,
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
key: "eventHour",
|
|
1439
|
+
title: "Event Hour",
|
|
1440
|
+
type: "TextField",
|
|
1441
|
+
from: "eventHour",
|
|
1442
|
+
showList: false,
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
key: "language",
|
|
1446
|
+
title: "Language",
|
|
1447
|
+
type: "TextField",
|
|
1448
|
+
from: "language",
|
|
1449
|
+
showList: false,
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
key: "address",
|
|
1453
|
+
title: "Address",
|
|
1454
|
+
type: "TextField",
|
|
1455
|
+
from: "address",
|
|
1456
|
+
showList: false,
|
|
1457
|
+
},
|
|
1458
|
+
{
|
|
1459
|
+
key: "country",
|
|
1460
|
+
title: "Country",
|
|
1461
|
+
type: "TextField",
|
|
1462
|
+
from: "country",
|
|
1463
|
+
showList: false,
|
|
1464
|
+
},
|
|
1465
|
+
{
|
|
1466
|
+
key: "distributorDescription",
|
|
1467
|
+
title: "Distributor description",
|
|
1468
|
+
type: "TextField",
|
|
1469
|
+
from: "distributorDescription",
|
|
1470
|
+
showList: false,
|
|
1471
|
+
},
|
|
1472
|
+
{
|
|
1473
|
+
key: "addToCalendar",
|
|
1474
|
+
title: "Add to calendar button",
|
|
1475
|
+
type: "ComponentContainer",
|
|
1476
|
+
from: "addToCalendar",
|
|
1477
|
+
showList: false,
|
|
1478
|
+
},
|
|
1479
|
+
{
|
|
1480
|
+
key: "eventAreas",
|
|
1481
|
+
title: "Event Areas",
|
|
1482
|
+
type: "AsyncCheckGroup",
|
|
1483
|
+
source: "EVENT_AREAS",
|
|
1484
|
+
from: "eventAreas",
|
|
1485
|
+
showList: false,
|
|
1486
|
+
},
|
|
1487
|
+
{
|
|
1488
|
+
key: "eventLocation",
|
|
1489
|
+
title: "Event Locations",
|
|
1490
|
+
type: "AsyncCheckGroup",
|
|
1491
|
+
source: "EVENT_LOCATIONS",
|
|
1492
|
+
from: "eventLocation",
|
|
1493
|
+
showList: false,
|
|
1494
|
+
},
|
|
1495
|
+
{
|
|
1496
|
+
key: "eventFormat",
|
|
1497
|
+
title: "Event Formats",
|
|
1498
|
+
type: "AsyncCheckGroup",
|
|
1499
|
+
source: "EVENT_FORMATS",
|
|
1500
|
+
from: "eventFormat",
|
|
1501
|
+
showList: false,
|
|
1502
|
+
},
|
|
1503
|
+
{
|
|
1504
|
+
key: "programType",
|
|
1505
|
+
title: "Program Type",
|
|
1506
|
+
type: "AsyncCheckGroup",
|
|
1507
|
+
source: "PROGRAM_TYPES",
|
|
1508
|
+
from: "programType",
|
|
1509
|
+
showList: false,
|
|
1510
|
+
},
|
|
1511
|
+
{
|
|
1512
|
+
key: "eventRegion",
|
|
1513
|
+
title: "Region",
|
|
1514
|
+
type: "AsyncCheckGroup",
|
|
1515
|
+
source: "EVENT_REGION",
|
|
1516
|
+
from: "eventRegion",
|
|
1517
|
+
indexable: true,
|
|
1518
|
+
showList: true,
|
|
1519
|
+
},
|
|
1520
|
+
],
|
|
1521
|
+
searchFrom: ["tag"],
|
|
1522
|
+
},
|
|
1523
|
+
clone: null,
|
|
1524
|
+
defaultValues: null,
|
|
1525
|
+
editable: true,
|
|
1526
|
+
},
|
|
1527
|
+
{
|
|
1528
|
+
id: "STUDY_LANDING_TYPE",
|
|
1529
|
+
title: "Study Landing type",
|
|
1530
|
+
dataPacks: ["STUDIES"],
|
|
1531
|
+
local: true,
|
|
1532
|
+
taxonomy: false,
|
|
1533
|
+
fromPage: false,
|
|
1534
|
+
translate: false,
|
|
1535
|
+
schema: {
|
|
1536
|
+
fields: [
|
|
1537
|
+
{
|
|
1538
|
+
title: "Title",
|
|
1539
|
+
type: "TextField",
|
|
1540
|
+
key: "title",
|
|
1541
|
+
showList: false,
|
|
1542
|
+
},
|
|
1543
|
+
],
|
|
1544
|
+
},
|
|
1545
|
+
clone: null,
|
|
1546
|
+
defaultValues: null,
|
|
1547
|
+
editable: true,
|
|
1548
|
+
},
|
|
1549
|
+
],
|
|
1550
|
+
},
|
|
1551
|
+
currentStructuredData: null,
|
|
1552
|
+
currentStructuredDataId: null,
|
|
1553
|
+
currentDataContent: [],
|
|
1554
|
+
category: {
|
|
1555
|
+
name: "",
|
|
1556
|
+
code: "",
|
|
1557
|
+
lang: null,
|
|
1558
|
+
isTranslation: false,
|
|
1559
|
+
isNew: true,
|
|
1560
|
+
},
|
|
1561
|
+
schema: {},
|
|
1562
|
+
form: {},
|
|
1563
|
+
entity: null,
|
|
1564
|
+
currentFilter: "all-pages",
|
|
1565
|
+
schemaVersion: "2022-06-30T11:26:33.000Z",
|
|
1566
|
+
errors: [],
|
|
1567
|
+
validated: false,
|
|
1568
1568
|
};
|
|
1569
1569
|
|
|
1570
1570
|
export const sitesMock = {
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1571
|
+
currentSiteInfo: {
|
|
1572
|
+
id: 85,
|
|
1573
|
+
name: "Super site",
|
|
1574
|
+
theme: "default-theme",
|
|
1575
|
+
author: 2,
|
|
1576
|
+
pages: [
|
|
1577
|
+
3342, 3343, 3378, 3380, 3537, 3555, 3556, 3587, 3690, 3732, 3733, 3734, 3736, 3737, 3824, 3836, 3837, 3847, 3853,
|
|
1578
|
+
3854, 3864, 3865, 3888, 3889, 3890, 3891, 3893, 3947, 3948, 3949, 3950, 3952, 3961, 3986, 3987, 3988, 3989, 3990,
|
|
1579
|
+
3991, 3992, 3993, 3994, 3995, 4005, 4072, 4085, 4087, 4089, 4111, 4168,
|
|
1580
|
+
],
|
|
1581
|
+
published: "2021-11-03T16:54:14.000Z",
|
|
1582
|
+
modified: "2022-05-31T13:33:51.000Z",
|
|
1583
|
+
languageSites: [149, 179],
|
|
1584
|
+
deleted: 0,
|
|
1585
|
+
thumbnail: "http://images.dev.griddo.io/lil-bub-gato-11dd1482-476a-416d-88cf-3b9fb38d6f4d",
|
|
1586
|
+
timezone: "Europe/Madrid",
|
|
1587
|
+
favicon: null,
|
|
1588
|
+
hash: null,
|
|
1589
|
+
bigAvatar: null,
|
|
1590
|
+
smallAvatar: null,
|
|
1591
|
+
socials: {
|
|
1592
|
+
instagram: "instagram",
|
|
1593
|
+
linkedIn: "link.es",
|
|
1594
|
+
},
|
|
1595
|
+
rendering: false,
|
|
1596
|
+
slug: "/gonzalo-h",
|
|
1597
|
+
isPublished: true,
|
|
1598
|
+
renderingHours: 0,
|
|
1599
|
+
shouldBeUpdated: false,
|
|
1600
|
+
updated: true,
|
|
1601
|
+
navigationModules: {
|
|
1602
|
+
header: "Header",
|
|
1603
|
+
footer: "Footer",
|
|
1604
|
+
},
|
|
1605
|
+
home: "//cx.dev.griddo.io/pre-griddo/gonzalo-h",
|
|
1606
|
+
},
|
|
1607
|
+
sites: [
|
|
1608
|
+
{
|
|
1609
|
+
id: 80,
|
|
1610
|
+
name: "DEMO SITE",
|
|
1611
|
+
theme: "default-theme",
|
|
1612
|
+
author: 2,
|
|
1613
|
+
pages: [3654, 3729, 3997, 4014, 4074],
|
|
1614
|
+
published: "2021-11-03T10:10:17.000Z",
|
|
1615
|
+
modified: "2022-05-23T11:49:42.000Z",
|
|
1616
|
+
languageSites: [144],
|
|
1617
|
+
deleted: 0,
|
|
1618
|
+
thumbnail: "http://images.dev.griddo.io/macbeth-palau-de-les-arts-opera-valencia-5x2-1_1",
|
|
1619
|
+
timezone: "Pacific/Pago_Pago",
|
|
1620
|
+
favicon: "http://images.dev.griddo.io/griddo-site-thumbnail-ec2ab0ba-9424-4424-8f60-222ec746902d_4",
|
|
1621
|
+
hash: null,
|
|
1622
|
+
bigAvatar: "http://images.dev.griddo.io/griddo-site-thumbnail-ec2ab0ba-9424-4424-8f60-222ec746902d_6",
|
|
1623
|
+
smallAvatar: "http://images.dev.griddo.io/griddo-site-thumbnail-ec2ab0ba-9424-4424-8f60-222ec746902d_5",
|
|
1624
|
+
rendering: false,
|
|
1625
|
+
slug: "/demo-site",
|
|
1626
|
+
isPublished: true,
|
|
1627
|
+
renderingHours: 0,
|
|
1628
|
+
shouldBeUpdated: false,
|
|
1629
|
+
updated: true,
|
|
1630
|
+
navigationModules: null,
|
|
1631
|
+
home: "//cx.dev.griddo.io/pre-griddo/demo",
|
|
1632
|
+
},
|
|
1633
|
+
],
|
|
1634
|
+
currentSiteName: null,
|
|
1635
|
+
currentSitePages: [],
|
|
1636
|
+
sitesByLang: [],
|
|
1637
|
+
currentFilter: "unique-pages",
|
|
1638
|
+
totalItems: 0,
|
|
1639
|
+
currentSiteLanguages: [],
|
|
1640
|
+
savedSiteInfo: null,
|
|
1641
|
+
currentSiteErrorPages: [],
|
|
1642
1642
|
};
|
|
1643
1643
|
|
|
1644
1644
|
export const appMock = {
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1645
|
+
isRehydrated: true,
|
|
1646
|
+
isLoading: true,
|
|
1647
|
+
isSaving: false,
|
|
1648
|
+
error: {
|
|
1649
|
+
code: undefined,
|
|
1650
|
+
text: "",
|
|
1651
|
+
},
|
|
1652
|
+
user: {
|
|
1653
|
+
email: "",
|
|
1654
|
+
},
|
|
1655
|
+
token: "",
|
|
1656
|
+
isLoggingIn: false,
|
|
1657
|
+
lang: {
|
|
1658
|
+
locale: "en-GB",
|
|
1659
|
+
id: 4,
|
|
1660
|
+
},
|
|
1661
|
+
globalLangs: [{ id: 19, locale: "en", language: "English", label: "EN", isDefault: true }],
|
|
1662
|
+
globalSettings: {
|
|
1663
|
+
cloudinaryName: "",
|
|
1664
|
+
globalLogoBig: "",
|
|
1665
|
+
globalLogoMini: "",
|
|
1666
|
+
siteLogoBig: "",
|
|
1667
|
+
siteLogoMini: "",
|
|
1668
|
+
welcomeText1: "",
|
|
1669
|
+
welcomeText2: "",
|
|
1670
|
+
},
|
|
1671
1671
|
};
|