@plone/volto 18.0.0-alpha.2 → 18.0.0-alpha.21

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.
Files changed (890) hide show
  1. package/.eslintignore +1 -0
  2. package/.eslintrc +3 -3
  3. package/.prettierignore +8 -0
  4. package/.prettierrc +12 -0
  5. package/{packages/registry/.release-it.json → .release-it.json} +11 -6
  6. package/CHANGELOG.md +364 -6
  7. package/cypress/support/commands.js +51 -3
  8. package/jest-setup-afterenv.js +2 -0
  9. package/locales/ca/LC_MESSAGES/volto.po +959 -974
  10. package/locales/ca.json +1 -1
  11. package/locales/de/LC_MESSAGES/volto.po +958 -971
  12. package/locales/de.json +1 -1
  13. package/locales/en/LC_MESSAGES/volto.po +956 -968
  14. package/locales/en.json +1 -1
  15. package/locales/es/LC_MESSAGES/volto.po +960 -976
  16. package/locales/es.json +1 -1
  17. package/locales/eu/LC_MESSAGES/volto.po +958 -970
  18. package/locales/eu.json +1 -1
  19. package/locales/fi/LC_MESSAGES/volto.po +958 -976
  20. package/locales/fi.json +1 -1
  21. package/locales/fr/LC_MESSAGES/volto.po +961 -983
  22. package/locales/fr.json +1 -1
  23. package/locales/it/LC_MESSAGES/volto.po +958 -970
  24. package/locales/it.json +1 -1
  25. package/locales/ja/LC_MESSAGES/volto.po +957 -972
  26. package/locales/ja.json +1 -1
  27. package/locales/nl/LC_MESSAGES/volto.po +956 -983
  28. package/locales/nl.json +1 -1
  29. package/locales/pt/LC_MESSAGES/volto.po +957 -972
  30. package/locales/pt.json +1 -1
  31. package/locales/pt_BR/LC_MESSAGES/volto.po +958 -974
  32. package/locales/pt_BR.json +1 -1
  33. package/locales/ro/LC_MESSAGES/volto.po +957 -969
  34. package/locales/ro.json +1 -1
  35. package/locales/volto.pot +958 -974
  36. package/locales/zh_CN/LC_MESSAGES/volto.po +958 -970
  37. package/locales/zh_CN.json +1 -1
  38. package/package.json +149 -224
  39. package/razzle.config.js +18 -7
  40. package/src/actions/form/form.js +19 -0
  41. package/src/actions/form/form.test.js +14 -0
  42. package/src/actions/index.js +7 -1
  43. package/src/actions/sidebar/sidebar.js +45 -1
  44. package/src/actions/sidebar/sidebar.test.js +42 -2
  45. package/src/components/index.js +9 -14
  46. package/src/components/manage/Add/Add.jsx +73 -29
  47. package/src/components/manage/Add/Add.test.jsx +11 -13
  48. package/src/components/manage/Aliases/Aliases.jsx +14 -8
  49. package/src/components/manage/Aliases/Aliases.test.jsx +7 -7
  50. package/src/components/manage/BlockChooser/BlockChooser.jsx +3 -1
  51. package/src/components/manage/BlockChooser/BlockChooser.test.jsx +0 -1
  52. package/src/components/manage/BlockChooser/BlockChooserButton.jsx +11 -6
  53. package/src/components/manage/BlockChooser/BlockChooserSearch.test.jsx +0 -1
  54. package/src/components/manage/Blocks/Block/BlocksForm.jsx +12 -0
  55. package/src/components/manage/Blocks/Block/DefaultEdit.jsx +3 -1
  56. package/src/components/manage/Blocks/Block/EditBlockWrapper.jsx +16 -3
  57. package/src/components/manage/Blocks/Block/Settings.jsx +10 -1
  58. package/src/components/manage/Blocks/Block/Settings.test.jsx +0 -1
  59. package/src/components/manage/Blocks/Block/StyleWrapper.jsx +7 -1
  60. package/src/components/manage/Blocks/Container/Data.jsx +4 -1
  61. package/src/components/manage/Blocks/Container/NewBlockAddButton.jsx +20 -19
  62. package/src/components/manage/Blocks/Grid/View.jsx +2 -1
  63. package/src/components/manage/Blocks/Image/Edit.jsx +12 -12
  64. package/src/components/manage/Blocks/Image/ImageSidebar.jsx +7 -4
  65. package/src/components/manage/Blocks/Image/View.jsx +16 -15
  66. package/src/components/manage/Blocks/Image/View.test.jsx +0 -1
  67. package/src/components/manage/Blocks/Listing/ListingData.jsx +4 -1
  68. package/src/components/manage/Blocks/Listing/View.jsx +2 -1
  69. package/src/components/manage/Blocks/Listing/getAsyncData.js +23 -8
  70. package/src/components/manage/Blocks/Listing/withQuerystringResults.jsx +6 -6
  71. package/src/components/manage/Blocks/Maps/MapsSidebar.jsx +3 -1
  72. package/src/components/manage/Blocks/Search/SearchBlockEdit.jsx +12 -2
  73. package/src/components/manage/Blocks/Search/SelectStyling.jsx +2 -2
  74. package/src/components/manage/Blocks/Search/components/CheckboxFacet.jsx +2 -2
  75. package/src/components/manage/Blocks/Search/components/Facets.jsx +2 -2
  76. package/src/components/manage/Blocks/Search/components/SelectStyling.jsx +4 -4
  77. package/src/components/manage/Blocks/Search/hocs/withSearch.jsx +48 -6
  78. package/src/components/manage/Blocks/Teaser/Data.jsx +4 -1
  79. package/src/components/manage/Blocks/Teaser/DefaultBody.jsx +2 -2
  80. package/src/components/manage/Blocks/ToC/Edit.jsx +2 -0
  81. package/src/components/manage/Blocks/Video/Body.jsx +52 -22
  82. package/src/components/manage/Blocks/Video/Body.test.jsx +167 -0
  83. package/src/components/manage/Blocks/Video/VideoSidebar.jsx +3 -1
  84. package/src/components/manage/Contents/Contents.jsx +18 -18
  85. package/src/components/manage/Contents/Contents.test.jsx +7 -7
  86. package/src/components/manage/Contents/ContentsPropertiesModal.test.jsx +4 -4
  87. package/src/components/manage/Contents/ContentsUploadModal.jsx +31 -4
  88. package/src/components/manage/Controlpanels/AddonsControlpanel.jsx +6 -6
  89. package/src/components/manage/Controlpanels/AddonsControlpanel.test.jsx +6 -7
  90. package/src/components/manage/Controlpanels/Aliases.jsx +6 -6
  91. package/src/components/manage/Controlpanels/Aliases.test.jsx +6 -7
  92. package/src/components/manage/Controlpanels/ContentType.jsx +6 -6
  93. package/src/components/manage/Controlpanels/ContentType.test.jsx +7 -7
  94. package/src/components/manage/Controlpanels/ContentTypeLayout.jsx +93 -85
  95. package/src/components/manage/Controlpanels/ContentTypeLayout.test.jsx +7 -7
  96. package/src/components/manage/Controlpanels/ContentTypeSchema.jsx +6 -6
  97. package/src/components/manage/Controlpanels/ContentTypes.jsx +6 -6
  98. package/src/components/manage/Controlpanels/ContentTypes.test.jsx +7 -7
  99. package/src/components/manage/Controlpanels/Controlpanel.jsx +6 -6
  100. package/src/components/manage/Controlpanels/Controlpanel.test.jsx +7 -7
  101. package/src/components/manage/Controlpanels/Controlpanels.jsx +6 -6
  102. package/src/components/manage/Controlpanels/Controlpanels.test.jsx +10 -10
  103. package/src/components/manage/Controlpanels/DatabaseInformation.jsx +6 -6
  104. package/src/components/manage/Controlpanels/Groups/GroupsControlpanel.jsx +43 -15
  105. package/src/components/manage/Controlpanels/Groups/GroupsControlpanel.test.jsx +19 -7
  106. package/src/components/manage/Controlpanels/Groups/RenderGroups.jsx +22 -11
  107. package/src/components/manage/Controlpanels/Groups/RenderGroups.test.jsx +21 -0
  108. package/src/components/manage/Controlpanels/ModerateComments.jsx +6 -6
  109. package/src/components/manage/Controlpanels/ModerateComments.test.jsx +7 -7
  110. package/src/components/manage/Controlpanels/Relations/Relations.jsx +13 -7
  111. package/src/components/manage/Controlpanels/Rules/AddRule.jsx +6 -6
  112. package/src/components/manage/Controlpanels/Rules/AddRule.test.jsx +6 -7
  113. package/src/components/manage/Controlpanels/Rules/ConfigureRule.jsx +6 -6
  114. package/src/components/manage/Controlpanels/Rules/ConfigureRule.test.jsx +6 -7
  115. package/src/components/manage/Controlpanels/Rules/EditRule.jsx +6 -6
  116. package/src/components/manage/Controlpanels/Rules/EditRule.test.jsx +6 -7
  117. package/src/components/manage/Controlpanels/Rules/Rules.jsx +6 -6
  118. package/src/components/manage/Controlpanels/Rules/Rules.test.jsx +6 -7
  119. package/src/components/manage/Controlpanels/Rules/components/{VariableModal.test.jsx → VariableModal.test.jsx.removed} +6 -7
  120. package/src/components/manage/Controlpanels/UndoControlpanel.jsx +6 -6
  121. package/src/components/manage/Controlpanels/UndoControlpanel.test.jsx +7 -7
  122. package/src/components/manage/Controlpanels/UpgradeControlPanel.jsx +6 -6
  123. package/src/components/manage/Controlpanels/Users/RenderUsers.jsx +30 -21
  124. package/src/components/manage/Controlpanels/Users/RenderUsers.test.jsx +27 -1
  125. package/src/components/manage/Controlpanels/Users/UserGroupMembershipControlPanel.jsx +16 -10
  126. package/src/components/manage/Controlpanels/Users/UserGroupMembershipControlPanel.test.jsx +7 -7
  127. package/src/components/manage/Controlpanels/Users/UserGroupMembershipListing.jsx +29 -7
  128. package/src/components/manage/Controlpanels/Users/UsersControlpanel.jsx +59 -11
  129. package/src/components/manage/Controlpanels/Users/UsersControlpanel.test.jsx +15 -7
  130. package/src/components/manage/Delete/Delete.jsx +6 -6
  131. package/src/components/manage/Delete/Delete.test.jsx +10 -10
  132. package/src/components/manage/Diff/Diff.jsx +6 -6
  133. package/src/components/manage/Diff/Diff.test.jsx +2 -3
  134. package/src/components/manage/Display/Display.jsx +2 -2
  135. package/src/components/manage/Edit/Edit.jsx +43 -12
  136. package/src/components/manage/Edit/Edit.test.jsx +14 -10
  137. package/src/components/manage/Form/BlockDataForm.test.jsx +0 -1
  138. package/src/components/manage/Form/Form.jsx +295 -123
  139. package/src/components/manage/Form/Form.test.jsx +7 -0
  140. package/src/components/manage/Form/ModalForm.test.jsx +0 -1
  141. package/src/components/manage/History/History.jsx +6 -6
  142. package/src/components/manage/History/History.test.jsx +14 -13
  143. package/src/components/manage/LinksToItem/LinksToItem.jsx +91 -42
  144. package/src/components/manage/LinksToItem/LinksToItem.test.jsx +20 -8
  145. package/src/components/manage/Multilingual/ManageTranslations.jsx +13 -7
  146. package/src/components/manage/Multilingual/ManageTranslations.test.jsx +6 -7
  147. package/src/components/manage/Multilingual/TranslationObject.jsx +0 -1
  148. package/src/components/manage/Preferences/ChangePassword.jsx +6 -6
  149. package/src/components/manage/Preferences/ChangePassword.test.jsx +13 -7
  150. package/src/components/manage/Preferences/PersonalInformation.test.jsx +15 -3
  151. package/src/components/manage/Preferences/PersonalPreferences.test.jsx +8 -3
  152. package/src/components/manage/Rules/Rules.jsx +6 -6
  153. package/src/components/manage/Rules/Rules.test.jsx +7 -7
  154. package/src/components/manage/Sharing/Sharing.jsx +6 -6
  155. package/src/components/manage/Sharing/Sharing.test.jsx +7 -7
  156. package/src/components/manage/Sidebar/ObjectBrowser.jsx +1 -1
  157. package/src/components/manage/Sidebar/ObjectBrowserBody.jsx +40 -19
  158. package/src/components/manage/Sidebar/Sidebar.jsx +2 -0
  159. package/src/components/manage/Sidebar/SidebarPopup.jsx +29 -22
  160. package/src/components/manage/Sidebar/SidebarPortal.jsx +8 -7
  161. package/src/components/manage/Toolbar/Toolbar.jsx +35 -2
  162. package/src/components/manage/Widgets/ArrayWidget.jsx +24 -22
  163. package/src/components/manage/Widgets/ColorPickerWidget.stories.tsx +48 -0
  164. package/src/components/manage/Widgets/{ColorPickerWidget.jsx → ColorPickerWidget.tsx} +40 -23
  165. package/src/components/manage/Widgets/FileWidget.jsx +9 -5
  166. package/src/components/manage/Widgets/IdWidget.jsx +8 -3
  167. package/src/components/manage/Widgets/IdWidget.stories.jsx +15 -2
  168. package/src/components/manage/Widgets/ObjectBrowserWidget.jsx +13 -3
  169. package/src/components/manage/Widgets/ObjectBrowserWidget.test.jsx +4 -4
  170. package/src/components/manage/Widgets/ObjectListWidget.test.js +0 -1
  171. package/src/components/manage/Widgets/ObjectWidget.test.jsx +0 -1
  172. package/src/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.jsx +3 -3
  173. package/src/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.test.jsx +1 -1
  174. package/src/components/manage/Widgets/ReferenceWidget.jsx +2 -2
  175. package/src/components/manage/Widgets/SchemaWidget.test.jsx +4 -4
  176. package/src/components/manage/Widgets/SchemaWidgetFieldset.test.jsx +5 -5
  177. package/src/components/manage/Widgets/SelectAutoComplete.jsx +6 -6
  178. package/src/components/manage/Widgets/SelectStyling.jsx +4 -4
  179. package/src/components/manage/Widgets/SelectUtils.js +2 -2
  180. package/src/components/manage/Widgets/UrlWidget.test.jsx +4 -4
  181. package/src/components/manage/Widgets/VocabularyTermsWidget.test.jsx +4 -4
  182. package/src/components/manage/Widgets/WysiwygWidget.jsx +2 -350
  183. package/src/components/manage/Workflow/Workflow.jsx +2 -2
  184. package/src/components/theme/App/App.jsx +1 -0
  185. package/src/components/theme/AppExtras/AppExtras.jsx +2 -0
  186. package/src/components/theme/AppExtras/AppExtras.test.jsx +20 -0
  187. package/src/components/theme/Breadcrumbs/Breadcrumbs.jsx +19 -2
  188. package/src/components/theme/Comments/CommentEditModal.jsx +1 -0
  189. package/src/components/theme/Comments/Comments.jsx +7 -8
  190. package/src/components/theme/Comments/Comments.test.jsx +7 -0
  191. package/src/components/theme/Component/Component.test.jsx +0 -1
  192. package/src/components/theme/ContactForm/ContactForm.jsx +6 -6
  193. package/src/components/theme/ContactForm/ContactForm.test.jsx +12 -10
  194. package/src/components/theme/ContentMetadataTags/ContentMetadataTags.jsx +46 -39
  195. package/src/components/theme/Footer/Footer.test.jsx +0 -1
  196. package/src/components/theme/Image/Image.jsx +4 -2
  197. package/src/components/theme/Image/Image.test.jsx +32 -0
  198. package/src/components/theme/Login/Login.jsx +12 -2
  199. package/src/components/theme/Logo/Logo.Multilingual.test.jsx +3 -1
  200. package/src/components/theme/Logo/Logo.jsx +18 -12
  201. package/src/components/theme/Logo/Logo.test.jsx +4 -1
  202. package/src/components/theme/Logout/Logout.test.jsx +8 -5
  203. package/src/components/theme/Navigation/Navigation.jsx +34 -32
  204. package/src/components/theme/PasswordReset/PasswordReset.test.jsx +7 -0
  205. package/src/components/theme/PasswordReset/RequestPasswordReset.test.jsx +7 -0
  206. package/src/components/theme/PreviewImage/PreviewImage.jsx +7 -2
  207. package/src/components/theme/Register/Register.test.jsx +7 -0
  208. package/src/components/theme/Search/Search.jsx +6 -6
  209. package/src/components/theme/Search/Search.test.jsx +13 -10
  210. package/src/components/theme/Sitemap/Sitemap.jsx +4 -4
  211. package/src/components/theme/Sitemap/Sitemap.test.jsx +52 -0
  212. package/src/components/theme/SlotRenderer/SlotRenderer.test.jsx +55 -0
  213. package/src/components/theme/SlotRenderer/SlotRenderer.tsx +61 -0
  214. package/src/components/theme/Unauthorized/Unauthorized.jsx +12 -11
  215. package/src/components/theme/View/View.jsx +9 -6
  216. package/src/components/theme/View/View.test.jsx +28 -18
  217. package/src/components/theme/Widgets/BooleanWidget.jsx +2 -2
  218. package/src/config/Blocks.jsx +64 -68
  219. package/src/config/Loadables.jsx +0 -22
  220. package/src/config/Views.jsx +2 -2
  221. package/src/config/Widgets.jsx +7 -8
  222. package/src/config/index.js +3 -18
  223. package/src/constants/ActionTypes.js +4 -0
  224. package/src/helpers/AsyncConnect/AsyncConnect.test.js +0 -2
  225. package/src/helpers/Blocks/Blocks.js +100 -25
  226. package/src/helpers/Blocks/Blocks.test.js +77 -0
  227. package/src/helpers/Blocks/defaultBlocks.test.js +39 -0
  228. package/src/helpers/Blocks/defaultBlocks.ts +39 -0
  229. package/src/helpers/Extensions/withBlockSchemaEnhancer.js +23 -10
  230. package/src/helpers/FormValidation/FormValidation.js +1 -1
  231. package/src/helpers/Html/Html.jsx +2 -2
  232. package/src/helpers/Slots/index.tsx +12 -0
  233. package/src/helpers/Url/Url.js +5 -4
  234. package/src/helpers/Url/Url.test.js +52 -0
  235. package/src/helpers/User/User.js +29 -0
  236. package/src/helpers/Utils/Date.js +6 -6
  237. package/src/helpers/Utils/UseDetectClickOutside.stories.jsx +8 -8
  238. package/src/helpers/Utils/Utils.js +2 -2
  239. package/src/helpers/index.js +13 -1
  240. package/src/icons/divide-horizontal.svg +0 -0
  241. package/src/icons/divide-vertical.svg +0 -0
  242. package/src/icons/hero.svg +0 -0
  243. package/src/icons/slider.svg +0 -0
  244. package/src/icons/summary.svg +0 -0
  245. package/src/middleware/api.js +1 -1
  246. package/src/reducers/form/form.js +15 -3
  247. package/src/reducers/form/form.test.js +13 -1
  248. package/src/reducers/sidebar/sidebar.js +26 -1
  249. package/src/reducers/sidebar/sidebar.test.js +50 -1
  250. package/src/server.jsx +1 -1
  251. package/src/start-client.jsx +3 -3
  252. package/src/store.js +1 -1
  253. package/test-setup-config.js +1 -30
  254. package/theme/themes/default/elements/icon.overrides +0 -0
  255. package/theme/themes/default/elements/step.overrides +2 -2
  256. package/theme/themes/default/globals/reset.overrides +0 -0
  257. package/theme/themes/default/globals/site.variables +0 -0
  258. package/theme/themes/default/modules/dropdown.overrides +0 -0
  259. package/theme/themes/default/modules/dropdown.variables +0 -0
  260. package/theme/themes/default/modules/modal.variables +0 -0
  261. package/theme/themes/default/modules/video.overrides +0 -0
  262. package/theme/themes/default/modules/video.variables +0 -0
  263. package/theme/themes/pastanaga/assets/fonts/icons.eot +0 -0
  264. package/theme/themes/pastanaga/assets/fonts/icons.svg +0 -0
  265. package/theme/themes/pastanaga/assets/fonts/icons.ttf +0 -0
  266. package/theme/themes/pastanaga/assets/fonts/icons.woff +0 -0
  267. package/theme/themes/pastanaga/elements/step.overrides +1 -1
  268. package/theme/themes/pastanaga/extras/blocks.less +9 -0
  269. package/theme/themes/pastanaga/extras/contents.less +11 -7
  270. package/theme/themes/pastanaga/extras/sidebar.less +2 -1
  271. package/theme/themes/pastanaga/extras/toolbar.less +4 -4
  272. package/theme/themes/pastanaga/globals/reset.overrides +0 -0
  273. package/theme/themes/pastanaga/globals/site.variables +0 -0
  274. package/theme/themes/pastanaga/modules/dropdown.variables +0 -0
  275. package/theme/themes/pastanaga/modules/modal.variables +0 -0
  276. package/theme/themes/pastanaga/modules/video.overrides +0 -0
  277. package/theme/themes/pastanaga/modules/video.variables +0 -0
  278. package/tsconfig.declarations.json +17 -0
  279. package/tsconfig.json +1 -4
  280. package/types/actions/authRole/authRole.d.ts +1 -1
  281. package/types/actions/comments/comments.d.ts +1 -1
  282. package/types/actions/content/content.d.ts +1 -1
  283. package/types/actions/controlpanels/controlpanels.d.ts +2 -2
  284. package/types/actions/form/form.d.ts +7 -0
  285. package/types/actions/form/form.test.d.ts +1 -0
  286. package/types/actions/index.d.ts +37 -0
  287. package/types/actions/sidebar/sidebar.d.ts +21 -0
  288. package/types/actions/upgrade/upgrade.d.ts +2 -2
  289. package/types/components/index.d.ts +174 -0
  290. package/types/components/manage/Actions/Actions.d.ts +1 -1
  291. package/types/components/manage/Add/Add.d.ts +1 -3
  292. package/types/components/manage/AnchorPlugin/components/Link/index.d.ts +1 -1
  293. package/types/components/manage/AnchorPlugin/components/LinkButton/AddLinkForm.d.ts +3 -2
  294. package/types/components/manage/BlockChooser/BlockChooser.d.ts +2 -1
  295. package/types/components/manage/BlockChooser/BlockChooserButton.d.ts +2 -2
  296. package/types/components/manage/BlockChooser/BlockChooserSearch.d.ts +1 -1
  297. package/types/components/manage/Blocks/Block/BlocksForm.d.ts +1 -1
  298. package/types/components/manage/Blocks/Block/DefaultEdit.d.ts +1 -1
  299. package/types/components/manage/Blocks/Block/DefaultView.d.ts +1 -1
  300. package/types/components/manage/Blocks/Block/Edit.d.ts +4 -6
  301. package/types/components/manage/Blocks/Block/EditBlockWrapper.d.ts +3 -2
  302. package/types/components/manage/Blocks/Block/Settings.d.ts +3 -2
  303. package/types/components/manage/Blocks/Block/Style.d.ts +1 -1
  304. package/types/components/manage/Blocks/Container/Data.d.ts +1 -1
  305. package/types/components/manage/Blocks/Container/Edit.d.ts +1 -1
  306. package/types/components/manage/Blocks/Container/EditBlockWrapper.d.ts +1 -1
  307. package/types/components/manage/Blocks/Container/NewBlockAddButton.d.ts +1 -1
  308. package/types/components/manage/Blocks/Container/SimpleContainerToolbar.d.ts +1 -1
  309. package/types/components/manage/Blocks/Description/Edit.d.ts +1 -1
  310. package/types/components/manage/Blocks/Description/View.d.ts +1 -1
  311. package/types/components/manage/Blocks/Grid/Edit.d.ts +1 -1
  312. package/types/components/manage/Blocks/Grid/View.d.ts +1 -1
  313. package/types/components/manage/Blocks/Grid/templates.d.ts +1 -1
  314. package/types/components/manage/Blocks/HTML/View.d.ts +1 -1
  315. package/types/components/manage/Blocks/HeroImageLeft/Data.d.ts +1 -1
  316. package/types/components/manage/Blocks/HeroImageLeft/View.d.ts +1 -1
  317. package/types/components/manage/Blocks/Image/Edit.d.ts +1 -3
  318. package/types/components/manage/Blocks/Image/ImageSidebar.d.ts +1 -1
  319. package/types/components/manage/Blocks/Image/LayoutSchema.d.ts +36 -1
  320. package/types/components/manage/Blocks/Image/View.d.ts +4 -3
  321. package/types/components/manage/Blocks/Image/schema.d.ts +1 -1
  322. package/types/components/manage/Blocks/LeadImage/Edit.d.ts +3 -2
  323. package/types/components/manage/Blocks/LeadImage/LeadImageSidebar.d.ts +5 -4
  324. package/types/components/manage/Blocks/LeadImage/View.d.ts +1 -1
  325. package/types/components/manage/Blocks/Listing/DefaultNoResultsComponent.d.ts +1 -1
  326. package/types/components/manage/Blocks/Listing/DefaultTemplate.d.ts +1 -1
  327. package/types/components/manage/Blocks/Listing/Edit.d.ts +1 -1
  328. package/types/components/manage/Blocks/Listing/GalleryNoResultsComponent.d.ts +1 -1
  329. package/types/components/manage/Blocks/Listing/ImageGallery.d.ts +1 -1
  330. package/types/components/manage/Blocks/Listing/ListingBody.d.ts +3 -2
  331. package/types/components/manage/Blocks/Listing/ListingData.d.ts +1 -1
  332. package/types/components/manage/Blocks/Listing/SummaryTemplate.d.ts +1 -1
  333. package/types/components/manage/Blocks/Listing/View.d.ts +1 -1
  334. package/types/components/manage/Blocks/Listing/getAsyncData.d.ts +1 -7
  335. package/types/components/manage/Blocks/Maps/Edit.d.ts +1 -1
  336. package/types/components/manage/Blocks/Maps/MapsSidebar.d.ts +1 -1
  337. package/types/components/manage/Blocks/Maps/View.d.ts +1 -3
  338. package/types/components/manage/Blocks/Search/SearchBlockEdit.d.ts +1 -1
  339. package/types/components/manage/Blocks/Search/SearchBlockView.d.ts +2 -2
  340. package/types/components/manage/Blocks/Search/components/CheckboxFacet.d.ts +1 -1
  341. package/types/components/manage/Blocks/Search/components/DateRangeFacetFilterListEntry.d.ts +1 -1
  342. package/types/components/manage/Blocks/Search/components/Facets.d.ts +1 -1
  343. package/types/components/manage/Blocks/Search/components/FilterList.d.ts +1 -1
  344. package/types/components/manage/Blocks/Search/components/SearchDetails.d.ts +1 -1
  345. package/types/components/manage/Blocks/Search/components/SearchInput.d.ts +1 -1
  346. package/types/components/manage/Blocks/Search/components/SelectFacetFilterListEntry.d.ts +1 -1
  347. package/types/components/manage/Blocks/Search/components/SortOn.d.ts +1 -3
  348. package/types/components/manage/Blocks/Search/components/ToggleFacet.d.ts +1 -1
  349. package/types/components/manage/Blocks/Search/components/ToggleFacetFilterListEntry.d.ts +1 -1
  350. package/types/components/manage/Blocks/Search/components/ViewSwitcher.d.ts +1 -3
  351. package/types/components/manage/Blocks/Search/hocs/withQueryString.d.ts +1 -1
  352. package/types/components/manage/Blocks/Search/hocs/withSearch.d.ts +1 -1
  353. package/types/components/manage/Blocks/Search/layout/LeftColumnFacets.d.ts +1 -1
  354. package/types/components/manage/Blocks/Search/layout/RightColumnFacets.d.ts +1 -1
  355. package/types/components/manage/Blocks/Search/layout/TopSideFacets.d.ts +1 -1
  356. package/types/components/manage/Blocks/Search/schema.d.ts +1 -1
  357. package/types/components/manage/Blocks/Search/widgets/SelectMetadataField.d.ts +1 -1
  358. package/types/components/manage/Blocks/Table/Cell.d.ts +1 -1
  359. package/types/components/manage/Blocks/Table/View.d.ts +1 -1
  360. package/types/components/manage/Blocks/Teaser/Body.d.ts +1 -1
  361. package/types/components/manage/Blocks/Teaser/Data.d.ts +1 -1
  362. package/types/components/manage/Blocks/Teaser/DefaultBody.d.ts +1 -1
  363. package/types/components/manage/Blocks/Teaser/Edit.d.ts +1 -1
  364. package/types/components/manage/Blocks/Teaser/View.d.ts +1 -1
  365. package/types/components/manage/Blocks/Text/Edit.d.ts +4 -6
  366. package/types/components/manage/Blocks/Text/Schema.d.ts +36 -1
  367. package/types/components/manage/Blocks/Title/Edit.d.ts +1 -1
  368. package/types/components/manage/Blocks/Title/View.d.ts +1 -1
  369. package/types/components/manage/Blocks/ToC/Edit.d.ts +3 -3
  370. package/types/components/manage/Blocks/ToC/View.d.ts +3 -2
  371. package/types/components/manage/Blocks/ToC/variations/DefaultTocRenderer.d.ts +3 -2
  372. package/types/components/manage/Blocks/ToC/variations/HorizontalMenu.d.ts +3 -2
  373. package/types/components/manage/Blocks/Video/Body.d.ts +6 -1
  374. package/types/components/manage/Blocks/Video/Body.test.d.ts +1 -0
  375. package/types/components/manage/Blocks/Video/Edit.d.ts +1 -3
  376. package/types/components/manage/Blocks/Video/VideoSidebar.d.ts +1 -1
  377. package/types/components/manage/Blocks/Video/View.d.ts +1 -1
  378. package/types/components/manage/Contents/Contents.d.ts +2 -6
  379. package/types/components/manage/Contents/ContentsBreadcrumbs.d.ts +1 -1
  380. package/types/components/manage/Contents/ContentsBreadcrumbsHomeItem.d.ts +1 -1
  381. package/types/components/manage/Contents/ContentsBreadcrumbsRootItem.d.ts +1 -1
  382. package/types/components/manage/Contents/ContentsPropertiesModal.d.ts +1 -1
  383. package/types/components/manage/Contents/ContentsRenameModal.d.ts +1 -1
  384. package/types/components/manage/Contents/ContentsRenameModal.stories.d.ts +1 -1
  385. package/types/components/manage/Contents/ContentsTagsModal.d.ts +1 -1
  386. package/types/components/manage/Contents/ContentsTagsModal.stories.d.ts +1 -2
  387. package/types/components/manage/Contents/ContentsWorkflowModal.d.ts +1 -1
  388. package/types/components/manage/Contents/circle.d.ts +1 -1
  389. package/types/components/manage/Controlpanels/ContentTypesActions.d.ts +3 -2
  390. package/types/components/manage/Controlpanels/Controlpanel.d.ts +3 -2
  391. package/types/components/manage/Controlpanels/Controlpanels.d.ts +1 -16
  392. package/types/components/manage/Controlpanels/Groups/RenderGroups.d.ts +3 -2
  393. package/types/components/manage/Controlpanels/Relations/BrokenRelations.d.ts +1 -1
  394. package/types/components/manage/Controlpanels/Relations/Relations.d.ts +1 -1
  395. package/types/components/manage/Controlpanels/Relations/RelationsListing.d.ts +1 -1
  396. package/types/components/manage/Controlpanels/Relations/RelationsMatrix.d.ts +41 -1
  397. package/types/components/manage/Controlpanels/Users/UserGroupMembershipControlPanel.d.ts +1 -1
  398. package/types/components/manage/Controlpanels/Users/UserGroupMembershipListing.d.ts +1 -1
  399. package/types/components/manage/Controlpanels/Users/UserGroupMembershipMatrix.d.ts +1 -1
  400. package/types/components/manage/Controlpanels/VersionOverview.d.ts +1 -1
  401. package/types/components/manage/Delete/Delete.d.ts +1 -1
  402. package/types/components/manage/Display/Display.d.ts +1 -3
  403. package/types/components/manage/Edit/Edit.d.ts +1 -3
  404. package/types/components/manage/Form/BlockDataForm.d.ts +1 -1
  405. package/types/components/manage/Form/BlocksToolbar.d.ts +3 -2
  406. package/types/components/manage/Form/Field.d.ts +3 -2
  407. package/types/components/manage/Form/Form.d.ts +1 -3
  408. package/types/components/manage/Form/InlineForm.d.ts +3 -2
  409. package/types/components/manage/Form/ModalForm.d.ts +3 -2
  410. package/types/components/manage/Form/UndoToolbar.d.ts +1 -1
  411. package/types/components/manage/History/History.d.ts +1 -3
  412. package/types/components/manage/LinkDetectionPlugin/link-detection-plugin.d.ts +1 -1
  413. package/types/components/manage/LinkMore/LinkMore.d.ts +1 -1
  414. package/types/components/manage/LinksToItem/LinksToItem.d.ts +3 -2
  415. package/types/components/manage/Messages/Messages.d.ts +1 -1
  416. package/types/components/manage/Multilingual/CompareLanguages.d.ts +2 -1
  417. package/types/components/manage/Multilingual/CreateTranslation.d.ts +1 -1
  418. package/types/components/manage/Multilingual/ManageTranslations.d.ts +41 -1
  419. package/types/components/manage/Multilingual/TranslationObject.d.ts +1 -1
  420. package/types/components/manage/Pluggable/Pluggable.stories.d.ts +4 -4
  421. package/types/components/manage/Pluggable/index.d.ts +26 -7
  422. package/types/components/manage/Sidebar/AlignBlock.d.ts +1 -1
  423. package/types/components/manage/Sidebar/ObjectBrowser.d.ts +24 -3
  424. package/types/components/manage/Sidebar/ObjectBrowserNav.d.ts +1 -1
  425. package/types/components/manage/Sidebar/Sidebar.d.ts +2 -1
  426. package/types/components/manage/Sidebar/SidebarPopup.d.ts +1 -1
  427. package/types/components/manage/Sidebar/SidebarPortal.d.ts +3 -2
  428. package/types/components/manage/TemplateChooser/TemplateChooser.d.ts +1 -1
  429. package/types/components/manage/TextLineEdit/TextLineEdit.d.ts +1 -1
  430. package/types/components/manage/TextLineEdit/TextLineEdit.stories.d.ts +1 -1
  431. package/types/components/manage/Toast/Toast.d.ts +1 -1
  432. package/types/components/manage/Toolbar/More.d.ts +3 -2
  433. package/types/components/manage/Toolbar/PersonalTools.d.ts +1 -1
  434. package/types/components/manage/Toolbar/StandardWrapper.d.ts +1 -1
  435. package/types/components/manage/Toolbar/Stats.d.ts +1 -1
  436. package/types/components/manage/Toolbar/Types.d.ts +1 -20
  437. package/types/components/manage/UniversalLink/UniversalLink.d.ts +1 -1
  438. package/types/components/manage/Widgets/AlignWidget.d.ts +1 -1
  439. package/types/components/manage/Widgets/AlignWidget.stories.d.ts +1 -1
  440. package/types/components/manage/Widgets/ArrayWidget.d.ts +4 -5
  441. package/types/components/manage/Widgets/ArrayWidget.stories.d.ts +1 -1
  442. package/types/components/manage/Widgets/ButtonsWidget.d.ts +1 -1
  443. package/types/components/manage/Widgets/ButtonsWidget.stories.d.ts +1 -1
  444. package/types/components/manage/Widgets/CheckboxWidget.d.ts +3 -2
  445. package/types/components/manage/Widgets/CheckboxWidget.stories.d.ts +1 -1
  446. package/types/components/manage/Widgets/ColorPickerWidget.d.ts +21 -21
  447. package/types/components/manage/Widgets/ColorPickerWidget.stories.d.ts +7 -8
  448. package/types/components/manage/Widgets/DatetimeWidget.d.ts +3 -3
  449. package/types/components/manage/Widgets/DatetimeWidget.stories.d.ts +1 -1
  450. package/types/components/manage/Widgets/EmailWidget.d.ts +1 -1
  451. package/types/components/manage/Widgets/EmailWidget.stories.d.ts +1 -1
  452. package/types/components/manage/Widgets/FileWidget.d.ts +3 -2
  453. package/types/components/manage/Widgets/FileWidget.stories.d.ts +1 -1
  454. package/types/components/manage/Widgets/FormFieldWrapper.d.ts +3 -2
  455. package/types/components/manage/Widgets/FormFieldWrapper.stories.d.ts +1 -1
  456. package/types/components/manage/Widgets/IdWidget.stories.d.ts +3 -2
  457. package/types/components/manage/Widgets/ImageSizeWidget.d.ts +3 -2
  458. package/types/components/manage/Widgets/ImageSizeWidget.stories.d.ts +1 -1
  459. package/types/components/manage/Widgets/InternalUrlWidget.d.ts +42 -2
  460. package/types/components/manage/Widgets/InternalUrlWidget.stories.d.ts +1 -1
  461. package/types/components/manage/Widgets/NumberWidget.d.ts +3 -2
  462. package/types/components/manage/Widgets/NumberWidget.stories.d.ts +1 -1
  463. package/types/components/manage/Widgets/ObjectBrowserWidget.d.ts +10 -10
  464. package/types/components/manage/Widgets/ObjectBrowserWidget.stories.d.ts +7 -7
  465. package/types/components/manage/Widgets/ObjectListWidget.d.ts +1 -1
  466. package/types/components/manage/Widgets/ObjectListWidget.stories.d.ts +2 -2
  467. package/types/components/manage/Widgets/ObjectWidget.d.ts +1 -1
  468. package/types/components/manage/Widgets/ObjectWidget.stories.d.ts +1 -1
  469. package/types/components/manage/Widgets/PasswordWidget.d.ts +3 -2
  470. package/types/components/manage/Widgets/PasswordWidget.stories.d.ts +1 -1
  471. package/types/components/manage/Widgets/QueryWidget.d.ts +3 -5
  472. package/types/components/manage/Widgets/QueryWidget.stories.d.ts +1 -1
  473. package/types/components/manage/Widgets/QuerystringWidget.d.ts +1 -1
  474. package/types/components/manage/Widgets/RecurrenceWidget/ByMonthDayField.d.ts +17 -2
  475. package/types/components/manage/Widgets/RecurrenceWidget/ByMonthField.d.ts +21 -2
  476. package/types/components/manage/Widgets/RecurrenceWidget/ByYearField.d.ts +23 -2
  477. package/types/components/manage/Widgets/RecurrenceWidget/EndField.d.ts +17 -2
  478. package/types/components/manage/Widgets/RecurrenceWidget/Occurences.d.ts +3 -2
  479. package/types/components/manage/Widgets/RecurrenceWidget/WeekdayOfTheMonthIndexField.d.ts +3 -2
  480. package/types/components/manage/Widgets/RegistryImageWidget.d.ts +3 -2
  481. package/types/components/manage/Widgets/SchemaWidget.d.ts +1 -3
  482. package/types/components/manage/Widgets/SelectAutoComplete.d.ts +4 -5
  483. package/types/components/manage/Widgets/SelectAutocompleteWidget.stories.d.ts +1 -1
  484. package/types/components/manage/Widgets/SelectStyling.d.ts +1 -1
  485. package/types/components/manage/Widgets/SelectWidget.d.ts +3 -2
  486. package/types/components/manage/Widgets/SelectWidget.stories.d.ts +1 -1
  487. package/types/components/manage/Widgets/TextWidget.d.ts +3 -2
  488. package/types/components/manage/Widgets/TextWidget.stories.d.ts +1 -1
  489. package/types/components/manage/Widgets/TextareaWidget.d.ts +3 -2
  490. package/types/components/manage/Widgets/TextareaWidget.stories.d.ts +1 -1
  491. package/types/components/manage/Widgets/TokenWidget.d.ts +1 -3
  492. package/types/components/manage/Widgets/TokenWidget.stories.d.ts +1 -1
  493. package/types/components/manage/Widgets/UrlWidget.d.ts +42 -2
  494. package/types/components/manage/Widgets/UrlWidget.stories.d.ts +1 -1
  495. package/types/components/manage/Widgets/VocabularyTermsWidget.d.ts +1 -1
  496. package/types/components/manage/Widgets/VocabularyTermsWidget.stories.d.ts +1 -1
  497. package/types/components/manage/Widgets/WysiwygWidget.d.ts +1 -5
  498. package/types/components/manage/Widgets/WysiwygWidget.stories.d.ts +1 -1
  499. package/types/components/manage/Widgets/story.d.ts +1 -1
  500. package/types/components/theme/Anontools/Anontools.d.ts +1 -1
  501. package/types/components/theme/App/App.d.ts +4 -4
  502. package/types/components/theme/AppExtras/AppExtras.d.ts +1 -1
  503. package/types/components/theme/Avatar/Avatar.d.ts +1 -1
  504. package/types/components/theme/Breadcrumbs/Breadcrumbs.d.ts +1 -1
  505. package/types/components/theme/Breadcrumbs/Breadcrumbs.stories.d.ts +3 -2
  506. package/types/components/theme/Comments/Comment.stories.d.ts +1 -1
  507. package/types/components/theme/Comments/CommentEditModal.d.ts +1 -1
  508. package/types/components/theme/Comments/CommentEditModal.stories.d.ts +1 -1
  509. package/types/components/theme/Component/Component.d.ts +1 -1
  510. package/types/components/theme/ConnectionRefused/ConnectionRefused.d.ts +1 -1
  511. package/types/components/theme/ContactForm/ContactForm.d.ts +1 -1
  512. package/types/components/theme/ContactForm/ContactForm.stories.d.ts +1 -1
  513. package/types/components/theme/ContentMetadataTags/ContentMetadataTags.d.ts +1 -1
  514. package/types/components/theme/Error/ErrorBoundary.d.ts +2 -1
  515. package/types/components/theme/Error/ServerError.d.ts +1 -1
  516. package/types/components/theme/EventDetails/EventDetails.d.ts +1 -1
  517. package/types/components/theme/EventDetails/EventDetails.stories.d.ts +1 -1
  518. package/types/components/theme/Footer/Footer.d.ts +3 -2
  519. package/types/components/theme/Forbidden/Forbidden.d.ts +1 -1
  520. package/types/components/theme/FormattedDate/FormattedDate.d.ts +1 -1
  521. package/types/components/theme/FormattedDate/FormattedDate.stories.d.ts +1 -1
  522. package/types/components/theme/FormattedDate/FormattedRelativeDate.d.ts +1 -1
  523. package/types/components/theme/FormattedDate/FormattedRelativeDate.stories.d.ts +1 -1
  524. package/types/components/theme/Header/Header.d.ts +1 -1
  525. package/types/components/theme/Header/Header.stories.d.ts +1 -1
  526. package/types/components/theme/Image/Image.d.ts +1 -1
  527. package/types/components/theme/LanguageSelector/LanguageSelector.d.ts +1 -1
  528. package/types/components/theme/Login/Login.d.ts +1 -1
  529. package/types/components/theme/Login/Login.stories.d.ts +1 -1
  530. package/types/components/theme/Logo/Logo.stories.d.ts +1 -1
  531. package/types/components/theme/Logout/Logout.d.ts +1 -1
  532. package/types/components/theme/MultilingualRedirector/MultilingualRedirector.d.ts +1 -1
  533. package/types/components/theme/Navigation/ContextNavigation.d.ts +1 -1
  534. package/types/components/theme/Navigation/ContextNavigation.stories.d.ts +2 -2
  535. package/types/components/theme/Navigation/NavItem.d.ts +1 -1
  536. package/types/components/theme/Navigation/NavItems.d.ts +1 -1
  537. package/types/components/theme/Navigation/Navigation.d.ts +1 -1
  538. package/types/components/theme/Navigation/withContentNavigation.d.ts +1 -1
  539. package/types/components/theme/NotFound/NotFound.d.ts +1 -1
  540. package/types/components/theme/OutdatedBrowser/OutdatedBrowser.d.ts +1 -1
  541. package/types/components/theme/Pagination/Pagination.d.ts +3 -2
  542. package/types/components/theme/PasswordReset/RequestPasswordReset.d.ts +1 -1
  543. package/types/components/theme/Popup/Popup.d.ts +1 -1
  544. package/types/components/theme/PreviewImage/PreviewImage.d.ts +1 -1
  545. package/types/components/theme/Search/Search.d.ts +1 -3
  546. package/types/components/theme/Search/SearchTags.d.ts +1 -1
  547. package/types/components/theme/SearchWidget/SearchWidget.d.ts +1 -1
  548. package/types/components/theme/SearchWidget/SearchWidget.stories.d.ts +1 -1
  549. package/types/components/theme/Sitemap/Sitemap.d.ts +1 -3
  550. package/types/components/theme/SkipLinks/SkipLinks.d.ts +1 -1
  551. package/types/components/theme/SlotRenderer/SlotRenderer.d.ts +7 -0
  552. package/types/components/theme/SlotRenderer/SlotRenderer.test.d.ts +1 -0
  553. package/types/components/theme/TsTest/TsTest.d.ts +10 -0
  554. package/types/components/theme/TsTest/TsTest.test.d.ts +1 -0
  555. package/types/components/theme/Unauthorized/Unauthorized.d.ts +1 -1
  556. package/types/components/theme/View/AlbumView.d.ts +3 -2
  557. package/types/components/theme/View/DefaultView.d.ts +3 -2
  558. package/types/components/theme/View/EventDatesInfo.d.ts +1 -1
  559. package/types/components/theme/View/LinkView.d.ts +1 -1
  560. package/types/components/theme/View/RenderBlocks.d.ts +1 -1
  561. package/types/components/theme/Widgets/ArrayWidget.d.ts +1 -1
  562. package/types/components/theme/Widgets/BooleanWidget.d.ts +15 -2
  563. package/types/components/theme/Widgets/DateWidget.d.ts +1 -1
  564. package/types/components/theme/Widgets/DatetimeWidget.d.ts +1 -1
  565. package/types/components/theme/Widgets/DescriptionWidget.d.ts +1 -1
  566. package/types/components/theme/Widgets/EmailWidget.d.ts +1 -1
  567. package/types/components/theme/Widgets/FileWidget.d.ts +1 -1
  568. package/types/components/theme/Widgets/ImageWidget.d.ts +1 -1
  569. package/types/components/theme/Widgets/PasswordWidget.d.ts +1 -1
  570. package/types/components/theme/Widgets/RelationWidget.d.ts +1 -1
  571. package/types/components/theme/Widgets/RelationsWidget.d.ts +1 -1
  572. package/types/components/theme/Widgets/RichTextWidget.d.ts +1 -1
  573. package/types/components/theme/Widgets/SelectWidget.d.ts +1 -1
  574. package/types/components/theme/Widgets/TextWidget.d.ts +1 -1
  575. package/types/components/theme/Widgets/TitleWidget.d.ts +1 -1
  576. package/types/components/theme/Widgets/TokenWidget.d.ts +1 -1
  577. package/types/components/theme/Widgets/UrlWidget.d.ts +1 -1
  578. package/types/config/Blocks.d.ts +2 -34
  579. package/types/config/Components.d.ts +3 -0
  580. package/types/config/ContentIcons.d.ts +7 -7
  581. package/types/config/ControlPanels.d.ts +21 -21
  582. package/types/config/Loadables.d.ts +0 -10
  583. package/types/config/RichTextEditor/ToHTML.d.ts +10 -10
  584. package/types/config/Views.d.ts +40 -11
  585. package/types/config/Widgets.d.ts +54 -4
  586. package/types/constants/ActionTypes.d.ts +4 -0
  587. package/types/error.d.ts +3 -2
  588. package/types/helpers/AsyncConnect/AsyncConnect.d.ts +4 -4
  589. package/types/helpers/AsyncConnect/index.d.ts +2 -2
  590. package/types/helpers/Blocks/Blocks.d.ts +3 -1
  591. package/types/helpers/Blocks/defaultBlocks.d.ts +2 -0
  592. package/types/helpers/Blocks/defaultBlocks.test.d.ts +1 -0
  593. package/types/helpers/Extensions/withBlockExtensions.d.ts +1 -1
  594. package/types/helpers/Extensions/withBlockSchemaEnhancer.d.ts +7 -5
  595. package/types/helpers/FormValidation/FormValidation.d.ts +1 -0
  596. package/types/helpers/Helmet/Helmet.d.ts +68 -2
  597. package/types/helpers/Html/Html.d.ts +2 -2
  598. package/types/helpers/Loadable/__mocks__/Loadable.d.ts +2 -2
  599. package/types/helpers/MessageLabels/MessageLabels.d.ts +1 -540
  600. package/types/helpers/ScrollToTop/ScrollToTop.d.ts +1 -1
  601. package/types/helpers/Slots/index.d.ts +7 -0
  602. package/types/helpers/UndoManager/useUndoManager.d.ts +4 -4
  603. package/types/helpers/Url/Url.d.ts +1 -1
  604. package/types/helpers/User/User.d.ts +18 -0
  605. package/types/helpers/Utils/UseDetectClickOutside.stories.d.ts +2 -2
  606. package/types/helpers/Utils/Utils.d.ts +1 -1
  607. package/types/helpers/Utils/usePagination.d.ts +1 -1
  608. package/types/helpers/Utils/usePrevious.d.ts +1 -1
  609. package/types/helpers/index.d.ts +16 -2
  610. package/types/hooks/index.d.ts +2 -1
  611. package/types/icons/load-icons.d.ts +1 -1
  612. package/types/middleware/index.d.ts +2 -0
  613. package/types/reducers/form/form.d.ts +1 -1
  614. package/types/reducers/index.d.ts +40 -0
  615. package/types/registry.d.ts +1 -0
  616. package/types/routes.d.ts +31 -3
  617. package/types/server.d.ts +1 -1
  618. package/types/storybook.d.ts +6 -6
  619. package/webpack-plugins/webpack-bundle-analyze-plugin.js +1 -1
  620. package/webpack-plugins/webpack-less-plugin.js +1 -0
  621. package/CODE_OF_CONDUCT.md +0 -13
  622. package/CONTRIBUTING.md +0 -7
  623. package/README.md +0 -154
  624. package/RELEASING.md +0 -73
  625. package/ROADMAP.md +0 -30
  626. package/SECURITY.md +0 -14
  627. package/logos/Logo.png +0 -0
  628. package/logos/VoltoLogoEra2-dark-mode.png +0 -0
  629. package/logos/VoltoLogoEra2.png +0 -0
  630. package/logos/volto-colorful.png +0 -0
  631. package/logos/volto-colorful.svg +0 -35
  632. package/logos/volto-guide.png +0 -0
  633. package/logos/volto-h-transparent.svg +0 -6
  634. package/logos/volto-transparent.png +0 -0
  635. package/logos/volto-transparent.svg +0 -19
  636. package/logos/volto-transparent2.svg +0 -5
  637. package/logos/volto-yellow.svg +0 -29
  638. package/logos/volto.sketch +0 -0
  639. package/packages/README.md +0 -7
  640. package/packages/registry/.towncrier/towncrier_template.jinja +0 -10
  641. package/packages/registry/CHANGELOG.md +0 -16
  642. package/packages/registry/README.md +0 -207
  643. package/packages/registry/addon-registry.js +0 -603
  644. package/packages/registry/create-addons-loader.js +0 -116
  645. package/packages/registry/create-theme-addons-loader.js +0 -78
  646. package/packages/registry/news/.gitkeep +0 -0
  647. package/packages/registry/package.json +0 -76
  648. package/packages/registry/src/index.ts +0 -174
  649. package/packages/registry/src/registry.test.js +0 -111
  650. package/packages/registry/tsconfig.json +0 -32
  651. package/packages/scripts/CHANGELOG.md +0 -173
  652. package/packages/scripts/README.md +0 -128
  653. package/packages/scripts/addon/consolidate.js +0 -28
  654. package/packages/scripts/addon/generators.js +0 -213
  655. package/packages/scripts/addon/getAddonInfo.js +0 -65
  656. package/packages/scripts/addon/index.js +0 -88
  657. package/packages/scripts/addon/utils.js +0 -44
  658. package/packages/scripts/backportpr.js +0 -75
  659. package/packages/scripts/changelogupdater.cjs +0 -94
  660. package/packages/scripts/corepackagebump.js +0 -20
  661. package/packages/scripts/i18n.cjs +0 -310
  662. package/packages/scripts/package.json +0 -76
  663. package/packages/scripts/templates/towncrier_template.jinja +0 -10
  664. package/packages/types/Blocks/View.ts +0 -11
  665. package/packages/types/actions.ts +0 -15
  666. package/packages/types/breadcrumbs.ts +0 -10
  667. package/packages/types/config/Blocks.ts +0 -153
  668. package/packages/types/config/Content.ts +0 -62
  669. package/packages/types/config/Settings.ts +0 -86
  670. package/packages/types/config/Views.ts +0 -15
  671. package/packages/types/config/Widgets.ts +0 -7
  672. package/packages/types/config/index.ts +0 -21
  673. package/packages/types/content/common.ts +0 -60
  674. package/packages/types/content/get.ts +0 -66
  675. package/packages/types/index.ts +0 -0
  676. package/packages/types/navigation.ts +0 -12
  677. package/packages/types/package.json +0 -64
  678. package/packages/types/types.ts +0 -61
  679. package/packages/volto-slate/.i18n.babel.config.js +0 -1
  680. package/packages/volto-slate/README.md +0 -4
  681. package/packages/volto-slate/build/messages/src/blocks/Table/TableBlockEdit.json +0 -90
  682. package/packages/volto-slate/build/messages/src/blocks/Text/DefaultTextBlockEditor.json +0 -6
  683. package/packages/volto-slate/build/messages/src/blocks/Text/DetachedTextBlockEditor.json +0 -6
  684. package/packages/volto-slate/build/messages/src/blocks/Text/SlashMenu.json +0 -6
  685. package/packages/volto-slate/build/messages/src/editor/plugins/AdvancedLink/index.json +0 -10
  686. package/packages/volto-slate/build/messages/src/editor/plugins/Link/index.json +0 -10
  687. package/packages/volto-slate/build/messages/src/editor/plugins/Table/index.json +0 -30
  688. package/packages/volto-slate/build/messages/src/elementEditor/messages.json +0 -10
  689. package/packages/volto-slate/build/messages/src/widgets/HtmlSlateWidget.json +0 -6
  690. package/packages/volto-slate/build/messages/src/widgets/RichTextWidgetView.json +0 -6
  691. package/packages/volto-slate/locales/de/LC_MESSAGES/volto.po +0 -148
  692. package/packages/volto-slate/locales/en/LC_MESSAGES/volto.po +0 -148
  693. package/packages/volto-slate/locales/volto.pot +0 -182
  694. package/packages/volto-slate/package.json +0 -43
  695. package/packages/volto-slate/src/actions/content.js +0 -30
  696. package/packages/volto-slate/src/actions/index.js +0 -3
  697. package/packages/volto-slate/src/actions/plugins.js +0 -9
  698. package/packages/volto-slate/src/actions/selection.js +0 -22
  699. package/packages/volto-slate/src/blocks/Table/Cell.jsx +0 -87
  700. package/packages/volto-slate/src/blocks/Table/Cell.test.js +0 -54
  701. package/packages/volto-slate/src/blocks/Table/TableBlockEdit.jsx +0 -694
  702. package/packages/volto-slate/src/blocks/Table/TableBlockEdit.test.js +0 -40
  703. package/packages/volto-slate/src/blocks/Table/TableBlockView.jsx +0 -150
  704. package/packages/volto-slate/src/blocks/Table/TableBlockView.test.js +0 -49
  705. package/packages/volto-slate/src/blocks/Table/deconstruct.js +0 -113
  706. package/packages/volto-slate/src/blocks/Table/extensions/normalizeTable.js +0 -5
  707. package/packages/volto-slate/src/blocks/Table/index.js +0 -60
  708. package/packages/volto-slate/src/blocks/Table/schema.js +0 -122
  709. package/packages/volto-slate/src/blocks/Text/DefaultTextBlockEditor.jsx +0 -304
  710. package/packages/volto-slate/src/blocks/Text/DetachedTextBlockEditor.jsx +0 -77
  711. package/packages/volto-slate/src/blocks/Text/MarkdownIntroduction.jsx +0 -59
  712. package/packages/volto-slate/src/blocks/Text/PluginSidebar.jsx +0 -18
  713. package/packages/volto-slate/src/blocks/Text/ShortcutListing.jsx +0 -28
  714. package/packages/volto-slate/src/blocks/Text/SlashMenu.jsx +0 -203
  715. package/packages/volto-slate/src/blocks/Text/TextBlockEdit.jsx +0 -38
  716. package/packages/volto-slate/src/blocks/Text/TextBlockEdit.test.js +0 -107
  717. package/packages/volto-slate/src/blocks/Text/TextBlockSchema.js +0 -54
  718. package/packages/volto-slate/src/blocks/Text/TextBlockView.jsx +0 -31
  719. package/packages/volto-slate/src/blocks/Text/css/editor.css +0 -18
  720. package/packages/volto-slate/src/blocks/Text/extensions/Readme.md +0 -49
  721. package/packages/volto-slate/src/blocks/Text/extensions/breakList.js +0 -100
  722. package/packages/volto-slate/src/blocks/Text/extensions/index.js +0 -6
  723. package/packages/volto-slate/src/blocks/Text/extensions/insertBreak.js +0 -57
  724. package/packages/volto-slate/src/blocks/Text/extensions/isSelected.js +0 -7
  725. package/packages/volto-slate/src/blocks/Text/extensions/normalizeExternalData.js +0 -7
  726. package/packages/volto-slate/src/blocks/Text/extensions/withDeserializers.js +0 -87
  727. package/packages/volto-slate/src/blocks/Text/extensions/withLists.js +0 -5
  728. package/packages/volto-slate/src/blocks/Text/index.js +0 -171
  729. package/packages/volto-slate/src/blocks/Text/keyboard/backspaceInList.js +0 -58
  730. package/packages/volto-slate/src/blocks/Text/keyboard/breakBlocks.js +0 -3
  731. package/packages/volto-slate/src/blocks/Text/keyboard/cancelEsc.js +0 -7
  732. package/packages/volto-slate/src/blocks/Text/keyboard/indentListItems.js +0 -240
  733. package/packages/volto-slate/src/blocks/Text/keyboard/index.js +0 -52
  734. package/packages/volto-slate/src/blocks/Text/keyboard/joinBlocks.js +0 -180
  735. package/packages/volto-slate/src/blocks/Text/keyboard/moveListItems.js +0 -124
  736. package/packages/volto-slate/src/blocks/Text/keyboard/slashMenu.js +0 -19
  737. package/packages/volto-slate/src/blocks/Text/keyboard/softBreak.js +0 -7
  738. package/packages/volto-slate/src/blocks/Text/keyboard/traverseBlocks.js +0 -81
  739. package/packages/volto-slate/src/blocks/Text/keyboard/unwrapEmptyString.js +0 -26
  740. package/packages/volto-slate/src/blocks/Text/schema.js +0 -39
  741. package/packages/volto-slate/src/constants.js +0 -123
  742. package/packages/volto-slate/src/editor/EditorContext.jsx +0 -5
  743. package/packages/volto-slate/src/editor/EditorReference.jsx +0 -22
  744. package/packages/volto-slate/src/editor/SlateEditor.jsx +0 -375
  745. package/packages/volto-slate/src/editor/config.jsx +0 -344
  746. package/packages/volto-slate/src/editor/decorate.js +0 -68
  747. package/packages/volto-slate/src/editor/deserialize.js +0 -185
  748. package/packages/volto-slate/src/editor/extensions/index.js +0 -6
  749. package/packages/volto-slate/src/editor/extensions/insertBreak.js +0 -15
  750. package/packages/volto-slate/src/editor/extensions/insertData.js +0 -159
  751. package/packages/volto-slate/src/editor/extensions/isInline.js +0 -14
  752. package/packages/volto-slate/src/editor/extensions/normalizeExternalData.js +0 -8
  753. package/packages/volto-slate/src/editor/extensions/normalizeNode.js +0 -48
  754. package/packages/volto-slate/src/editor/extensions/withDeserializers.js +0 -15
  755. package/packages/volto-slate/src/editor/extensions/withTestingFeatures.jsx +0 -84
  756. package/packages/volto-slate/src/editor/index.js +0 -14
  757. package/packages/volto-slate/src/editor/less/editor.less +0 -173
  758. package/packages/volto-slate/src/editor/less/globals.less +0 -18
  759. package/packages/volto-slate/src/editor/less/slate.less +0 -28
  760. package/packages/volto-slate/src/editor/plugins/AdvancedLink/deserialize.js +0 -90
  761. package/packages/volto-slate/src/editor/plugins/AdvancedLink/extensions.js +0 -32
  762. package/packages/volto-slate/src/editor/plugins/AdvancedLink/index.js +0 -50
  763. package/packages/volto-slate/src/editor/plugins/AdvancedLink/render.jsx +0 -37
  764. package/packages/volto-slate/src/editor/plugins/AdvancedLink/schema.js +0 -114
  765. package/packages/volto-slate/src/editor/plugins/AdvancedLink/styles.less +0 -8
  766. package/packages/volto-slate/src/editor/plugins/Blockquote/index.js +0 -30
  767. package/packages/volto-slate/src/editor/plugins/Callout/index.js +0 -34
  768. package/packages/volto-slate/src/editor/plugins/Image/deconstruct.js +0 -30
  769. package/packages/volto-slate/src/editor/plugins/Image/extensions.js +0 -51
  770. package/packages/volto-slate/src/editor/plugins/Image/index.js +0 -11
  771. package/packages/volto-slate/src/editor/plugins/Image/render.jsx +0 -22
  772. package/packages/volto-slate/src/editor/plugins/Link/extensions.js +0 -58
  773. package/packages/volto-slate/src/editor/plugins/Link/index.js +0 -164
  774. package/packages/volto-slate/src/editor/plugins/Link/render.jsx +0 -54
  775. package/packages/volto-slate/src/editor/plugins/Markdown/constants.js +0 -81
  776. package/packages/volto-slate/src/editor/plugins/Markdown/extensions.js +0 -334
  777. package/packages/volto-slate/src/editor/plugins/Markdown/index.js +0 -28
  778. package/packages/volto-slate/src/editor/plugins/Markdown/utils.js +0 -198
  779. package/packages/volto-slate/src/editor/plugins/StyleMenu/StyleMenu.jsx +0 -153
  780. package/packages/volto-slate/src/editor/plugins/StyleMenu/index.js +0 -19
  781. package/packages/volto-slate/src/editor/plugins/StyleMenu/style.less +0 -29
  782. package/packages/volto-slate/src/editor/plugins/StyleMenu/utils.js +0 -168
  783. package/packages/volto-slate/src/editor/plugins/Table/TableButton.jsx +0 -142
  784. package/packages/volto-slate/src/editor/plugins/Table/TableCell.jsx +0 -44
  785. package/packages/volto-slate/src/editor/plugins/Table/TableContainer.jsx +0 -37
  786. package/packages/volto-slate/src/editor/plugins/Table/TableSizePicker.jsx +0 -83
  787. package/packages/volto-slate/src/editor/plugins/Table/extensions.js +0 -87
  788. package/packages/volto-slate/src/editor/plugins/Table/index.js +0 -390
  789. package/packages/volto-slate/src/editor/plugins/Table/less/public.less +0 -29
  790. package/packages/volto-slate/src/editor/plugins/Table/less/table.less +0 -28
  791. package/packages/volto-slate/src/editor/plugins/Table/render.jsx +0 -30
  792. package/packages/volto-slate/src/editor/plugins/index.js +0 -19
  793. package/packages/volto-slate/src/editor/render.jsx +0 -224
  794. package/packages/volto-slate/src/editor/ui/BasicToolbar.jsx +0 -11
  795. package/packages/volto-slate/src/editor/ui/BlockButton.jsx +0 -31
  796. package/packages/volto-slate/src/editor/ui/ClearFormattingButton.jsx +0 -21
  797. package/packages/volto-slate/src/editor/ui/ExpandedToolbar.jsx +0 -18
  798. package/packages/volto-slate/src/editor/ui/Expando.jsx +0 -5
  799. package/packages/volto-slate/src/editor/ui/InlineToolbar.jsx +0 -73
  800. package/packages/volto-slate/src/editor/ui/MarkButton.jsx +0 -23
  801. package/packages/volto-slate/src/editor/ui/MarkElementButton.jsx +0 -30
  802. package/packages/volto-slate/src/editor/ui/Menu.jsx +0 -13
  803. package/packages/volto-slate/src/editor/ui/PositionedToolbar.jsx +0 -32
  804. package/packages/volto-slate/src/editor/ui/Separator.jsx +0 -7
  805. package/packages/volto-slate/src/editor/ui/SlateContextToolbar.jsx +0 -13
  806. package/packages/volto-slate/src/editor/ui/SlateToolbar.jsx +0 -96
  807. package/packages/volto-slate/src/editor/ui/Toolbar.jsx +0 -103
  808. package/packages/volto-slate/src/editor/ui/ToolbarButton.jsx +0 -33
  809. package/packages/volto-slate/src/editor/ui/ToolbarButton.test.js +0 -25
  810. package/packages/volto-slate/src/editor/ui/index.js +0 -15
  811. package/packages/volto-slate/src/editor/utils.js +0 -248
  812. package/packages/volto-slate/src/elementEditor/ContextButtons.jsx +0 -56
  813. package/packages/volto-slate/src/elementEditor/PluginEditor.jsx +0 -124
  814. package/packages/volto-slate/src/elementEditor/Readme.md +0 -6
  815. package/packages/volto-slate/src/elementEditor/SchemaProvider.jsx +0 -3
  816. package/packages/volto-slate/src/elementEditor/SidebarEditor.jsx +0 -46
  817. package/packages/volto-slate/src/elementEditor/ToolbarButton.jsx +0 -44
  818. package/packages/volto-slate/src/elementEditor/index.js +0 -5
  819. package/packages/volto-slate/src/elementEditor/makeInlineElementPlugin.js +0 -100
  820. package/packages/volto-slate/src/elementEditor/messages.js +0 -14
  821. package/packages/volto-slate/src/elementEditor/utils.js +0 -226
  822. package/packages/volto-slate/src/hooks/index.js +0 -3
  823. package/packages/volto-slate/src/hooks/useEditorContext.js +0 -6
  824. package/packages/volto-slate/src/hooks/useIsomorphicLayoutEffect.js +0 -7
  825. package/packages/volto-slate/src/hooks/useSelectionPosition.js +0 -25
  826. package/packages/volto-slate/src/i18n.js +0 -180
  827. package/packages/volto-slate/src/icons/hashlink.svg +0 -57
  828. package/packages/volto-slate/src/index.js +0 -61
  829. package/packages/volto-slate/src/reducers/content.js +0 -74
  830. package/packages/volto-slate/src/reducers/index.js +0 -3
  831. package/packages/volto-slate/src/reducers/plugins.js +0 -17
  832. package/packages/volto-slate/src/reducers/selection.js +0 -16
  833. package/packages/volto-slate/src/utils/blocks.js +0 -375
  834. package/packages/volto-slate/src/utils/blocks.test.js +0 -138
  835. package/packages/volto-slate/src/utils/editor.js +0 -31
  836. package/packages/volto-slate/src/utils/image.js +0 -25
  837. package/packages/volto-slate/src/utils/index.js +0 -11
  838. package/packages/volto-slate/src/utils/internals.js +0 -46
  839. package/packages/volto-slate/src/utils/lists.js +0 -92
  840. package/packages/volto-slate/src/utils/marks.js +0 -104
  841. package/packages/volto-slate/src/utils/mime-types.js +0 -24
  842. package/packages/volto-slate/src/utils/nodes.js +0 -4
  843. package/packages/volto-slate/src/utils/ops.js +0 -20
  844. package/packages/volto-slate/src/utils/random.js +0 -17
  845. package/packages/volto-slate/src/utils/selection.js +0 -236
  846. package/packages/volto-slate/src/utils/slate-string-utils.js +0 -408
  847. package/packages/volto-slate/src/utils/volto-blocks.js +0 -314
  848. package/packages/volto-slate/src/widgets/ErrorBoundary.jsx +0 -27
  849. package/packages/volto-slate/src/widgets/HtmlSlateWidget.jsx +0 -139
  850. package/packages/volto-slate/src/widgets/ObjectByTypeWidget.jsx +0 -49
  851. package/packages/volto-slate/src/widgets/RichTextWidget.jsx +0 -72
  852. package/packages/volto-slate/src/widgets/RichTextWidgetView.jsx +0 -37
  853. package/packages/volto-slate/src/widgets/style.css +0 -21
  854. package/src/components/manage/AnchorPlugin/components/Link/index.jsx +0 -37
  855. package/src/components/manage/AnchorPlugin/components/LinkButton/index.jsx +0 -126
  856. package/src/components/manage/AnchorPlugin/index.jsx +0 -82
  857. package/src/components/manage/AnchorPlugin/linkStrategy.js +0 -21
  858. package/src/components/manage/AnchorPlugin/utils/EditorUtils.js +0 -47
  859. package/src/components/manage/Blocks/HeroImageLeft/Data.jsx +0 -27
  860. package/src/components/manage/Blocks/HeroImageLeft/Edit.jsx +0 -493
  861. package/src/components/manage/Blocks/HeroImageLeft/Edit.test.jsx +0 -58
  862. package/src/components/manage/Blocks/HeroImageLeft/View.jsx +0 -37
  863. package/src/components/manage/Blocks/HeroImageLeft/View.test.jsx +0 -9
  864. package/src/components/manage/Blocks/HeroImageLeft/schema.js +0 -43
  865. package/src/components/manage/Blocks/Table/Cell.jsx +0 -206
  866. package/src/components/manage/Blocks/Table/Cell.test.jsx +0 -19
  867. package/src/components/manage/Blocks/Table/Edit.jsx +0 -747
  868. package/src/components/manage/Blocks/Table/Edit.test.jsx +0 -44
  869. package/src/components/manage/Blocks/Table/Readme.md +0 -5
  870. package/src/components/manage/Blocks/Table/View.jsx +0 -51
  871. package/src/components/manage/Blocks/Table/View.test.jsx +0 -41
  872. package/src/components/manage/Blocks/Text/Edit.jsx +0 -372
  873. package/src/components/manage/Blocks/Text/Edit.test.jsx +0 -46
  874. package/src/components/manage/Blocks/Text/Readme.md +0 -5
  875. package/src/components/manage/Blocks/Text/Schema.jsx +0 -31
  876. package/src/components/manage/Blocks/Text/View.jsx +0 -26
  877. package/src/components/manage/Blocks/Text/View.test.jsx +0 -28
  878. package/src/components/manage/LinkDetectionPlugin/link-detection-plugin.jsx +0 -227
  879. package/src/components/manage/LinkDetectionPlugin/utils.js +0 -12
  880. package/src/components/manage/Multilingual/CreateTranslation.test.jsx +0 -46
  881. package/src/components/manage/Widgets/ColorPickerWidget.stories.jsx +0 -30
  882. package/src/components/manage/Widgets/WysiwygWidget.stories.jsx +0 -24
  883. package/src/components/manage/Widgets/WysiwygWidget.test.jsx +0 -37
  884. package/src/config/RichTextEditor/Blocks.jsx +0 -29
  885. package/src/config/RichTextEditor/FromHTML.jsx +0 -8
  886. package/src/config/RichTextEditor/Plugins.jsx +0 -59
  887. package/src/config/RichTextEditor/Styles.jsx +0 -69
  888. package/src/config/RichTextEditor/ToHTML.jsx +0 -262
  889. package/src/config/RichTextEditor/index.js +0 -25
  890. package/src/helpers/Utils/usePagination.test.js +0 -115
@@ -50,6 +50,46 @@ declare namespace reducers {
50
50
  export { navroot };
51
51
  }
52
52
  import reduxAsyncConnect from './asyncConnect/asyncConnect';
53
+ import actions from '@plone/volto/reducers/actions/actions';
54
+ import addons from '@plone/volto/reducers/addons/addons';
55
+ import apierror from '@plone/volto/reducers/apierror/apierror';
56
+ import aliases from '@plone/volto/reducers/aliases/aliases';
57
+ import breadcrumbs from '@plone/volto/reducers/breadcrumbs/breadcrumbs';
58
+ import browserdetect from '@plone/volto/reducers/browserdetect/browserdetect';
59
+ import comments from '@plone/volto/reducers/comments/comments';
60
+ import content from '@plone/volto/reducers/content/content';
61
+ import controlpanels from '@plone/volto/reducers/controlpanels/controlpanels';
62
+ import clipboard from '@plone/volto/reducers/clipboard/clipboard';
63
+ import diff from '@plone/volto/reducers/diff/diff';
64
+ import emailNotification from '@plone/volto/reducers/emailNotification/emailNotification';
65
+ import emailSend from '@plone/volto/reducers/emailSend/emailSend';
66
+ import form from '@plone/volto/reducers/form/form';
67
+ import groups from '@plone/volto/reducers/groups/groups';
68
+ import history from '@plone/volto/reducers/history/history';
69
+ import messages from '@plone/volto/reducers/messages/messages';
70
+ import navigation from '@plone/volto/reducers/navigation/navigation';
71
+ import querystring from '@plone/volto/reducers/querystring/querystring';
72
+ import querystringsearch from '@plone/volto/reducers/querystringsearch/querystringsearch';
73
+ import relations from '@plone/volto/reducers/relations/relations';
74
+ import roles from '@plone/volto/reducers/roles/roles';
75
+ import rules from '@plone/volto/reducers/rules/rules';
76
+ import controlpanelrule from '@plone/volto/reducers/controlPanelRule/controlPanelRule';
77
+ import controlpanelrules from '@plone/volto/reducers/controlPanelRules/controlPanelRules';
78
+ import contentrulesevents from '@plone/volto/reducers/contentRulesEvents/contentRulesEvents';
79
+ import schema from '@plone/volto/reducers/schema/schema';
80
+ import search from '@plone/volto/reducers/search/search';
81
+ import sharing from '@plone/volto/reducers/sharing/sharing';
82
+ import sidebar from '@plone/volto/reducers/sidebar/sidebar';
83
+ import types from '@plone/volto/reducers/types/types';
84
+ import users from '@plone/volto/reducers/users/users';
85
+ import authRole from '@plone/volto/reducers/authRole/authRole';
86
+ import userSession from '@plone/volto/reducers/userSession/userSession';
87
+ import vocabularies from '@plone/volto/reducers/vocabularies/vocabularies';
88
+ import workflow from '@plone/volto/reducers/workflow/workflow';
89
+ import toolbar from '@plone/volto/reducers/toolbar/toolbar';
90
+ import blocksClipboard from '@plone/volto/reducers/blocksClipboard/blocksClipboard';
91
+ import lazyLibraries from '@plone/volto/reducers/lazyLibraries/lazyLibraries';
92
+ import contextNavigation from '@plone/volto/reducers/contextNavigation/contextNavigation';
53
93
  import upgrade from './upgrade/upgrade';
54
94
  import workingCopy from './workingcopy/workingcopy';
55
95
  import transactions from './transactions/transactions';
@@ -1 +1,2 @@
1
1
  export default config;
2
+ import config from '@plone/registry';
package/types/routes.d.ts CHANGED
@@ -1,4 +1,6 @@
1
- export function getExternalRoutes(): any[];
1
+ export function getExternalRoutes(): {
2
+ component: (props: any) => import("react/jsx-runtime").JSX.Element;
3
+ }[];
2
4
  /**
3
5
  * Default routes array.
4
6
  * @array
@@ -13,7 +15,20 @@ export const multilingualRoutes: ({
13
15
  component: any;
14
16
  exact: boolean;
15
17
  })[];
16
- export const defaultRoutes: any[];
18
+ export const defaultRoutes: ({
19
+ path: string;
20
+ component: any;
21
+ exact?: undefined;
22
+ } | {
23
+ path: string;
24
+ component: any;
25
+ exact: boolean;
26
+ } | {
27
+ component: (props: any) => import("react/jsx-runtime").JSX.Element;
28
+ } | {
29
+ path: string[];
30
+ component: any;
31
+ })[];
17
32
  export default routes;
18
33
  /**
19
34
  * Routes array.
@@ -23,5 +38,18 @@ export default routes;
23
38
  declare const routes: {
24
39
  path: string;
25
40
  component: any;
26
- routes: any[];
41
+ routes: ({
42
+ path: string;
43
+ component: any;
44
+ exact?: undefined;
45
+ } | {
46
+ path: string;
47
+ component: any;
48
+ exact: boolean;
49
+ } | {
50
+ component: (props: any) => import("react/jsx-runtime").JSX.Element;
51
+ } | {
52
+ path: string[];
53
+ component: any;
54
+ })[];
27
55
  }[];
package/types/server.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export function defaultReadCriticalCss(): string;
1
+ export function defaultReadCriticalCss(): any;
2
2
  export default server;
3
3
  declare const server: any;
@@ -3,7 +3,7 @@
3
3
  * @class Wrapper
4
4
  * @extends Component
5
5
  */
6
- export default class Wrapper extends Component<any, any, any> {
6
+ export default class Wrapper extends React.Component<any, any, any> {
7
7
  /**
8
8
  * Property types.
9
9
  * @property {Object} propTypes Property types.
@@ -1049,9 +1049,9 @@ export default class Wrapper extends Component<any, any, any> {
1049
1049
  };
1050
1050
  lazyLibraries: {};
1051
1051
  };
1052
- render(): JSX.Element;
1052
+ render(): import("react/jsx-runtime").JSX.Element;
1053
1053
  }
1054
- export class RealStoreWrapper extends Component<any, any, any> {
1054
+ export class RealStoreWrapper extends React.Component<any, any, any> {
1055
1055
  /**
1056
1056
  * Property types.
1057
1057
  * @property {Object} propTypes Property types.
@@ -2097,11 +2097,11 @@ export class RealStoreWrapper extends Component<any, any, any> {
2097
2097
  };
2098
2098
  lazyLibraries: {};
2099
2099
  };
2100
- render(): JSX.Element;
2100
+ render(): import("react/jsx-runtime").JSX.Element;
2101
2101
  }
2102
2102
  export function FormUndoWrapper({ initialState, children, showControls, }: {
2103
2103
  initialState?: {};
2104
2104
  children: any;
2105
2105
  showControls?: boolean;
2106
- }): JSX.Element;
2107
- import { Component } from 'react';
2106
+ }): import("react/jsx-runtime").JSX.Element;
2107
+ import React from 'react';
@@ -7,7 +7,7 @@ const offline = process.env.OFFLINE_BUNDLE_ANALYZE === 'true' ? true : false;
7
7
 
8
8
  const defaultOptions = {
9
9
  concatenateModules: false,
10
- analyzerHost: '0.0.0.0',
10
+ analyzerHost: '127.0.0.1',
11
11
  analyzerMode: offline ? 'static' : 'server',
12
12
  generateStatsFile: true,
13
13
  statsFilename: 'stats.json',
@@ -140,6 +140,7 @@ module.exports = (userOptions = {}) => ({
140
140
  path.resolve('./theme'),
141
141
  path.resolve('./src'),
142
142
  /node_modules\/@plone\/volto\/theme/,
143
+ /packages\/volto\/theme/,
143
144
  /plone\.volto\/theme/,
144
145
  /node_modules\/semantic-ui-less/,
145
146
  ...Object.values(registry.getResolveAliases()),
@@ -1,13 +0,0 @@
1
- # Code of Conduct
2
-
3
- ## Anti-Harassment and Anti-Bullying Code of Conduct
4
-
5
- The Plone Foundation is dedicated to providing a respectful, harassment-free community for everyone. We do not tolerate harassment or bullying of any community member in any form. This does not only extend to members of the Plone Foundation, but to anyone who chooses to become involved in the larger Plone community of users, developers and integrators through events or interactions.
6
-
7
- Harassment includes offensive verbal/electronic comments related to personal characteristics or choices, sexual images or comments in public or online spaces, deliberate intimidation, bullying, stalking, following, harassing photography or recording, sustained disruption of talks, IRC chats, electronic meetings, physical meetings or other events, inappropriate physical contact, or unwelcome sexual attention. Participants asked to stop any harassing or bullying behavior are expected to comply immediately.
8
-
9
- If a participant engages in harassing behavior, representatives of the community may take reasonable action they deem appropriate, including warning the offender, expulsion from any Plone event, or expulsion from mailing lists, IRC chats, discussion boards and other electronic communications channels to resolve the issue. This may include expulsion from Plone Foundation membership.
10
-
11
- If you are being harassed, notice that someone else is being harassed, or have any other concerns, please act to intercede or ask for help from any member of the Plone Foundation, IRC chat admins, website admins, or organizers/representatives of any physical events put on under the auspices of the Plone Foundation.
12
-
13
- Source: https://plone.org/foundation/materials/foundation-resolutions/code-of-conduct (2019-09-29)
package/CONTRIBUTING.md DELETED
@@ -1,7 +0,0 @@
1
- # Contributing to Volto
2
-
3
- See the following documents.
4
-
5
- - [Contributing to Plone](https://6.docs.plone.org/contributing/index.html)
6
- - [Contributing to Volto](https://6.docs.plone.org/volto/contributing/index.html)
7
- - [First-time contributors](https://6.docs.plone.org/contributing/first-time.html)
package/README.md DELETED
@@ -1,154 +0,0 @@
1
- # Volto
2
-
3
- <img align="right" width="300" alt="Volto logo png" src="./logos/VoltoLogoEra2.png#gh-light-mode-only" />
4
- <img align="right" width="300" alt="Volto logo png" src="./logos/VoltoLogoEra2-dark-mode.png#gh-dark-mode-only" />
5
-
6
- [![NPM](https://img.shields.io/npm/v/@plone/volto.svg)](https://www.npmjs.com/package/@plone/volto)
7
- [![Unit Tests](https://github.com/plone/volto/actions/workflows/unit.yml/badge.svg)](https://github.com/plone/volto/actions/workflows/unit.yml)
8
- [![Acceptance Tests](https://github.com/plone/volto/actions/workflows/acceptance.yml/badge.svg)](https://github.com/plone/volto/actions/workflows/acceptance.yml)
9
- [![Build Status Docs](https://github.com/plone/volto/actions/workflows/docs.yml/badge.svg)](https://github.com/plone/volto/actions)
10
-
11
- ## Introduction
12
-
13
- [Volto](https://github.com/plone/volto) is a ReactJS-based frontend for the [Plone](https://plone.org) Content Management System. It is the default frontend starting with the Plone 6 release.
14
-
15
- [Plone](https://plone.org) is a CMS built on Python with more than 20 years of history and experience.
16
-
17
- Plone has features that appeal to developers and users alike, such as an intuitive editing interface, customizable content types, hierarchical organization, and a sophisticated permissions model.
18
- This allows you to build anything from simple websites to enterprise-grade intranets.
19
-
20
- Volto exposes all these features and communicates with Plone via its [REST API](https://github.com/plone/plone.restapi).
21
-
22
- Volto features the Pastanaga editor, a modern block-based content layout editor.
23
- It is extensible and customizable, so you can adapt the default blocks provided to match your requirements, or build new ones to cover them.
24
-
25
- Volto is extensible using add-ons.
26
- You can build your own or choose from the community released ones:
27
-
28
- - [Volto Add-ons in NPM](https://www.npmjs.com/search?q=keywords%3Avolto-addon%2Cvolto)
29
- - [Volto Awesome](https://github.com/collective/awesome-volto)
30
-
31
- ## Demo
32
-
33
- You can try a Volto online demo at [https://6.demo.plone.org/](https://6.demo.plone.org/)
34
-
35
- ## Create a Volto project
36
-
37
- To start a new project using Volto, follow the [Plone installation documentation](https://6.docs.plone.org/install/install-from-packages.html).
38
-
39
- ## Documentation
40
-
41
- You can find the latest documentation at [https://6.docs.plone.org/](https://6.docs.plone.org/volto/index.html).
42
-
43
- For links to trainings and videos, see [Other learning resources](https://6.docs.plone.org/volto/getting-started/others.html).
44
-
45
- ## Supported Node.js versions
46
-
47
- Volto runs using [Node.js](https://nodejs.org/).
48
- We recommend using the most recent LTS version that Volto supports.
49
-
50
- - Node.js 20 LTS: supported since Volto 17.
51
- - Node.js 18 LTS: supported since Volto 17.
52
- - Node.js 16: No longer supported. It was supported from Volto 14 - 16.
53
- - Node.js 14: No longer supported. It was supported from Volto 8.8.0 - 16.
54
- - Node.js 12: No longer supported. It was supported from Volto 4 - 15.
55
- - Node.js 10: No longer supported. It was supported from Volto 1 - 12.
56
-
57
- ## Supported Plone and Python versions
58
-
59
- Volto is the default UI for Plone 6.
60
- It will work for all released Plone 6 versions.
61
-
62
- For the Plone 5 series, the [latest released version of Plone 5](https://plone.org/download/releases) is recommended.
63
-
64
- The versions of Python that are supported in Volto depend on the version of Plone that you use.
65
-
66
- | Plone | Python | Volto |
67
- | ----- | ------------ | ------------ |
68
- | 6.0 | 3.8-3.11 | 16.0 or 17.0 |
69
- | 5.2 | 2.7, 3.6-3.8 | 15.0 |
70
-
71
- ## Supported browsers
72
-
73
- Volto works well with the current version of any modern browser, including their mobile flavors: Chrome, Firefox, Safari, and Edge.
74
-
75
- We do not guarantee that outdated browsers such as Internet Explorer 11 are supported by Volto.
76
-
77
- ## Known good set of versions for backend packages
78
-
79
- On Plone 6, we recommend using the known good set (KGS) of package versions that are specified in the Plone release.
80
-
81
- On Plone 5, Volto is currently tested with the following packages pinned to specific versions, and we recommend using the same versions, which are:
82
-
83
- - plone.restapi 8.32.6
84
- - plone.rest 2.0.0
85
- - plone.volto 4.0.3
86
-
87
- ## Volto in Production
88
-
89
- Volto is actively developed since 2017 and used in production since 2018 on the following websites:
90
-
91
- - [VHS Ehrenamtsportal](https://vhs-ehrenamtsportal.de) (Website to help volunteers that help refugees for the [German Adult Education Association](https://www.dvv-vhs.de/en/home/), developed by [kitconcept GmbH](https://kitconcept.com), 2018)
92
- - [Zeelandia](https://zeelandia.de) (Corporate website for one of the leading bakery ingredients manufacturers in Germany, developed by [kitconcept GmbH](https://kitconcept.com), 2019)
93
- - [Excellence at Humboldt-Universität zu Berlin](https://www.alles-beginnt-mit-einer-frage.de) (Website for the excellence initiative of the [Humboldt University Berlin](https://hu-berlin.de), developed by [kitconcept GmbH](https://kitconcept.com), 2019)
94
- - [Forest Information System for Europe](https://forest.eea.europa.eu) (Thematic website focusing on European forests, developed by [Eau de Web](https://www.eaudeweb.ro), 2019)
95
- - [Industrial Emissions portal for Europe](https://industry.eea.europa.eu) (Thematic website focusing on European industrial emissions, developed by [Eau de Web](https://www.eaudeweb.ro), 2020)
96
- - [Energy Climate Union portal for Europe](https://climate-energy.eea.europa.eu/) (Thematic website focusing on European strides towards mitigating climate change, developed by [Eau de Web](https://www.eaudeweb.ro), 2020)
97
- - [Talke Carrer Website](https://karriere.talke.com/) (Carrer website for [Talke](https://www.talke.com), one of the leading a chemical and petrochemical logistics companies in Germany, developed by [kitconcept GmbH](https://kitconcept.com), 2020)
98
- - [Stradanove](http://www.stradanove.it/) (Website of the Department of Youth Policies of the Municipality of Modena, developed by [RedTurtle](https://redturtle.it), 2020)
99
- - [VisitModena](https://www.visitmodena.it/) (Tourist website of the Municipality of Modena, developed by [RedTurtle](https://redturtle.it), 2020)
100
- - [Study guide at University of Jyväskylä](https://studyguide.jyu.fi/2020/) (Static website where [Volto is used as a headless CMS for authoring additional content](https://tech.blog.jyu.fi/2020/06/plone-volto-hasura-gatsbyjs-mashup/), 2020)
101
- - [Nuova Voce Ecologista](https://nuovavoceecologista.it) (Website of Nuova Voce Ecologista, an Italian green Party, 2020)
102
- - [BISE](https://biodiversity.europa.eu) (Biodiversity Information System for Europe, developed by [Eau de Web](https://www.eaudeweb.ro), 2019)
103
- - [MEDICE Webseite](https://medice.com/de-de) (Website for MEDICE Arzneimittel Pütter GmbH & Co. KG), developed by [Werkbank GmbH](https://werkbank.de/), 2020)
104
- - [Jobfamilie MEDICE](https://jobfamilie.medice.de/de) (Carrer website for MEDICE Arzneimittel Pütter GmbH & Co. KG), developed by [Werkbank GmbH](https://werkbank.de/), 2020)
105
- - [Baccanale Imola](https://www.baccanaleimola.it) (Baccanale is a food fair that happens every year in Imola, Italy. Developed by [RedTurtle](https://redturtle.it), 2020)
106
- - [ResOU](https://resou.osaka-u.ac.jp) (ResOU is introducing official researched releases by the University of Osaka, Japan. Developed by [CMScom](https://www.cmscom.jp), 2020)
107
- - [Humboldt Labor](https://www.humboldt-labor.de/) (The Humboldt Lab is a website where the Humboldt University Berlin presents its latest research projects and findings. Developed by [WLDX](https://wldx.de/) and [kitconcept GmbH](https://kitconcept.com), 2020)
108
- - [Osaka University](https://www.osaka-u.ac.jp/en) (Osaka University is considered one of the most prestigious universities in Japan. Developed by [CMScom](https://www.cmscom.jp), 2021)
109
- - [Comune di Modena](https://www.comune.modena.it/) (Website of the Municipality of Modena. Developed by [RedTurtle](https://redturtle.it), 2020)
110
- - [Comune di Camposanto](https://www.comune.camposanto.mo.it/) (Website of the Municipality of Camposanto. Developed by [RedTurtle](https://redturtle.it), 2021)
111
- - [Comune di Cantagallo](https://www.comune.cantagallo.po.it/) (Website of the Municipality of Cantagallo. Developed by [RedTurtle](https://redturtle.it), 2021)
112
- - [Comune di Vernio](https://www.comune.vernio.po.it/) (Website of the Municipality of Vernio. Developed by [RedTurtle](https://redturtle.it), 2021)
113
- - [Unione dei Comuni della Val Bisenzio](https://www.bisenzio.it/) (Website of the Municipality union of Val Bisenzio. Developed by [RedTurtle](https://redturtle.it), 2021)
114
- - [Comune di Vaiano](https://www.comune.vaiano.po.it/) (Website of the Municipality of Vaiano. Developed by [RedTurtle](https://redturtle.it), 2021)
115
- - [ASP Area Nord](https://www.aspareanord.it/) (Website of the Public company of personal services of the Modena municipalities in the north area. Developed by [RedTurtle](https://redturtle.it), 2021)
116
- - [Comune di San Possidonio](https://www.comune.sanpossidonio.mo.it/) (Website of the Municipality of San Possidonio. Developed by [RedTurtle](https://redturtle.it), 2021)
117
- - [Comune di Mirandola](https://comune.mirandola.mo.it/) (Website of the Municipality of Mirandola. Developed by [RedTurtle](https://redturtle.it), 2021)
118
- - [Comune di Medolla](http://www.comune.medolla.mo.it/) (Website of the Municipality of Medolla. Developed by [RedTurtle](https://redturtle.it), 2021)
119
- - [Camera di Commercio dell'Umbria](https://www.umbria.camcom.it) (Website Chamber of Commerce of Umbria. Developed by [RedTurtle](https://redturtle.it), 2021)
120
- - [Biblioteche Pianura Est](https://bibest.it) (Website of the Associated libraries of eastern plain. Developed by [RedTurtle](https://redturtle.it), 2021)
121
- - [Camera di Commercio di Reggio Emilia](https://www.re.camcom.gov.it/) (Website Chamber of Commerce of Reggio Emilia. Developed by [RedTurtle](https://redturtle.it), 2021)
122
- - [RawMaterial](https://rawmaterial.it/en) (Company's website. Developed by [RawMaterial](https://rawmaterial.it/en), 2021)
123
- - [WISE-Freshwater](https://water.europa.eu/freshwater) (WISE-Freshwater, the Freshwater Information System for Europe. Developed by [Eau de web](https://eaudeweb.ro) for the European Environmental Agency, 2021)
124
- - [EEA-IMSv4](https://www.eea.europa.eu/ims) (EEA Indicator Management System v4. Developed by [Eau de web](https://eaudeweb.ro) for the European Environmental Agency, 2021)
125
- - [Memori](https://memori.ai/en) (Corporate website for Memori, startup specializing in technologies applied to the experience of memory through the development of Artificial Intelligences. Developed by [RawMaterial](https://rawmaterial.it/en), 2021)
126
- - [TwinCreator](https://twincreator.com/en) (TwinCreator allows you to design and train multiple AI’s through simple conversation through NLP. Developed by [RawMaterial](https://rawmaterial.it/en), 2021)
127
- - [MemoryTwin](https://memorytwin.com/en) (Product website, MemoryTwin allows you to create your personal artificial intelligence, able to remember and speak. Developed by [RawMaterial](https://rawmaterial.it/en), 2022)
128
- - [Forschungszentrum Jülich](https://fz-juelich.de) (Website for Forschungzentrum Jülich, which is one of the largest research institutions in Europe, developed by [kitconcept GmbH](https://kitconcept.com), 2022)
129
- - [ILPO](https://ilpo.jyu.fi/) (the registration portal of continuous learning at the University of Jyväskylä. Developed by University of Jyväskylä, 2022)
130
- - [Debabarreneko mankomunitatea](https://debabarrena.eus) (Website of the Commonwealth of Debabarrena, community of municipalities to centralize waste handling services, developed by [CodeSyntax](https://www.codesyntax.com/en), 2022)
131
- - [Debako Udala / Ayuntamiento de Deba](https://www.deba.eus) (Website of the municipality of Deba, developed by [CodeSyntax](https://www.codesyntax.com/en), 2022)
132
- - [Helmholtz-Institut Erlangen-Nürnberg für Erneuerbare Energien (HI-ERN)](https://www.hi-ern.de) (Website for HI ERN, a research institution for renewable energies, developed by [kitconcept GmbH](https://kitconcept.com), 2022)
133
- - [Lanku](https://www.lanku.eus) (Website for Lanku Kultur Zerbitzuak, a company offering cultural services and improvised Basque verse singing sessions across the Basque Country, developed by [CodeSyntax](https://www.codesyntax.com/en), 2023)
134
- - [UEU](https://www.ueu.eus) (Website for Udako Euskal Unibertsitatea, a non-profit University offering all its service only in Basque: courses, publications, ... developed by [CodeSyntax](https://www.codesyntax.com/en), 2023)
135
- - [German Aerospace Center (DLR)](https://www.dlr.de/de) (The German Aerospace Center (DLR) is the Federal Republic of Germany's research center for aeronautics. With more than 10.000 employees and a yearly budget of more than 1 billion euros, it is one of the largest research institutions in Germany, developed by [kitconcept GmbH](https://kitconcept.com), 2023)
136
- - [Leibniz Institute for Science and Mathematics Education (IPN)](https://www.leibniz-ipn.de) (Website of the IPN, a research institute dedicated to issues related to learning and teaching of science, mathematics and computer science in and outside of schools, developed by [Starzel](https://www.starzel.de), 2023)
137
-
138
- Please create a new [issue](https://github.com/plone/volto/issues/new) or [pull request](https://github.com/plone/volto/pulls) to add your Volto-site here!
139
-
140
- ## Contributing to Volto
141
-
142
- To contribute to the Volto project by writing code, documentation, translations, and so on, please read [Contributing to Plone](https://6.docs.plone.org/contributing/index.html) and [Contributing to Volto](https://6.docs.plone.org/volto/contributing/index.html).
143
-
144
- ## Contributors
145
-
146
- <a href="https://github.com/plone/volto/graphs/contributors">
147
- <img src="https://contrib.rocks/image?repo=plone/volto" />
148
- </a>
149
-
150
- ## License
151
-
152
- MIT License. Copyrights held by the [Plone Foundation](https://plone.org/foundation).
153
-
154
- See [LICENSE.md](LICENSE.md) for details.
package/RELEASING.md DELETED
@@ -1,73 +0,0 @@
1
- # Releasing
2
-
3
- To ease the release process, we use the utility [`release-it`](https://www.npmjs.com/package/release-it) which helps with the process, and [`towncrier`](https://towncrier.readthedocs.io) for creating and maintaining change logs.
4
-
5
- ## Release requirements
6
-
7
- To start a release, you must fulfill the following requirements:
8
-
9
- - Have permission to push to `main` branch
10
- - Have permission on the [`@plone` organization on npm](https://www.npmjs.com/org/plone).
11
- - Have an environment variable `GITHUB_TOKEN` with a GitHub personal token with permissions to write to the [Volto Release page on GitHub](https://github.com/plone/volto/releases).
12
- - Install [`pipx`](https://pypa.github.io/pipx/) in your system.
13
-
14
- To request these permissions, on GitHub tag `@plone/release-team`, or in Discord post to the [`release-team` channel](https://discord.com/channels/786421998426521600/897549410521714760).
15
-
16
- ### Permission to push to `main` branch
17
-
18
- The release process involves pushing directly to the `main` branch.
19
- Volto's `main` branch is protected, so the releaser needs to have permission for pushing to it.
20
- At the moment of this writing, members of the GitHub group `@plone/volto-team` have permission to push to `main`.
21
-
22
- ### Permission to release Volto to npm registry
23
-
24
- We push Volto's releases to the npm registry.
25
- The releaser has to have permissions for pushing a release in the [`@plone` organization on npm](https://www.npmjs.com/org/plone).
26
- Only the current Owners of this organization can grant permissions to the releaser.
27
-
28
- ### Have a GitHub personal token with permissions to write the Volto's Releases
29
-
30
- The `release-it` library takes care of creating and pushing a GitHub Release for each release.
31
- It requires you to get a GitHub personal token with permission to write to the Volto's Releases.
32
- This can be acquired in your GitHub profile page.
33
- When making a release, export the environment variable `GITHUB_TOKEN` in your shell session.
34
-
35
- ```shell
36
- export GITHUB_TOKEN="my_looooong_github_token"
37
- ```
38
-
39
- See `release-it` documentation of [GitHub releases](https://www.npmjs.com/package/release-it#github-releases) and GitHub documentation [About releases](https://docs.github.com/en/repositories/releasing-projects-on-github/about-releases).
40
-
41
- ### Install `pipx` in your system
42
-
43
- The release process calls `towncrier`.
44
- It is a Python library that uses the Python utility `pipx`.
45
- This utility allows you to call and execute Python modules without installing them as a prerequisite in your system.
46
- It works similar to the NodeJS `npx` utility.
47
- On macOS, you can install `pipx` into your system:
48
-
49
- ```shell
50
- brew install pipx
51
- ```
52
-
53
- Or follow detailed instructions in the `pipx` documentation for [Installation](https://pypa.github.io/pipx/installation/).
54
-
55
- ## Running the release process
56
-
57
- These are the commands to make a Volto release:
58
-
59
- ```shell
60
- yarn release
61
- ```
62
-
63
- A dry-release command for testing the output is also available:
64
-
65
- ```shell
66
- yarn dry-release
67
- ```
68
-
69
- An alpha release can be cut using:
70
-
71
- ```shell
72
- yarn release-alpha
73
- ```
package/ROADMAP.md DELETED
@@ -1,30 +0,0 @@
1
- # Roadmap
2
-
3
- ## Volto 14 (Plone 6 alpha)
4
-
5
- - [x] Add locking support (requires plone.restapi 8.9.0 or 7.4.0) @avoinea
6
- - [x] Add search block @tiberiuichim @kreafox @sneridagh
7
- - [x] New seamless mode (see https://docs.voltocms.com/deploying/seamless-mode/ for details) @sneridagh
8
- - [x] New mobile navigation menu @sneridagh
9
- - [x] Add Plone logo @ericof @sneridagh
10
- - [x] Deprecate the old configuration system (see https://docs.voltocms.com/upgrade-guide/#volto-configuration-registry for details) @sneridagh
11
- - [x] New i18n infrastructure in the new @plone/scripts package @sneridagh
12
- - [x] Support Node 16 @tisto
13
-
14
- Check the Volto 14 upgrade guide for breaking changes: https://docs.voltocms.com/upgrade-guide/#upgrading-to-volto-14xx
15
-
16
- ## Volto 15 (Plone 6 beta)
17
-
18
- - [ ] Switch from DraftJS to Slate as default editor: https://github.com/plone/volto/issues/2167
19
-
20
- ## Volto 16+ (nice to have, no blockers)
21
-
22
- - [ ] Control Panel Overhaul: https://github.com/plone/volto/issues/29
23
- - [ ] Content Rules: https://github.com/plone/volto/issues/10
24
- - [ ] Form Builder: https://github.com/plone/volto/issues/739
25
- - [ ] Grid Block
26
- - [ ] Teaser Block
27
-
28
- ## Plone 6
29
-
30
- - Plone 6 final will ship with the current final Volto version that is around at that time
package/SECURITY.md DELETED
@@ -1,14 +0,0 @@
1
- # Security Policy
2
-
3
- ## Supported Versions
4
-
5
- Volto is currently under very active development. Therefore we only support the latest major version with security updates.
6
-
7
- | Version | Supported |
8
- | ------- | ------------------ |
9
- | 7.x.x | :white_check_mark: |
10
- | < 7.0 | :x: |
11
-
12
- ## Reporting a Vulnerability
13
-
14
- If you found a possible vulnerability please contact the Plone security team under security@plone.org.
package/logos/Logo.png DELETED
Binary file
Binary file
Binary file
Binary file
@@ -1,35 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="800" height="800" viewBox="0 0 800 800">
2
- <defs>
3
- <rect id="volto-colorful-a" width="800" height="800" x="0" y="0"/>
4
- </defs>
5
- <g fill="none" fill-rule="evenodd">
6
- <mask id="volto-colorful-b" fill="#fff">
7
- <use xlink:href="#volto-colorful-a"/>
8
- </mask>
9
- <use fill="#3E8BF2" xlink:href="#volto-colorful-a"/>
10
- <g mask="url(#volto-colorful-b)">
11
- <g transform="rotate(-45 16.965 806.894)">
12
- <polygon fill="#FFD472" points="853.75 0 982.5 0 982.5 1655 853.75 1655"/>
13
- <polygon fill="#8AC9DC" points="817.5 0 853.75 0 853.75 1655 817.5 1655" transform="matrix(-1 0 0 1 1671.25 0)"/>
14
- <polygon fill="#9BE68F" points="570 0 817.5 0 817.5 1655 570 1655"/>
15
- <polygon fill="#B4C7FF" points="496.25 0 575.657 0 575.657 1655 496.25 1655" transform="matrix(-1 0 0 1 1071.907 0)"/>
16
- <polygon fill="#FFB8EA" points="367.5 0 496.25 0 496.25 1655 367.5 1655"/>
17
- <polygon fill="#D967DF" points="350 0 367.5 0 367.5 1655 350 1655" transform="matrix(-1 0 0 1 717.5 0)"/>
18
- <polygon fill="#FFE3C7" points="221.25 0 350 0 350 1655 221.25 1655"/>
19
- <polygon fill="#437F93" points="203.75 0 221.25 0 221.25 1655 203.75 1655" transform="matrix(-1 0 0 1 425 0)"/>
20
- <polygon fill="#5AB7A5" points="167.5 0 203.75 0 203.75 1655 167.5 1655"/>
21
- <polygon fill="#437F93" points="93.75 0 167.5 0 167.5 1655 93.75 1655" transform="matrix(-1 0 0 1 261.25 0)"/>
22
- <polygon fill="#7B87EF" points="0 0 93.75 0 93.75 1655 0 1655"/>
23
- <polygon fill="#437F93" points="982.5 0 1056.25 0 1056.25 1655 982.5 1655" transform="matrix(-1 0 0 1 2038.75 0)"/>
24
- <polygon fill="#FFC9DB" points="1056.25 0 1185 0 1185 1655 1056.25 1655"/>
25
- </g>
26
- </g>
27
- <polygon fill="#FF5A5A" points="535.534 157.326 809.252 431.045 852.252 821.204 590.424 821.204 256.922 487.701 226.861 375.212 305.327 354.917 401.642 406.439 567.214 292.688" mask="url(#volto-colorful-b)"/>
28
- <polygon fill="#FFDB35" points="220.693 662.825 444.571 886.702 911.708 886.702 616.543 591.538 594.965 580.944 573.457 577.005 542.276 591.052 527.372 576.148 501.276 579.601 448.147 579.601 443.892 605.1 416.134 577.341 394.912 583.719 385.776 624.061 350.302 588.587 343.242 591.052 323.845 577.341 296.48 583.719 285.195 589.881 272.656 577.341 259.071 583.719 248.678 602.225 223.795 577.341 202.165 586.015" mask="url(#volto-colorful-b)"/>
29
- <polygon fill="#FF5A5A" points="489.694 163.412 641.94 315.658 526.913 499.565 440.431 400.419 460.215 315.658 489.694 331.488" mask="url(#volto-colorful-b)"/>
30
- <g fill="#062E3B" transform="translate(175 107)">
31
- <path d="M98.38,30.84 C98.2999996,31.240002 98.1200014,31.7799966 97.84,32.46 C97.5599986,33.1400034 97.3000012,33.48 97.06,33.48 C93.6199828,33.7200012 91.02,34.7999904 89.26,36.72 C87.4999912,38.6400096 85.7000092,41.5599804 83.86,45.48 L52.06,112.56 C51.8999992,112.800001 51.5400028,113.019999 50.98,113.22 C50.4199972,113.420001 49.5800056,113.52 48.46,113.52 C47.4199948,113.52 46.600003,113.420001 46,113.22 C45.399997,113.019999 45.02,112.800001 44.86,112.56 L16.18,45.48 C14.2599904,40.9999776 12.5400076,37.9800078 11.02,36.42 C9.4999924,34.8599922 6.8600188,33.880002 3.1,33.48 C2.8599988,33.3999996 2.6200012,33.0400032 2.38,32.4 C2.1399988,31.7599968 2.02,31.240002 2.02,30.84 C2.02,30.3599976 2.1399988,29.8000032 2.38,29.16 C2.6200012,28.5199968 2.8599988,28.2 3.1,28.2 C6.9400192,28.2 10.6799818,28.299999 14.32,28.5 C17.9600182,28.7 21.4199836,28.8 24.7,28.8 C28.3800184,28.8 32.2399798,28.7 36.28,28.5 C40.3200202,28.299999 44.2999804,28.2 48.22,28.2 C48.4600012,28.2 48.6599992,28.5399966 48.82,29.22 C48.9800008,29.9000034 49.06,30.439998 49.06,30.84 C49.06,31.240002 48.9800008,31.7799966 48.82,32.46 C48.6599992,33.1400034 48.4600012,33.48 48.22,33.48 C44.6999824,33.6400008 42.2200072,34.0799964 40.78,34.8 C39.3399928,35.5200036 38.5800004,36.7599912 38.5,38.52 C38.4199996,39.2400036 38.5599982,40.1599944 38.92,41.28 C39.2800018,42.4000056 39.5399992,43.159998 39.7,43.56 L57.46,85.56 L76.06,45 C76.3000012,44.4399972 76.5999982,43.5200064 76.96,42.24 C77.3200018,40.9599936 77.5,39.9600036 77.5,39.24 C77.4199996,37.3999908 76.980004,36.0400044 76.18,35.16 C75.379996,34.2799956 72.7400224,33.7200012 68.26,33.48 C68.02,33.3999996 67.8400006,33.0400032 67.72,32.4 C67.5999994,31.7599968 67.54,31.240002 67.54,30.84 C67.4599996,30.2799972 67.52,29.7 67.72,29.1 C67.920001,28.499997 68.1399988,28.2 68.38,28.2 C71.8200172,28.2 74.4199912,28.299999 76.18,28.5 C77.9400088,28.7 80.4599836,28.8 83.74,28.8 C86.3800132,28.8 88.6199908,28.7 90.46,28.5 C92.3000092,28.299999 94.619986,28.2 97.42,28.2 C97.6600012,28.2 97.879999,28.5199968 98.08,29.16 C98.280001,29.8000032 98.38,30.3599976 98.38,30.84 Z M187.82,70.32 C187.82,82.32006 183.720041,92.519958 175.52,100.92 C167.319959,109.320042 155.740075,113.52 140.78,113.52 C125.819925,113.52 114.220041,109.300042 105.98,100.86 C97.7399588,92.4199578 93.62,82.2400596 93.62,70.32 C93.62,58.3999404 97.7399588,48.0800436 105.98,39.36 C114.220041,30.6399564 125.819925,26.28 140.78,26.28 C155.420073,26.28 166.919958,30.579957 175.28,39.18 C183.640042,47.780043 187.82,58.1599392 187.82,70.32 Z M163.1,70.32 C163.1,59.2799448 161.500016,50.1400362 158.3,42.9 C155.099984,35.6599638 149.260042,32.04 140.78,32.04 C132.219957,32.04 126.360016,35.6999634 123.2,43.02 C120.039984,50.3400366 118.46,59.4399456 118.46,70.32 C118.46,81.4400556 120.039984,90.4599654 123.2,97.38 C126.360016,104.300035 132.219957,107.76 140.78,107.76 C149.260042,107.76 155.099984,104.280035 158.3,97.32 C161.500016,90.3599652 163.1,81.3600552 163.1,70.32 Z M271.98,80.64 C271.419997,85.1200224 270.880003,90.5999676 270.36,97.08 C269.839997,103.560032 269.500001,108.399984 269.34,111.6 C264.299975,111.439999 258.020038,111.300001 250.5,111.18 C242.979962,111.059999 236.860024,111 232.14,111 C227.019974,111 220.42004,111.079999 212.34,111.24 C204.25996,111.400001 198.22002,111.52 194.22,111.6 C193.979999,111.6 193.76,111.300003 193.56,110.7 C193.359999,110.099997 193.26,109.520003 193.26,108.96 C193.26,108.559998 193.359999,108.040003 193.56,107.4 C193.76,106.759997 193.979999,106.4 194.22,106.32 C198.860023,105.759997 201.919993,104.760007 203.4,103.32 C204.880007,101.879993 205.62,99.5200164 205.62,96.24 L205.62,43.56 C205.62,40.2799836 204.880007,37.9200072 203.4,36.48 C201.919993,35.0399928 198.860023,34.0400028 194.22,33.48 C193.979999,33.3999996 193.76,33.0400032 193.56,32.4 C193.359999,31.7599968 193.26,31.240002 193.26,30.84 C193.26,30.2799972 193.359999,29.7 193.56,29.1 C193.76,28.499997 193.979999,28.2 194.22,28.2 C198.060019,28.2 201.99998,28.299999 206.04,28.5 C210.08002,28.7 213.899982,28.8 217.5,28.8 C221.180018,28.8 225.01998,28.7 229.02,28.5 C233.02002,28.299999 236.97998,28.2 240.9,28.2 C241.140001,28.2 241.359999,28.5199968 241.56,29.16 C241.76,29.8000032 241.86,30.3599976 241.86,30.84 C241.86,31.240002 241.76,31.7799966 241.56,32.46 C241.359999,33.1400034 241.140001,33.48 240.9,33.48 C236.259977,33.9600024 233.180008,34.9599924 231.66,36.48 C230.139992,38.0000076 229.38,40.359984 229.38,43.56 L229.38,98.04 C229.38,100.920014 230.159992,102.819995 231.72,103.74 C233.280008,104.660005 234.859992,105.12 236.46,105.12 L243.3,105.12 C248.900028,105.12 253.879978,102.480026 258.24,97.2 C262.600022,91.9199736 265.379994,86.0000328 266.58,79.44 C266.58,79.2799992 266.719999,79.1600004 267,79.08 C267.280001,78.9999996 267.699997,78.96 268.26,78.96 C269.140004,78.96 269.999996,79.1199984 270.84,79.44 C271.680004,79.7600016 272.06,80.1599976 271.98,80.64 Z M354.7,56.28 C354.7,56.680002 354.400003,57.0399984 353.8,57.36 C353.199997,57.6800016 352.500004,57.84 351.7,57.84 C351.379998,57.84 350.940003,57.7800006 350.38,57.66 C349.819997,57.5399994 349.5,57.4000008 349.42,57.24 C348.3,52.839978 345.640021,47.9800266 341.44,42.66 C337.239979,37.3399734 333.300018,34.68 329.62,34.68 L327.82,34.68 C325.979991,34.68 324.660004,35.0599962 323.86,35.82 C323.059996,36.5800038 322.66,37.759992 322.66,39.36 L322.66,96.24 C322.66,99.440016 323.419992,101.799992 324.94,103.32 C326.460008,104.840008 329.539977,105.839998 334.18,106.32 C334.420001,106.32 334.639999,106.659997 334.84,107.34 C335.040001,108.020003 335.14,108.559998 335.14,108.96 C335.14,109.440002 335.040001,109.999997 334.84,110.64 C334.639999,111.280003 334.420001,111.6 334.18,111.6 C330.339981,111.6 326.40002,111.500001 322.36,111.3 C318.31998,111.099999 314.500018,111 310.9,111 C307.219982,111 303.38002,111.099999 299.38,111.3 C295.37998,111.500001 291.42002,111.6 287.5,111.6 C287.259999,111.6 287.040001,111.280003 286.84,110.64 C286.639999,109.999997 286.54,109.440002 286.54,108.96 C286.54,108.559998 286.639999,108.040003 286.84,107.4 C287.040001,106.759997 287.259999,106.4 287.5,106.32 C292.220024,105.759997 295.319993,104.760007 296.8,103.32 C298.280007,101.879993 299.02,99.5200164 299.02,96.24 L299.02,39.36 C299.02,37.5999912 298.660004,36.3800034 297.94,35.7 C297.219996,35.0199966 295.86001,34.68 293.86,34.68 L292.9,34.68 C289.619984,34.68 285.580024,37.1399754 280.78,42.06 C275.979976,46.9800246 272.58001,52.039974 270.58,57.24 C270.5,57.4800012 270.200003,57.6399996 269.68,57.72 C269.159997,57.8000004 268.740002,57.84 268.42,57.84 C267.699996,57.84 267.000003,57.6800016 266.32,57.36 C265.639997,57.0399984 265.3,56.680002 265.3,56.28 C266.100004,52.27998 266.959995,47.380029 267.88,41.58 C268.8,35.779971 269.459998,30.9600192 269.86,27.12 C272.660014,27.6000024 277.01997,27.9999984 282.94,28.32 C288.86003,28.6400016 298.179936,28.8 310.9,28.8 C321.780054,28.8 330.839964,28.6400016 338.08,28.32 C345.320036,27.9999984 350.099988,27.6000024 352.42,27.12 C352.660001,30.9600192 352.979998,35.5199736 353.38,40.8 C353.780002,46.0800264 354.219998,51.2399748 354.7,56.28 Z M450.74,70.32 C450.74,82.32006 446.640041,92.519958 438.44,100.92 C430.239959,109.320042 418.660075,113.52 403.7,113.52 C388.739925,113.52 377.140041,109.300042 368.9,100.86 C360.659959,92.4199578 356.54,82.2400596 356.54,70.32 C356.54,58.3999404 360.659959,48.0800436 368.9,39.36 C377.140041,30.6399564 388.739925,26.28 403.7,26.28 C418.340073,26.28 429.839958,30.579957 438.2,39.18 C446.560042,47.780043 450.74,58.1599392 450.74,70.32 Z M426.02,70.32 C426.02,59.2799448 424.420016,50.1400362 421.22,42.9 C418.019984,35.6599638 412.180042,32.04 403.7,32.04 C395.139957,32.04 389.280016,35.6999634 386.12,43.02 C382.959984,50.3400366 381.38,59.4399456 381.38,70.32 C381.38,81.4400556 382.959984,90.4599654 386.12,97.38 C389.280016,104.300035 395.139957,107.76 403.7,107.76 C412.180042,107.76 418.019984,104.280035 421.22,97.32 C424.420016,90.3599652 426.02,81.3600552 426.02,70.32 Z" transform="translate(0 442)"/>
32
- <path d="M356.581739,179.442 C363.415739,160.722 367.144739,140.507 367.144739,119.422 C367.144739,96.3429999 362.677739,74.3079999 354.559739,54.1329999 C353.090739,50.4829999 357.774739,47.5309999 360.450739,50.4149999 C389.428739,81.6409999 407.144739,123.463 407.144739,169.422 C407.144739,191.713 402.977739,213.032 395.378739,232.639 C401.966739,228.523 408.160739,221.516 413.959739,211.618 C414.921739,209.974 417.441739,210.772 417.258739,212.668 C411.835739,268.823 403.414739,309.219 391.997739,333.857 C390.696739,336.664 393.119739,331.137 391.997739,333.857 C374.959739,375.124 337.289739,414.002 291.729739,414.002 C271.586739,414.002 252.832739,408.046 237.136739,397.797 C227.782739,391.691 215.678739,391.691 206.324739,397.797 C190.627739,408.046 171.874739,414.002 151.730739,414.002 C110.723739,414.002 70.7697387,376.529 52.7937387,335.024 C52.1437387,333.521 53.5017387,336.552 52.7937387,335.024 C41.2827387,310.183 34.3527387,275.462 32,230.859 C31.9137387,229.168 34.0157387,228.302 35.1257387,229.58 C46.7747387,242.986 62.2297387,244.11 81.4907387,232.952 C99.1027387,222.748 116.946739,216.895 135.021739,215.391 C140.455739,214.477 146.037739,214.002 151.730739,214.002 C170.511739,214.002 188.082739,219.179 203.096739,228.184 C209.275739,231.891 217.294739,230.426 221.636739,224.675 C243.752739,195.372 256.867739,158.892 256.867739,119.35 C256.867739,78.6299999 242.959739,41.1589999 219.636739,11.4269999 C215.430739,6.06599994 220.542739,-1.49800006 227.125739,0.258999936 C301.837739,20.2059999 356.867739,88.3509999 356.867739,169.35 C356.867739,172.738 356.770739,176.102 356.581739,179.442 M247.729739,344.731 C268.782739,274.206 307.991739,261.311 365.358739,306.046 C347.380739,348.621 308.170739,361.516 247.729739,344.731 M195.358739,344.731 C174.306739,274.206 135.096739,261.311 77.7307387,306.046 C95.7087387,348.621 134.918739,361.516 195.358739,344.731"/>
33
- </g>
34
- </g>
35
- </svg>
Binary file
@@ -1,6 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="701" height="207" viewBox="0 0 701 207">
2
- <g fill="#062E3B" fill-rule="evenodd">
3
- <path d="M96.38,4.84 C96.2999996,5.240002 96.1200014,5.7799966 95.84,6.46 C95.5599986,7.1400034 95.3000012,7.48 95.06,7.48 C91.6199828,7.7200012 89.0200088,8.7999904 87.26,10.72 C85.4999912,12.6400096 83.7000092,15.5599804 81.86,19.48 L50.06,86.56 C49.8999992,86.8000012 49.5400028,87.019999 48.98,87.22 C48.4199972,87.420001 47.5800056,87.52 46.46,87.52 C45.4199948,87.52 44.600003,87.420001 44,87.22 C43.399997,87.019999 43.0200008,86.8000012 42.86,86.56 L14.18,19.48 C12.2599904,14.9999776 10.5400076,11.9800078 9.02,10.42 C7.4999924,8.8599922 4.8600188,7.880002 1.1,7.48 C0.8599988,7.3999996 0.6200012,7.0400032 0.38,6.4 C0.1399988,5.7599968 0.02,5.240002 0.02,4.84 C0.02,4.3599976 0.1399988,3.8000032 0.38,3.16 C0.6200012,2.5199968 0.8599988,2.2 1.1,2.2 C4.9400192,2.2 8.6799818,2.299999 12.32,2.5 C15.9600182,2.700001 19.4199836,2.8 22.7,2.8 C26.3800184,2.8 30.2399798,2.700001 34.28,2.5 C38.3200202,2.299999 42.2999804,2.2 46.22,2.2 C46.4600012,2.2 46.6599992,2.5399966 46.82,3.22 C46.9800008,3.9000034 47.06,4.439998 47.06,4.84 C47.06,5.240002 46.9800008,5.7799966 46.82,6.46 C46.6599992,7.1400034 46.4600012,7.48 46.22,7.48 C42.6999824,7.6400008 40.2200072,8.0799964 38.78,8.8 C37.3399928,9.5200036 36.5800004,10.7599912 36.5,12.52 C36.4199996,13.2400036 36.5599982,14.1599944 36.92,15.28 C37.2800018,16.4000056 37.5399992,17.159998 37.7,17.56 L55.46,59.56 L74.06,19 C74.3000012,18.4399972 74.5999982,17.5200064 74.96,16.24 C75.3200018,14.9599936 75.5,13.9600036 75.5,13.24 C75.4199996,11.3999908 74.980004,10.0400044 74.18,9.16 C73.379996,8.2799956 70.7400224,7.7200012 66.26,7.48 C66.0199988,7.3999996 65.8400006,7.0400032 65.72,6.4 C65.5999994,5.7599968 65.54,5.240002 65.54,4.84 C65.4599996,4.2799972 65.519999,3.700003 65.72,3.1 C65.920001,2.499997 66.1399988,2.2 66.38,2.2 C69.8200172,2.2 72.4199912,2.299999 74.18,2.5 C75.9400088,2.700001 78.4599836,2.8 81.74,2.8 C84.3800132,2.8 86.6199908,2.700001 88.46,2.5 C90.3000092,2.299999 92.619986,2.2 95.42,2.2 C95.6600012,2.2 95.879999,2.5199968 96.08,3.16 C96.280001,3.8000032 96.38,4.3599976 96.38,4.84 Z M185.82,44.32 C185.82,56.32006 181.720041,66.519958 173.52,74.92 C165.319959,83.320042 153.740075,87.52 138.78,87.52 C123.819925,87.52 112.220041,83.3000422 103.98,74.86 C95.7399588,66.4199578 91.62,56.2400596 91.62,44.32 C91.62,32.3999404 95.7399588,22.0800436 103.98,13.36 C112.220041,4.6399564 123.819925,0.28 138.78,0.28 C153.420073,0.28 164.919958,4.579957 173.28,13.18 C181.640042,21.780043 185.82,32.1599392 185.82,44.32 Z M161.1,44.32 C161.1,33.2799448 159.500016,24.1400362 156.3,16.9 C153.099984,9.6599638 147.260042,6.04 138.78,6.04 C130.219957,6.04 124.360016,9.6999634 121.2,17.02 C118.039984,24.3400366 116.46,33.4399456 116.46,44.32 C116.46,55.4400556 118.039984,64.4599654 121.2,71.38 C124.360016,78.3000346 130.219957,81.76 138.78,81.76 C147.260042,81.76 153.099984,78.2800348 156.3,71.32 C159.500016,64.3599652 161.1,55.3600552 161.1,44.32 Z M269.98,54.64 C269.419997,59.1200224 268.880003,64.5999676 268.36,71.08 C267.839997,77.5600324 267.500001,82.399984 267.34,85.6 C262.299975,85.4399992 256.020038,85.3000006 248.5,85.18 C240.979962,85.0599994 234.860024,85 230.14,85 C225.019974,85 218.42004,85.0799992 210.34,85.24 C202.25996,85.4000008 196.22002,85.5199996 192.22,85.6 C191.979999,85.6 191.760001,85.300003 191.56,84.7 C191.359999,84.099997 191.26,83.5200028 191.26,82.96 C191.26,82.559998 191.359999,82.0400032 191.56,81.4 C191.760001,80.7599968 191.979999,80.4000004 192.22,80.32 C196.860023,79.7599972 199.919993,78.7600072 201.4,77.32 C202.880007,75.8799928 203.62,73.5200164 203.62,70.24 L203.62,17.56 C203.62,14.2799836 202.880007,11.9200072 201.4,10.48 C199.919993,9.0399928 196.860023,8.0400028 192.22,7.48 C191.979999,7.3999996 191.760001,7.0400032 191.56,6.4 C191.359999,5.7599968 191.26,5.240002 191.26,4.84 C191.26,4.2799972 191.359999,3.700003 191.56,3.1 C191.760001,2.499997 191.979999,2.2 192.22,2.2 C196.060019,2.2 199.99998,2.299999 204.04,2.5 C208.08002,2.700001 211.899982,2.8 215.5,2.8 C219.180018,2.8 223.01998,2.700001 227.02,2.5 C231.02002,2.299999 234.97998,2.2 238.9,2.2 C239.140001,2.2 239.359999,2.5199968 239.56,3.16 C239.760001,3.8000032 239.86,4.3599976 239.86,4.84 C239.86,5.240002 239.760001,5.7799966 239.56,6.46 C239.359999,7.1400034 239.140001,7.48 238.9,7.48 C234.259977,7.9600024 231.180008,8.9599924 229.66,10.48 C228.139992,12.0000076 227.38,14.359984 227.38,17.56 L227.38,72.04 C227.38,74.9200144 228.159992,76.8199954 229.72,77.74 C231.280008,78.6600046 232.859992,79.12 234.46,79.12 L241.3,79.12 C246.900028,79.12 251.879978,76.4800264 256.24,71.2 C260.600022,65.9199736 263.379994,60.0000328 264.58,53.44 C264.58,53.2799992 264.719999,53.1600004 265,53.08 C265.280001,52.9999996 265.699997,52.96 266.26,52.96 C267.140004,52.96 267.999996,53.1199984 268.84,53.44 C269.680004,53.7600016 270.06,54.1599976 269.98,54.64 Z M352.7,30.28 C352.7,30.680002 352.400003,31.0399984 351.8,31.36 C351.199997,31.6800016 350.500004,31.84 349.7,31.84 C349.379998,31.84 348.940003,31.7800006 348.38,31.66 C347.819997,31.5399994 347.5,31.4000008 347.42,31.24 C346.299994,26.839978 343.640021,21.9800266 339.44,16.66 C335.239979,11.3399734 331.300018,8.68 327.62,8.68 L325.82,8.68 C323.979991,8.68 322.660004,9.0599962 321.86,9.82 C321.059996,10.5800038 320.66,11.759992 320.66,13.36 L320.66,70.24 C320.66,73.440016 321.419992,75.7999924 322.94,77.32 C324.460008,78.8400076 327.539977,79.8399976 332.18,80.32 C332.420001,80.32 332.639999,80.6599966 332.84,81.34 C333.040001,82.0200034 333.14,82.559998 333.14,82.96 C333.14,83.4400024 333.040001,83.9999968 332.84,84.64 C332.639999,85.2800032 332.420001,85.6 332.18,85.6 C328.339981,85.6 324.40002,85.500001 320.36,85.3 C316.31998,85.099999 312.500018,85 308.9,85 C305.219982,85 301.38002,85.099999 297.38,85.3 C293.37998,85.500001 289.42002,85.6 285.5,85.6 C285.259999,85.6 285.040001,85.2800032 284.84,84.64 C284.639999,83.9999968 284.54,83.4400024 284.54,82.96 C284.54,82.559998 284.639999,82.0400032 284.84,81.4 C285.040001,80.7599968 285.259999,80.4000004 285.5,80.32 C290.220024,79.7599972 293.319993,78.7600072 294.8,77.32 C296.280007,75.8799928 297.02,73.5200164 297.02,70.24 L297.02,13.36 C297.02,11.5999912 296.660004,10.3800034 295.94,9.7 C295.219996,9.0199966 293.86001,8.68 291.86,8.68 L290.9,8.68 C287.619984,8.68 283.580024,11.1399754 278.78,16.06 C273.979976,20.9800246 270.58001,26.039974 268.58,31.24 C268.5,31.4800012 268.200003,31.6399996 267.68,31.72 C267.159997,31.8000004 266.740002,31.84 266.42,31.84 C265.699996,31.84 265.000003,31.6800016 264.32,31.36 C263.639997,31.0399984 263.3,30.680002 263.3,30.28 C264.100004,26.27998 264.959995,21.380029 265.88,15.58 C266.800005,9.779971 267.459998,4.9600192 267.86,1.12 C270.660014,1.6000024 275.01997,1.9999984 280.94,2.32 C286.86003,2.6400016 296.179936,2.8 308.9,2.8 C319.780054,2.8 328.839964,2.6400016 336.08,2.32 C343.320036,1.9999984 348.099988,1.6000024 350.42,1.12 C350.660001,4.9600192 350.979998,9.5199736 351.38,14.8 C351.780002,20.0800264 352.219998,25.2399748 352.7,30.28 Z M448.74,44.32 C448.74,56.32006 444.640041,66.519958 436.44,74.92 C428.239959,83.320042 416.660075,87.52 401.7,87.52 C386.739925,87.52 375.140041,83.3000422 366.9,74.86 C358.659959,66.4199578 354.54,56.2400596 354.54,44.32 C354.54,32.3999404 358.659959,22.0800436 366.9,13.36 C375.140041,4.6399564 386.739925,0.28 401.7,0.28 C416.340073,0.28 427.839958,4.579957 436.2,13.18 C444.560042,21.780043 448.74,32.1599392 448.74,44.32 Z M424.02,44.32 C424.02,33.2799448 422.420016,24.1400362 419.22,16.9 C416.019984,9.6599638 410.180042,6.04 401.7,6.04 C393.139957,6.04 387.280016,9.6999634 384.12,17.02 C380.959984,24.3400366 379.38,33.4399456 379.38,44.32 C379.38,55.4400556 380.959984,64.4599654 384.12,71.38 C387.280016,78.3000346 393.139957,81.76 401.7,81.76 C410.180042,81.76 416.019984,78.2800348 419.22,71.32 C422.420016,64.3599652 424.02,55.3600552 424.02,44.32 Z" transform="translate(252 106)"/>
4
- <path d="M162.599132,89.7205665 C166.022623,80.3606118 167.890664,70.2531606 167.890664,59.7107115 C167.890664,48.1712673 165.652922,37.1538205 161.586212,27.0663692 C160.850317,25.241378 163.196765,23.7653852 164.537307,25.2073782 C179.053828,40.8203028 187.928653,61.7312018 187.928653,84.7105908 C187.928653,95.8560369 185.841196,106.515485 182.034479,116.318938 C185.334736,114.260948 188.437618,110.757465 191.342626,105.808489 C191.824539,104.986493 193.086933,105.385491 192.995259,106.333486 C190.278608,134.410851 186.060111,154.608753 180.340768,166.927694 C179.689032,168.331187 180.902833,165.5677 180.340768,166.927694 C171.805586,187.561094 152.93481,207 130.111541,207 C120.020911,207 110.626099,204.022014 102.763193,198.897539 C98.0773089,195.844554 92.0138134,195.844554 87.3279297,198.897539 C79.4645219,204.022014 70.0702117,207 59.9790805,207 C39.4366352,207 19.4216899,188.263591 10.4166177,167.511191 C10.0910003,166.759694 10.7712901,168.275187 10.4166177,167.511191 C4.65018539,155.090751 1.17860381,137.730335 0.00137195565,115.428942 C-0.0432125698,114.583446 1.00978375,114.150449 1.56583794,114.789445 C7.40140128,121.492413 15.1435793,122.05441 24.7923719,116.475437 C33.6150984,111.373462 42.5540453,108.446976 51.6087116,107.69498 C54.3308724,107.237982 57.1271737,107.000483 59.9790805,107.000483 C69.3874173,107.000483 78.1896049,109.588971 85.710864,114.091449 C88.8062324,115.94494 92.8233482,115.212443 94.9984719,112.336957 C106.077476,97.6855281 112.647432,79.4456162 112.647432,59.6747117 C112.647432,39.31481 105.680223,20.5794006 93.9965724,5.71347237 C91.8895779,3.03298532 94.4504329,-0.748996414 97.7481849,0.129499343 C135.175141,10.1029512 162.742404,44.1752866 162.742404,84.6745909 C162.742404,86.3685827 162.693812,88.0505746 162.599132,89.7205665 M108.069753,172.364667 C118.616248,137.102338 138.257985,130.654869 166.995968,153.022261 C157.989894,174.309658 138.347655,180.757127 108.069753,172.364667 M81.8345151,172.364667 C71.2885215,137.102338 51.6462828,130.654869 22.9088009,153.022261 C31.9148751,174.309658 51.5571137,180.757127 81.8345151,172.364667"/>
5
- </g>
6
- </svg>
Binary file
@@ -1,19 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="800px" height="800px" viewBox="0 0 800 800" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
4
- <title>Artboard</title>
5
- <desc>Created with Sketch.</desc>
6
- <defs></defs>
7
- <g id="Artboard" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
8
- <g id="Group" transform="translate(175.000000, 107.000000)" fill="#062E3B">
9
- <g id="Group-9">
10
- <g id="Group-4" transform="translate(0.000000, 442.000000)">
11
- <g id="Group-3">
12
- <path d="M98.38,30.84 C98.2999996,31.240002 98.1200014,31.7799966 97.84,32.46 C97.5599986,33.1400034 97.3000012,33.48 97.06,33.48 C93.6199828,33.7200012 91.0200088,34.7999904 89.26,36.72 C87.4999912,38.6400096 85.7000092,41.5599804 83.86,45.48 L52.06,112.56 C51.8999992,112.800001 51.5400028,113.019999 50.98,113.22 C50.4199972,113.420001 49.5800056,113.52 48.46,113.52 C47.4199948,113.52 46.600003,113.420001 46,113.22 C45.399997,113.019999 45.0200008,112.800001 44.86,112.56 L16.18,45.48 C14.2599904,40.9999776 12.5400076,37.9800078 11.02,36.42 C9.4999924,34.8599922 6.8600188,33.880002 3.1,33.48 C2.8599988,33.3999996 2.6200012,33.0400032 2.38,32.4 C2.1399988,31.7599968 2.02,31.240002 2.02,30.84 C2.02,30.3599976 2.1399988,29.8000032 2.38,29.16 C2.6200012,28.5199968 2.8599988,28.2 3.1,28.2 C6.9400192,28.2 10.6799818,28.299999 14.32,28.5 C17.9600182,28.700001 21.4199836,28.8 24.7,28.8 C28.3800184,28.8 32.2399798,28.700001 36.28,28.5 C40.3200202,28.299999 44.2999804,28.2 48.22,28.2 C48.4600012,28.2 48.6599992,28.5399966 48.82,29.22 C48.9800008,29.9000034 49.06,30.439998 49.06,30.84 C49.06,31.240002 48.9800008,31.7799966 48.82,32.46 C48.6599992,33.1400034 48.4600012,33.48 48.22,33.48 C44.6999824,33.6400008 42.2200072,34.0799964 40.78,34.8 C39.3399928,35.5200036 38.5800004,36.7599912 38.5,38.52 C38.4199996,39.2400036 38.5599982,40.1599944 38.92,41.28 C39.2800018,42.4000056 39.5399992,43.159998 39.7,43.56 L57.46,85.56 L76.06,45 C76.3000012,44.4399972 76.5999982,43.5200064 76.96,42.24 C77.3200018,40.9599936 77.5,39.9600036 77.5,39.24 C77.4199996,37.3999908 76.980004,36.0400044 76.18,35.16 C75.379996,34.2799956 72.7400224,33.7200012 68.26,33.48 C68.0199988,33.3999996 67.8400006,33.0400032 67.72,32.4 C67.5999994,31.7599968 67.54,31.240002 67.54,30.84 C67.4599996,30.2799972 67.519999,29.700003 67.72,29.1 C67.920001,28.499997 68.1399988,28.2 68.38,28.2 C71.8200172,28.2 74.4199912,28.299999 76.18,28.5 C77.9400088,28.700001 80.4599836,28.8 83.74,28.8 C86.3800132,28.8 88.6199908,28.700001 90.46,28.5 C92.3000092,28.299999 94.619986,28.2 97.42,28.2 C97.6600012,28.2 97.879999,28.5199968 98.08,29.16 C98.280001,29.8000032 98.38,30.3599976 98.38,30.84 Z M187.82,70.32 C187.82,82.32006 183.720041,92.519958 175.52,100.92 C167.319959,109.320042 155.740075,113.52 140.78,113.52 C125.819925,113.52 114.220041,109.300042 105.98,100.86 C97.7399588,92.4199578 93.62,82.2400596 93.62,70.32 C93.62,58.3999404 97.7399588,48.0800436 105.98,39.36 C114.220041,30.6399564 125.819925,26.28 140.78,26.28 C155.420073,26.28 166.919958,30.579957 175.28,39.18 C183.640042,47.780043 187.82,58.1599392 187.82,70.32 Z M163.1,70.32 C163.1,59.2799448 161.500016,50.1400362 158.3,42.9 C155.099984,35.6599638 149.260042,32.04 140.78,32.04 C132.219957,32.04 126.360016,35.6999634 123.2,43.02 C120.039984,50.3400366 118.46,59.4399456 118.46,70.32 C118.46,81.4400556 120.039984,90.4599654 123.2,97.38 C126.360016,104.300035 132.219957,107.76 140.78,107.76 C149.260042,107.76 155.099984,104.280035 158.3,97.32 C161.500016,90.3599652 163.1,81.3600552 163.1,70.32 Z M271.98,80.64 C271.419997,85.1200224 270.880003,90.5999676 270.36,97.08 C269.839997,103.560032 269.500001,108.399984 269.34,111.6 C264.299975,111.439999 258.020038,111.300001 250.5,111.18 C242.979962,111.059999 236.860024,111 232.14,111 C227.019974,111 220.42004,111.079999 212.34,111.24 C204.25996,111.400001 198.22002,111.52 194.22,111.6 C193.979999,111.6 193.760001,111.300003 193.56,110.7 C193.359999,110.099997 193.26,109.520003 193.26,108.96 C193.26,108.559998 193.359999,108.040003 193.56,107.4 C193.760001,106.759997 193.979999,106.4 194.22,106.32 C198.860023,105.759997 201.919993,104.760007 203.4,103.32 C204.880007,101.879993 205.62,99.5200164 205.62,96.24 L205.62,43.56 C205.62,40.2799836 204.880007,37.9200072 203.4,36.48 C201.919993,35.0399928 198.860023,34.0400028 194.22,33.48 C193.979999,33.3999996 193.760001,33.0400032 193.56,32.4 C193.359999,31.7599968 193.26,31.240002 193.26,30.84 C193.26,30.2799972 193.359999,29.700003 193.56,29.1 C193.760001,28.499997 193.979999,28.2 194.22,28.2 C198.060019,28.2 201.99998,28.299999 206.04,28.5 C210.08002,28.700001 213.899982,28.8 217.5,28.8 C221.180018,28.8 225.01998,28.700001 229.02,28.5 C233.02002,28.299999 236.97998,28.2 240.9,28.2 C241.140001,28.2 241.359999,28.5199968 241.56,29.16 C241.760001,29.8000032 241.86,30.3599976 241.86,30.84 C241.86,31.240002 241.760001,31.7799966 241.56,32.46 C241.359999,33.1400034 241.140001,33.48 240.9,33.48 C236.259977,33.9600024 233.180008,34.9599924 231.66,36.48 C230.139992,38.0000076 229.38,40.359984 229.38,43.56 L229.38,98.04 C229.38,100.920014 230.159992,102.819995 231.72,103.74 C233.280008,104.660005 234.859992,105.12 236.46,105.12 L243.3,105.12 C248.900028,105.12 253.879978,102.480026 258.24,97.2 C262.600022,91.9199736 265.379994,86.0000328 266.58,79.44 C266.58,79.2799992 266.719999,79.1600004 267,79.08 C267.280001,78.9999996 267.699997,78.96 268.26,78.96 C269.140004,78.96 269.999996,79.1199984 270.84,79.44 C271.680004,79.7600016 272.06,80.1599976 271.98,80.64 Z M354.7,56.28 C354.7,56.680002 354.400003,57.0399984 353.8,57.36 C353.199997,57.6800016 352.500004,57.84 351.7,57.84 C351.379998,57.84 350.940003,57.7800006 350.38,57.66 C349.819997,57.5399994 349.5,57.4000008 349.42,57.24 C348.299994,52.839978 345.640021,47.9800266 341.44,42.66 C337.239979,37.3399734 333.300018,34.68 329.62,34.68 L327.82,34.68 C325.979991,34.68 324.660004,35.0599962 323.86,35.82 C323.059996,36.5800038 322.66,37.759992 322.66,39.36 L322.66,96.24 C322.66,99.440016 323.419992,101.799992 324.94,103.32 C326.460008,104.840008 329.539977,105.839998 334.18,106.32 C334.420001,106.32 334.639999,106.659997 334.84,107.34 C335.040001,108.020003 335.14,108.559998 335.14,108.96 C335.14,109.440002 335.040001,109.999997 334.84,110.64 C334.639999,111.280003 334.420001,111.6 334.18,111.6 C330.339981,111.6 326.40002,111.500001 322.36,111.3 C318.31998,111.099999 314.500018,111 310.9,111 C307.219982,111 303.38002,111.099999 299.38,111.3 C295.37998,111.500001 291.42002,111.6 287.5,111.6 C287.259999,111.6 287.040001,111.280003 286.84,110.64 C286.639999,109.999997 286.54,109.440002 286.54,108.96 C286.54,108.559998 286.639999,108.040003 286.84,107.4 C287.040001,106.759997 287.259999,106.4 287.5,106.32 C292.220024,105.759997 295.319993,104.760007 296.8,103.32 C298.280007,101.879993 299.02,99.5200164 299.02,96.24 L299.02,39.36 C299.02,37.5999912 298.660004,36.3800034 297.94,35.7 C297.219996,35.0199966 295.86001,34.68 293.86,34.68 L292.9,34.68 C289.619984,34.68 285.580024,37.1399754 280.78,42.06 C275.979976,46.9800246 272.58001,52.039974 270.58,57.24 C270.5,57.4800012 270.200003,57.6399996 269.68,57.72 C269.159997,57.8000004 268.740002,57.84 268.42,57.84 C267.699996,57.84 267.000003,57.6800016 266.32,57.36 C265.639997,57.0399984 265.3,56.680002 265.3,56.28 C266.100004,52.27998 266.959995,47.380029 267.88,41.58 C268.800005,35.779971 269.459998,30.9600192 269.86,27.12 C272.660014,27.6000024 277.01997,27.9999984 282.94,28.32 C288.86003,28.6400016 298.179936,28.8 310.9,28.8 C321.780054,28.8 330.839964,28.6400016 338.08,28.32 C345.320036,27.9999984 350.099988,27.6000024 352.42,27.12 C352.660001,30.9600192 352.979998,35.5199736 353.38,40.8 C353.780002,46.0800264 354.219998,51.2399748 354.7,56.28 Z M450.74,70.32 C450.74,82.32006 446.640041,92.519958 438.44,100.92 C430.239959,109.320042 418.660075,113.52 403.7,113.52 C388.739925,113.52 377.140041,109.300042 368.9,100.86 C360.659959,92.4199578 356.54,82.2400596 356.54,70.32 C356.54,58.3999404 360.659959,48.0800436 368.9,39.36 C377.140041,30.6399564 388.739925,26.28 403.7,26.28 C418.340073,26.28 429.839958,30.579957 438.2,39.18 C446.560042,47.780043 450.74,58.1599392 450.74,70.32 Z M426.02,70.32 C426.02,59.2799448 424.420016,50.1400362 421.22,42.9 C418.019984,35.6599638 412.180042,32.04 403.7,32.04 C395.139957,32.04 389.280016,35.6999634 386.12,43.02 C382.959984,50.3400366 381.38,59.4399456 381.38,70.32 C381.38,81.4400556 382.959984,90.4599654 386.12,97.38 C389.280016,104.300035 395.139957,107.76 403.7,107.76 C412.180042,107.76 418.019984,104.280035 421.22,97.32 C424.420016,90.3599652 426.02,81.3600552 426.02,70.32 Z" id="VOLTO"></path>
13
- </g>
14
- </g>
15
- <path d="M356.581739,179.442 C363.415739,160.722 367.144739,140.507 367.144739,119.422 C367.144739,96.3429999 362.677739,74.3079999 354.559739,54.1329999 C353.090739,50.4829999 357.774739,47.5309999 360.450739,50.4149999 C389.428739,81.6409999 407.144739,123.463 407.144739,169.422 C407.144739,191.713 402.977739,213.032 395.378739,232.639 C401.966739,228.523 408.160739,221.516 413.959739,211.618 C414.921739,209.974 417.441739,210.772 417.258739,212.668 C411.835739,268.823 403.414739,309.219 391.997739,333.857 C390.696739,336.664 393.119739,331.137 391.997739,333.857 C374.959739,375.124 337.289739,414.002 291.729739,414.002 C271.586739,414.002 252.832739,408.046 237.136739,397.797 C227.782739,391.691 215.678739,391.691 206.324739,397.797 C190.627739,408.046 171.874739,414.002 151.730739,414.002 C110.723739,414.002 70.7697387,376.529 52.7937387,335.024 C52.1437387,333.521 53.5017387,336.552 52.7937387,335.024 C41.2827387,310.183 34.3527387,275.462 32.0027387,230.859 C31.9137387,229.168 34.0157387,228.302 35.1257387,229.58 C46.7747387,242.986 62.2297387,244.11 81.4907387,232.952 C99.1027387,222.748 116.946739,216.895 135.021739,215.391 C140.455739,214.477 146.037739,214.002 151.730739,214.002 C170.511739,214.002 188.082739,219.179 203.096739,228.184 C209.275739,231.891 217.294739,230.426 221.636739,224.675 C243.752739,195.372 256.867739,158.892 256.867739,119.35 C256.867739,78.6299999 242.959739,41.1589999 219.636739,11.4269999 C215.430739,6.06599994 220.542739,-1.49800006 227.125739,0.258999936 C301.837739,20.2059999 356.867739,88.3509999 356.867739,169.35 C356.867739,172.738 356.770739,176.102 356.581739,179.442 M247.729739,344.731 C268.782739,274.206 307.991739,261.311 365.358739,306.046 C347.380739,348.621 308.170739,361.516 247.729739,344.731 M195.358739,344.731 C174.306739,274.206 135.096739,261.311 77.7307387,306.046 C95.7087387,348.621 134.918739,361.516 195.358739,344.731" id="Fill-1"></path>
16
- </g>
17
- </g>
18
- </g>
19
- </svg>