@plone/volto 17.2.0 → 17.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (930) hide show
  1. package/CHANGELOG.md +54 -0
  2. package/addon-registry.js +6 -2
  3. package/cypress/support/commands.js +9 -0
  4. package/package.json +11 -5
  5. package/packages/volto-slate/package.json +1 -1
  6. package/src/components/manage/Blocks/Description/Edit.jsx +4 -14
  7. package/src/components/manage/Blocks/Description/View.jsx +3 -13
  8. package/src/components/manage/Blocks/HTML/View.jsx +0 -10
  9. package/src/components/manage/Blocks/HeroImageLeft/View.jsx +0 -10
  10. package/src/components/manage/Blocks/Image/View.jsx +0 -10
  11. package/src/components/manage/Blocks/LeadImage/View.jsx +0 -10
  12. package/src/components/manage/Blocks/Search/SearchBlockView.jsx +1 -1
  13. package/src/components/manage/Blocks/Search/components/SelectStyling.jsx +1 -2
  14. package/src/components/manage/Blocks/Search/hocs/withSearch.jsx +10 -2
  15. package/src/components/manage/Blocks/Table/View.jsx +0 -10
  16. package/src/components/manage/Blocks/Text/View.jsx +0 -10
  17. package/src/components/manage/Blocks/Title/Edit.jsx +0 -10
  18. package/src/components/manage/Blocks/Video/Body.jsx +0 -10
  19. package/src/components/manage/Edit/Edit.jsx +11 -2
  20. package/src/components/manage/LinkMore/LinkMore.jsx +0 -10
  21. package/src/components/manage/Multilingual/TranslationObject.jsx +0 -10
  22. package/src/components/manage/Widgets/DatetimeWidget.jsx +2 -0
  23. package/src/components/theme/Footer/Footer.jsx +1 -0
  24. package/src/components/theme/Navigation/Navigation.jsx +1 -1
  25. package/src/components/theme/SkipLinks/SkipLinks.jsx +3 -1
  26. package/src/components/theme/SkipLinks/SkipLinks.test.jsx +6 -3
  27. package/src/helpers/Blocks/Blocks.js +120 -48
  28. package/src/helpers/Blocks/Blocks.test.js +75 -0
  29. package/src/helpers/Html/Html.jsx +1 -1
  30. package/types/actions/actions/actions.d.ts +7 -0
  31. package/types/actions/actions/actions.test.d.ts +1 -0
  32. package/types/actions/addons/addons.d.ts +27 -0
  33. package/types/actions/addons/addons.test.d.ts +1 -0
  34. package/types/actions/aliases/aliases.d.ts +24 -0
  35. package/types/actions/aliases/aliases.test.d.ts +1 -0
  36. package/types/actions/asyncConnect/asyncConnect.d.ts +24 -0
  37. package/types/actions/authRole/authRole.d.ts +4 -0
  38. package/types/actions/authRole/authRole.test.d.ts +1 -0
  39. package/types/actions/blocksClipboard/blocksClipboard.d.ts +13 -0
  40. package/types/actions/breadcrumbs/breadcrumbs.d.ts +7 -0
  41. package/types/actions/breadcrumbs/breadcrumbs.test.d.ts +1 -0
  42. package/types/actions/clipboard/clipboard.d.ts +30 -0
  43. package/types/actions/clipboard/clipboard.test.d.ts +1 -0
  44. package/types/actions/comments/comments.d.ts +37 -0
  45. package/types/actions/comments/comments.test.d.ts +1 -0
  46. package/types/actions/content/content.d.ts +90 -0
  47. package/types/actions/content/content.multilingual.test.d.ts +1 -0
  48. package/types/actions/content/content.test.d.ts +1 -0
  49. package/types/actions/contextNavigation/contextNavigation.d.ts +8 -0
  50. package/types/actions/contextNavigation/contextNavigation.test.d.ts +1 -0
  51. package/types/actions/controlpanels/controlpanels.d.ts +51 -0
  52. package/types/actions/controlpanels/controlpanels.test.d.ts +1 -0
  53. package/types/actions/diff/diff.d.ts +9 -0
  54. package/types/actions/diff/diff.test.d.ts +1 -0
  55. package/types/actions/emailNotification/emailNotification.d.ts +10 -0
  56. package/types/actions/emailNotification/emailNotification.test.d.ts +1 -0
  57. package/types/actions/emailSend/emailSend.d.ts +11 -0
  58. package/types/actions/emailSend/emailSend.test.d.ts +1 -0
  59. package/types/actions/groups/groups.d.ts +36 -0
  60. package/types/actions/groups/groups.test.d.ts +1 -0
  61. package/types/actions/history/history.d.ts +15 -0
  62. package/types/actions/history/history.test.d.ts +1 -0
  63. package/types/actions/index.d.ts +8 -0
  64. package/types/actions/language/language.d.ts +9 -0
  65. package/types/actions/lazyLibraries/lazyLibraries.d.ts +1 -0
  66. package/types/actions/messages/messages.d.ts +22 -0
  67. package/types/actions/messages/messages.test.d.ts +1 -0
  68. package/types/actions/navigation/navigation.d.ts +8 -0
  69. package/types/actions/navigation/navigation.test.d.ts +1 -0
  70. package/types/actions/navroot/navroot.d.ts +6 -0
  71. package/types/actions/navroot/navroot.test.d.ts +1 -0
  72. package/types/actions/querystring/querystring.d.ts +6 -0
  73. package/types/actions/querystring/querystring.test.d.ts +1 -0
  74. package/types/actions/querystringsearch/querystringsearch.d.ts +7 -0
  75. package/types/actions/querystringsearch/querystringsearch.test.d.ts +1 -0
  76. package/types/actions/relations/rebuild.d.ts +7 -0
  77. package/types/actions/relations/relations.d.ts +27 -0
  78. package/types/actions/relations/relations.test.d.ts +1 -0
  79. package/types/actions/roles/roles.d.ts +6 -0
  80. package/types/actions/roles/roles.test.d.ts +1 -0
  81. package/types/actions/rules/rules.d.ts +168 -0
  82. package/types/actions/schema/schema.d.ts +32 -0
  83. package/types/actions/schema/schema.test.d.ts +1 -0
  84. package/types/actions/search/search.d.ts +16 -0
  85. package/types/actions/search/search.test.d.ts +1 -0
  86. package/types/actions/sharing/sharing.d.ts +16 -0
  87. package/types/actions/sharing/sharing.test.d.ts +1 -0
  88. package/types/actions/sidebar/sidebar.d.ts +7 -0
  89. package/types/actions/sidebar/sidebar.test.d.ts +1 -0
  90. package/types/actions/site/site.d.ts +6 -0
  91. package/types/actions/site/site.test.d.ts +1 -0
  92. package/types/actions/toolbar/toolbar.d.ts +7 -0
  93. package/types/actions/toolbar/toolbar.test.d.ts +1 -0
  94. package/types/actions/transactions/transactions.d.ts +13 -0
  95. package/types/actions/transactions/transactions.test.d.ts +1 -0
  96. package/types/actions/translations/translations.d.ts +23 -0
  97. package/types/actions/translations/translations.test.d.ts +1 -0
  98. package/types/actions/types/types.d.ts +7 -0
  99. package/types/actions/types/types.test.d.ts +1 -0
  100. package/types/actions/upgrade/upgrade.d.ts +17 -0
  101. package/types/actions/userSession/userSession.d.ts +26 -0
  102. package/types/actions/userSession/userSession.test.d.ts +1 -0
  103. package/types/actions/users/users.d.ts +66 -0
  104. package/types/actions/users/users.test.d.ts +1 -0
  105. package/types/actions/userschema/userschema.d.ts +6 -0
  106. package/types/actions/vocabularies/vocabularies.d.ts +20 -0
  107. package/types/actions/vocabularies/vocabularies.test.d.ts +1 -0
  108. package/types/actions/workflow/workflow.d.ts +15 -0
  109. package/types/actions/workflow/workflow.test.d.ts +1 -0
  110. package/types/actions/workingcopy/workingcopy.d.ts +21 -0
  111. package/types/actions/workingcopy/workingcopy.test.d.ts +1 -0
  112. package/types/client.d.ts +1 -0
  113. package/types/components/index.d.ts +3 -0
  114. package/types/components/manage/Actions/Actions.d.ts +7 -0
  115. package/types/components/manage/Actions/Actions.test.d.ts +1 -0
  116. package/types/components/manage/Add/Add.d.ts +4 -0
  117. package/types/components/manage/Add/Add.test.d.ts +1 -0
  118. package/types/components/manage/Aliases/Aliases.d.ts +2 -0
  119. package/types/components/manage/Aliases/Aliases.test.d.ts +1 -0
  120. package/types/components/manage/AnchorPlugin/components/Link/index.d.ts +26 -0
  121. package/types/components/manage/AnchorPlugin/components/LinkButton/AddLinkForm.d.ts +4 -0
  122. package/types/components/manage/AnchorPlugin/components/LinkButton/index.d.ts +2 -0
  123. package/types/components/manage/AnchorPlugin/index.d.ts +9 -0
  124. package/types/components/manage/AnchorPlugin/linkStrategy.d.ts +11 -0
  125. package/types/components/manage/AnchorPlugin/utils/EditorUtils.d.ts +10 -0
  126. package/types/components/manage/BlockChooser/BlockChooser.d.ts +2 -0
  127. package/types/components/manage/BlockChooser/BlockChooser.test.d.ts +1 -0
  128. package/types/components/manage/BlockChooser/BlockChooserButton.d.ts +3 -0
  129. package/types/components/manage/BlockChooser/BlockChooserButton.test.d.ts +1 -0
  130. package/types/components/manage/BlockChooser/BlockChooserSearch.d.ts +5 -0
  131. package/types/components/manage/BlockChooser/BlockChooserSearch.test.d.ts +1 -0
  132. package/types/components/manage/Blocks/Block/BlocksForm.d.ts +2 -0
  133. package/types/components/manage/Blocks/Block/BlocksForm.test.d.ts +1 -0
  134. package/types/components/manage/Blocks/Block/DefaultEdit.d.ts +2 -0
  135. package/types/components/manage/Blocks/Block/DefaultView.d.ts +2 -0
  136. package/types/components/manage/Blocks/Block/Edit.d.ts +51 -0
  137. package/types/components/manage/Blocks/Block/EditBlockWrapper.d.ts +4 -0
  138. package/types/components/manage/Blocks/Block/Schema.d.ts +51 -0
  139. package/types/components/manage/Blocks/Block/Settings.d.ts +4 -0
  140. package/types/components/manage/Blocks/Block/Settings.test.d.ts +1 -0
  141. package/types/components/manage/Blocks/Block/Style.d.ts +5 -0
  142. package/types/components/manage/Blocks/Block/Style.test.d.ts +1 -0
  143. package/types/components/manage/Blocks/Block/StyleWrapper.d.ts +2 -0
  144. package/types/components/manage/Blocks/Container/Data.d.ts +2 -0
  145. package/types/components/manage/Blocks/Container/Edit.d.ts +12 -0
  146. package/types/components/manage/Blocks/Container/EditBlockWrapper.d.ts +2 -0
  147. package/types/components/manage/Blocks/Container/NewBlockAddButton.d.ts +2 -0
  148. package/types/components/manage/Blocks/Container/SimpleContainerToolbar.d.ts +2 -0
  149. package/types/components/manage/Blocks/Description/Edit.d.ts +26 -0
  150. package/types/components/manage/Blocks/Description/Edit.test.d.ts +1 -0
  151. package/types/components/manage/Blocks/Description/View.d.ts +11 -0
  152. package/types/components/manage/Blocks/Description/View.test.d.ts +1 -0
  153. package/types/components/manage/Blocks/Grid/Edit.d.ts +11 -0
  154. package/types/components/manage/Blocks/Grid/View.d.ts +2 -0
  155. package/types/components/manage/Blocks/Grid/adapter.d.ts +7 -0
  156. package/types/components/manage/Blocks/Grid/schema.d.ts +15 -0
  157. package/types/components/manage/Blocks/Grid/templates.d.ts +7 -0
  158. package/types/components/manage/Blocks/HTML/Edit.d.ts +2 -0
  159. package/types/components/manage/Blocks/HTML/Edit.test.d.ts +1 -0
  160. package/types/components/manage/Blocks/HTML/View.d.ts +9 -0
  161. package/types/components/manage/Blocks/HTML/View.test.d.ts +1 -0
  162. package/types/components/manage/Blocks/HeroImageLeft/Data.d.ts +2 -0
  163. package/types/components/manage/Blocks/HeroImageLeft/Edit.d.ts +2 -0
  164. package/types/components/manage/Blocks/HeroImageLeft/Edit.test.d.ts +1 -0
  165. package/types/components/manage/Blocks/HeroImageLeft/View.d.ts +9 -0
  166. package/types/components/manage/Blocks/HeroImageLeft/View.test.d.ts +1 -0
  167. package/types/components/manage/Blocks/HeroImageLeft/schema.d.ts +24 -0
  168. package/types/components/manage/Blocks/Image/Edit.d.ts +4 -0
  169. package/types/components/manage/Blocks/Image/Edit.test.d.ts +1 -0
  170. package/types/components/manage/Blocks/Image/ImageSidebar.d.ts +9 -0
  171. package/types/components/manage/Blocks/Image/ImageSidebar.test.d.ts +1 -0
  172. package/types/components/manage/Blocks/Image/LayoutSchema.d.ts +2 -0
  173. package/types/components/manage/Blocks/Image/View.d.ts +13 -0
  174. package/types/components/manage/Blocks/Image/View.test.d.ts +1 -0
  175. package/types/components/manage/Blocks/Image/schema.d.ts +41 -0
  176. package/types/components/manage/Blocks/Image/utils.d.ts +1 -0
  177. package/types/components/manage/Blocks/LeadImage/Edit.d.ts +4 -0
  178. package/types/components/manage/Blocks/LeadImage/Edit.test.d.ts +1 -0
  179. package/types/components/manage/Blocks/LeadImage/LeadImageSidebar.d.ts +24 -0
  180. package/types/components/manage/Blocks/LeadImage/LeadImageSidebar.test.d.ts +1 -0
  181. package/types/components/manage/Blocks/LeadImage/View.d.ts +11 -0
  182. package/types/components/manage/Blocks/LeadImage/View.test.d.ts +1 -0
  183. package/types/components/manage/Blocks/LeadImage/utils.d.ts +1 -0
  184. package/types/components/manage/Blocks/Listing/DefaultNoResultsComponent.d.ts +2 -0
  185. package/types/components/manage/Blocks/Listing/DefaultTemplate.d.ts +15 -0
  186. package/types/components/manage/Blocks/Listing/Edit.d.ts +2 -0
  187. package/types/components/manage/Blocks/Listing/GalleryNoResultsComponent.d.ts +2 -0
  188. package/types/components/manage/Blocks/Listing/ImageGallery.d.ts +9 -0
  189. package/types/components/manage/Blocks/Listing/ListingBody.d.ts +4 -0
  190. package/types/components/manage/Blocks/Listing/ListingBody.test.d.ts +1 -0
  191. package/types/components/manage/Blocks/Listing/ListingData.d.ts +9 -0
  192. package/types/components/manage/Blocks/Listing/ListingData.test.d.ts +1 -0
  193. package/types/components/manage/Blocks/Listing/SummaryTemplate.d.ts +14 -0
  194. package/types/components/manage/Blocks/Listing/View.d.ts +2 -0
  195. package/types/components/manage/Blocks/Listing/View.test.d.ts +1 -0
  196. package/types/components/manage/Blocks/Listing/getAsyncData.d.ts +7 -0
  197. package/types/components/manage/Blocks/Listing/schema.d.ts +35 -0
  198. package/types/components/manage/Blocks/Listing/withQuerystringResults.d.ts +1 -0
  199. package/types/components/manage/Blocks/Maps/Edit.d.ts +2 -0
  200. package/types/components/manage/Blocks/Maps/Edit.test.d.ts +1 -0
  201. package/types/components/manage/Blocks/Maps/MapsSidebar.d.ts +2 -0
  202. package/types/components/manage/Blocks/Maps/MapsSidebar.test.d.ts +1 -0
  203. package/types/components/manage/Blocks/Maps/View.d.ts +4 -0
  204. package/types/components/manage/Blocks/Maps/View.test.d.ts +1 -0
  205. package/types/components/manage/Blocks/Maps/schema.d.ts +23 -0
  206. package/types/components/manage/Blocks/Search/SearchBlockEdit.d.ts +5 -0
  207. package/types/components/manage/Blocks/Search/SearchBlockView.d.ts +6 -0
  208. package/types/components/manage/Blocks/Search/SelectStyling.d.ts +11 -0
  209. package/types/components/manage/Blocks/Search/components/CheckboxFacet.d.ts +14 -0
  210. package/types/components/manage/Blocks/Search/components/CheckboxFacet.test.d.ts +1 -0
  211. package/types/components/manage/Blocks/Search/components/DateRangeFacet.d.ts +2 -0
  212. package/types/components/manage/Blocks/Search/components/DateRangeFacet.test.d.ts +1 -0
  213. package/types/components/manage/Blocks/Search/components/DateRangeFacetFilterListEntry.d.ts +2 -0
  214. package/types/components/manage/Blocks/Search/components/Facets.d.ts +2 -0
  215. package/types/components/manage/Blocks/Search/components/FilterList.d.ts +6 -0
  216. package/types/components/manage/Blocks/Search/components/FilterList.test.d.ts +1 -0
  217. package/types/components/manage/Blocks/Search/components/SearchDetails.d.ts +7 -0
  218. package/types/components/manage/Blocks/Search/components/SearchDetails.test.d.ts +1 -0
  219. package/types/components/manage/Blocks/Search/components/SearchInput.d.ts +2 -0
  220. package/types/components/manage/Blocks/Search/components/SearchInput.test.d.ts +1 -0
  221. package/types/components/manage/Blocks/Search/components/SelectFacet.d.ts +2 -0
  222. package/types/components/manage/Blocks/Search/components/SelectFacet.test.d.ts +1 -0
  223. package/types/components/manage/Blocks/Search/components/SelectFacetFilterListEntry.d.ts +2 -0
  224. package/types/components/manage/Blocks/Search/components/SelectStyling.d.ts +24 -0
  225. package/types/components/manage/Blocks/Search/components/SortOn.d.ts +4 -0
  226. package/types/components/manage/Blocks/Search/components/ToggleFacet.d.ts +17 -0
  227. package/types/components/manage/Blocks/Search/components/ToggleFacetFilterListEntry.d.ts +2 -0
  228. package/types/components/manage/Blocks/Search/components/ViewSwitcher.d.ts +4 -0
  229. package/types/components/manage/Blocks/Search/components/base.d.ts +23 -0
  230. package/types/components/manage/Blocks/Search/components/index.d.ts +13 -0
  231. package/types/components/manage/Blocks/Search/hocs/index.d.ts +2 -0
  232. package/types/components/manage/Blocks/Search/hocs/withQueryString.d.ts +8 -0
  233. package/types/components/manage/Blocks/Search/hocs/withSearch.d.ts +5 -0
  234. package/types/components/manage/Blocks/Search/layout/LeftColumnFacets.d.ts +2 -0
  235. package/types/components/manage/Blocks/Search/layout/RightColumnFacets.d.ts +2 -0
  236. package/types/components/manage/Blocks/Search/layout/TopSideFacets.d.ts +2 -0
  237. package/types/components/manage/Blocks/Search/schema.d.ts +108 -0
  238. package/types/components/manage/Blocks/Search/utils.d.ts +4 -0
  239. package/types/components/manage/Blocks/Search/widgets/SelectMetadataField.d.ts +5 -0
  240. package/types/components/manage/Blocks/Table/Cell.d.ts +3 -0
  241. package/types/components/manage/Blocks/Table/Cell.test.d.ts +1 -0
  242. package/types/components/manage/Blocks/Table/Edit.d.ts +2 -0
  243. package/types/components/manage/Blocks/Table/Edit.test.d.ts +1 -0
  244. package/types/components/manage/Blocks/Table/View.d.ts +9 -0
  245. package/types/components/manage/Blocks/Table/View.test.d.ts +1 -0
  246. package/types/components/manage/Blocks/Teaser/Body.d.ts +8 -0
  247. package/types/components/manage/Blocks/Teaser/Data.d.ts +2 -0
  248. package/types/components/manage/Blocks/Teaser/DefaultBody.d.ts +8 -0
  249. package/types/components/manage/Blocks/Teaser/Edit.d.ts +2 -0
  250. package/types/components/manage/Blocks/Teaser/View.d.ts +2 -0
  251. package/types/components/manage/Blocks/Teaser/adapter.d.ts +7 -0
  252. package/types/components/manage/Blocks/Teaser/schema.d.ts +46 -0
  253. package/types/components/manage/Blocks/Text/Edit.d.ts +92 -0
  254. package/types/components/manage/Blocks/Text/Edit.test.d.ts +1 -0
  255. package/types/components/manage/Blocks/Text/Schema.d.ts +2 -0
  256. package/types/components/manage/Blocks/Text/View.d.ts +9 -0
  257. package/types/components/manage/Blocks/Text/View.test.d.ts +1 -0
  258. package/types/components/manage/Blocks/Title/Edit.d.ts +26 -0
  259. package/types/components/manage/Blocks/Title/Edit.test.d.ts +1 -0
  260. package/types/components/manage/Blocks/Title/View.d.ts +5 -0
  261. package/types/components/manage/Blocks/Title/View.test.d.ts +1 -0
  262. package/types/components/manage/Blocks/ToC/Edit.d.ts +7 -0
  263. package/types/components/manage/Blocks/ToC/Schema.d.ts +35 -0
  264. package/types/components/manage/Blocks/ToC/View.d.ts +10 -0
  265. package/types/components/manage/Blocks/ToC/variations/DefaultTocRenderer.d.ts +4 -0
  266. package/types/components/manage/Blocks/ToC/variations/DefaultTocRenderer.test.d.ts +1 -0
  267. package/types/components/manage/Blocks/ToC/variations/HorizontalMenu.d.ts +4 -0
  268. package/types/components/manage/Blocks/ToC/variations/index.d.ts +16 -0
  269. package/types/components/manage/Blocks/Video/Body.d.ts +10 -0
  270. package/types/components/manage/Blocks/Video/Edit.d.ts +4 -0
  271. package/types/components/manage/Blocks/Video/Edit.test.d.ts +1 -0
  272. package/types/components/manage/Blocks/Video/VideoSidebar.d.ts +2 -0
  273. package/types/components/manage/Blocks/Video/VideoSidebar.test.d.ts +1 -0
  274. package/types/components/manage/Blocks/Video/View.d.ts +2 -0
  275. package/types/components/manage/Blocks/Video/View.test.d.ts +1 -0
  276. package/types/components/manage/Blocks/Video/schema.d.ts +25 -0
  277. package/types/components/manage/ConditionalLink/ConditionalLink.d.ts +15 -0
  278. package/types/components/manage/ConditionalLink/ConditionalLink.test.d.ts +1 -0
  279. package/types/components/manage/Contents/Contents.d.ts +7 -0
  280. package/types/components/manage/Contents/Contents.test.d.ts +1 -0
  281. package/types/components/manage/Contents/ContentsBreadcrumbs.Multilingual.test.d.ts +1 -0
  282. package/types/components/manage/Contents/ContentsBreadcrumbs.d.ts +2 -0
  283. package/types/components/manage/Contents/ContentsBreadcrumbs.test.d.ts +1 -0
  284. package/types/components/manage/Contents/ContentsBreadcrumbsHomeItem.d.ts +2 -0
  285. package/types/components/manage/Contents/ContentsBreadcrumbsRootItem.d.ts +2 -0
  286. package/types/components/manage/Contents/ContentsIndexHeader.d.ts +21 -0
  287. package/types/components/manage/Contents/ContentsIndexHeader.test.d.ts +1 -0
  288. package/types/components/manage/Contents/ContentsItem.d.ts +37 -0
  289. package/types/components/manage/Contents/ContentsItem.test.d.ts +1 -0
  290. package/types/components/manage/Contents/ContentsPropertiesModal.d.ts +10 -0
  291. package/types/components/manage/Contents/ContentsPropertiesModal.test.d.ts +1 -0
  292. package/types/components/manage/Contents/ContentsRenameModal.d.ts +10 -0
  293. package/types/components/manage/Contents/ContentsRenameModal.stories.d.ts +8 -0
  294. package/types/components/manage/Contents/ContentsRenameModal.test.d.ts +1 -0
  295. package/types/components/manage/Contents/ContentsTagsModal.d.ts +10 -0
  296. package/types/components/manage/Contents/ContentsTagsModal.stories.d.ts +19 -0
  297. package/types/components/manage/Contents/ContentsTagsModal.test.d.ts +1 -0
  298. package/types/components/manage/Contents/ContentsUploadModal.d.ts +2 -0
  299. package/types/components/manage/Contents/ContentsUploadModal.test.d.ts +1 -0
  300. package/types/components/manage/Contents/ContentsWorkflowModal.d.ts +10 -0
  301. package/types/components/manage/Contents/ContentsWorkflowModal.test.d.ts +1 -0
  302. package/types/components/manage/Contents/circle.d.ts +4 -0
  303. package/types/components/manage/Controlpanels/AddonsControlpanel.d.ts +2 -0
  304. package/types/components/manage/Controlpanels/AddonsControlpanel.test.d.ts +1 -0
  305. package/types/components/manage/Controlpanels/Aliases.d.ts +2 -0
  306. package/types/components/manage/Controlpanels/Aliases.test.d.ts +1 -0
  307. package/types/components/manage/Controlpanels/ContentType.d.ts +2 -0
  308. package/types/components/manage/Controlpanels/ContentType.test.d.ts +1 -0
  309. package/types/components/manage/Controlpanels/ContentTypeLayout.d.ts +2 -0
  310. package/types/components/manage/Controlpanels/ContentTypeLayout.test.d.ts +1 -0
  311. package/types/components/manage/Controlpanels/ContentTypeSchema.d.ts +2 -0
  312. package/types/components/manage/Controlpanels/ContentTypes.d.ts +2 -0
  313. package/types/components/manage/Controlpanels/ContentTypes.test.d.ts +1 -0
  314. package/types/components/manage/Controlpanels/ContentTypesActions.d.ts +4 -0
  315. package/types/components/manage/Controlpanels/Controlpanel.d.ts +4 -0
  316. package/types/components/manage/Controlpanels/Controlpanel.test.d.ts +1 -0
  317. package/types/components/manage/Controlpanels/Controlpanels.d.ts +17 -0
  318. package/types/components/manage/Controlpanels/Controlpanels.test.d.ts +1 -0
  319. package/types/components/manage/Controlpanels/DatabaseInformation.d.ts +2 -0
  320. package/types/components/manage/Controlpanels/Groups/GroupsControlpanel.d.ts +2 -0
  321. package/types/components/manage/Controlpanels/Groups/GroupsControlpanel.test.d.ts +1 -0
  322. package/types/components/manage/Controlpanels/Groups/RenderGroups.d.ts +4 -0
  323. package/types/components/manage/Controlpanels/Groups/RenderGroups.test.d.ts +1 -0
  324. package/types/components/manage/Controlpanels/ModerateComments.d.ts +2 -0
  325. package/types/components/manage/Controlpanels/ModerateComments.test.d.ts +1 -0
  326. package/types/components/manage/Controlpanels/Relations/BrokenRelations.d.ts +2 -0
  327. package/types/components/manage/Controlpanels/Relations/Relations.d.ts +2 -0
  328. package/types/components/manage/Controlpanels/Relations/RelationsListing.d.ts +8 -0
  329. package/types/components/manage/Controlpanels/Relations/RelationsMatrix.d.ts +2 -0
  330. package/types/components/manage/Controlpanels/Rules/AddRule.d.ts +2 -0
  331. package/types/components/manage/Controlpanels/Rules/AddRule.test.d.ts +1 -0
  332. package/types/components/manage/Controlpanels/Rules/ConfigureRule.d.ts +2 -0
  333. package/types/components/manage/Controlpanels/Rules/ConfigureRule.test.d.ts +1 -0
  334. package/types/components/manage/Controlpanels/Rules/EditRule.d.ts +2 -0
  335. package/types/components/manage/Controlpanels/Rules/EditRule.test.d.ts +1 -0
  336. package/types/components/manage/Controlpanels/Rules/Rules.d.ts +2 -0
  337. package/types/components/manage/Controlpanels/Rules/Rules.test.d.ts +1 -0
  338. package/types/components/manage/Controlpanels/Rules/components/VariableModal.d.ts +2 -0
  339. package/types/components/manage/Controlpanels/Rules/components/VariableModal.test.d.ts +1 -0
  340. package/types/components/manage/Controlpanels/UndoControlpanel.d.ts +2 -0
  341. package/types/components/manage/Controlpanels/UndoControlpanel.test.d.ts +1 -0
  342. package/types/components/manage/Controlpanels/UpgradeControlPanel.d.ts +2 -0
  343. package/types/components/manage/Controlpanels/Users/RenderUsers.d.ts +2 -0
  344. package/types/components/manage/Controlpanels/Users/RenderUsers.test.d.ts +1 -0
  345. package/types/components/manage/Controlpanels/Users/UserGroupMembershipControlPanel.d.ts +2 -0
  346. package/types/components/manage/Controlpanels/Users/UserGroupMembershipControlPanel.test.d.ts +1 -0
  347. package/types/components/manage/Controlpanels/Users/UserGroupMembershipListing.d.ts +9 -0
  348. package/types/components/manage/Controlpanels/Users/UserGroupMembershipMatrix.d.ts +5 -0
  349. package/types/components/manage/Controlpanels/Users/UsersControlpanel.d.ts +2 -0
  350. package/types/components/manage/Controlpanels/Users/UsersControlpanel.test.d.ts +1 -0
  351. package/types/components/manage/Controlpanels/VersionOverview.d.ts +10 -0
  352. package/types/components/manage/Delete/Delete.d.ts +2 -0
  353. package/types/components/manage/Delete/Delete.test.d.ts +1 -0
  354. package/types/components/manage/Diff/Diff.d.ts +2 -0
  355. package/types/components/manage/Diff/Diff.test.d.ts +1 -0
  356. package/types/components/manage/Diff/DiffField.d.ts +2 -0
  357. package/types/components/manage/Diff/DiffField.test.d.ts +1 -0
  358. package/types/components/manage/Display/Display.d.ts +4 -0
  359. package/types/components/manage/Display/Display.test.d.ts +1 -0
  360. package/types/components/manage/DragDropList/DragDropList.d.ts +2 -0
  361. package/types/components/manage/Edit/Edit.d.ts +5 -0
  362. package/types/components/manage/Edit/Edit.test.d.ts +1 -0
  363. package/types/components/manage/Form/BlockDataForm.d.ts +1 -0
  364. package/types/components/manage/Form/BlockDataForm.test.d.ts +1 -0
  365. package/types/components/manage/Form/BlocksToolbar.d.ts +14 -0
  366. package/types/components/manage/Form/Field.d.ts +4 -0
  367. package/types/components/manage/Form/Field.test.d.ts +1 -0
  368. package/types/components/manage/Form/Form.d.ts +4 -0
  369. package/types/components/manage/Form/Form.test.d.ts +1 -0
  370. package/types/components/manage/Form/InlineForm.d.ts +4 -0
  371. package/types/components/manage/Form/InlineForm.test.d.ts +1 -0
  372. package/types/components/manage/Form/InlineFormState.d.ts +3 -0
  373. package/types/components/manage/Form/ModalForm.d.ts +4 -0
  374. package/types/components/manage/Form/ModalForm.test.d.ts +1 -0
  375. package/types/components/manage/Form/UndoToolbar.d.ts +7 -0
  376. package/types/components/manage/History/History.d.ts +4 -0
  377. package/types/components/manage/History/History.test.d.ts +1 -0
  378. package/types/components/manage/LinkDetectionPlugin/link-detection-plugin.d.ts +11 -0
  379. package/types/components/manage/LinkDetectionPlugin/utils.d.ts +2 -0
  380. package/types/components/manage/LinkMore/LinkMore.d.ts +10 -0
  381. package/types/components/manage/LinksToItem/LinksToItem.d.ts +2 -0
  382. package/types/components/manage/LinksToItem/LinksToItem.test.d.ts +1 -0
  383. package/types/components/manage/LockingToastsFactory/LockingToastsFactory.d.ts +2 -0
  384. package/types/components/manage/MaybeWrap/MaybeWrap.d.ts +5 -0
  385. package/types/components/manage/MaybeWrap/MaybeWrap.test.d.ts +1 -0
  386. package/types/components/manage/Messages/Messages.d.ts +2 -0
  387. package/types/components/manage/Messages/Messages.test.d.ts +1 -0
  388. package/types/components/manage/Multilingual/CompareLanguages.d.ts +2 -0
  389. package/types/components/manage/Multilingual/CreateTranslation.d.ts +2 -0
  390. package/types/components/manage/Multilingual/CreateTranslation.test.d.ts +1 -0
  391. package/types/components/manage/Multilingual/ManageTranslations.d.ts +2 -0
  392. package/types/components/manage/Multilingual/ManageTranslations.test.d.ts +1 -0
  393. package/types/components/manage/Multilingual/TranslationObject.d.ts +9 -0
  394. package/types/components/manage/Pluggable/Pluggable.stories.d.ts +68 -0
  395. package/types/components/manage/Pluggable/Pluggable.test.d.ts +1 -0
  396. package/types/components/manage/Pluggable/index.d.ts +46 -0
  397. package/types/components/manage/Preferences/ChangePassword.d.ts +2 -0
  398. package/types/components/manage/Preferences/ChangePassword.test.d.ts +1 -0
  399. package/types/components/manage/Preferences/PersonalInformation.d.ts +2 -0
  400. package/types/components/manage/Preferences/PersonalInformation.test.d.ts +1 -0
  401. package/types/components/manage/Preferences/PersonalPreferences.d.ts +2 -0
  402. package/types/components/manage/Preferences/PersonalPreferences.test.d.ts +1 -0
  403. package/types/components/manage/ReactVirtualized/DynamicRowHeightList.d.ts +2 -0
  404. package/types/components/manage/Rules/Rules.d.ts +2 -0
  405. package/types/components/manage/Rules/Rules.test.d.ts +1 -0
  406. package/types/components/manage/Sharing/Sharing.d.ts +2 -0
  407. package/types/components/manage/Sharing/Sharing.test.d.ts +1 -0
  408. package/types/components/manage/Sidebar/AlignBlock.d.ts +8 -0
  409. package/types/components/manage/Sidebar/ObjectBrowser.d.ts +53 -0
  410. package/types/components/manage/Sidebar/ObjectBrowserBody.d.ts +2 -0
  411. package/types/components/manage/Sidebar/ObjectBrowserNav.d.ts +10 -0
  412. package/types/components/manage/Sidebar/ObjectBrowserNav.test.d.ts +1 -0
  413. package/types/components/manage/Sidebar/Sidebar.d.ts +6 -0
  414. package/types/components/manage/Sidebar/Sidebar.test.d.ts +1 -0
  415. package/types/components/manage/Sidebar/SidebarPopup.d.ts +17 -0
  416. package/types/components/manage/Sidebar/SidebarPopup.stories.d.ts +8 -0
  417. package/types/components/manage/Sidebar/SidebarPopup.test.d.ts +1 -0
  418. package/types/components/manage/Sidebar/SidebarPortal.d.ts +15 -0
  419. package/types/components/manage/Sidebar/SidebarPortal.test.d.ts +1 -0
  420. package/types/components/manage/TemplateChooser/TemplateChooser.d.ts +11 -0
  421. package/types/components/manage/TemplateChooser/TemplateChooser.test.d.ts +1 -0
  422. package/types/components/manage/TextLineEdit/TextLineEdit.d.ts +29 -0
  423. package/types/components/manage/TextLineEdit/TextLineEdit.stories.d.ts +17 -0
  424. package/types/components/manage/TextLineEdit/TextLineEdit.test.d.ts +1 -0
  425. package/types/components/manage/Toast/Toast.d.ts +12 -0
  426. package/types/components/manage/Toast/Toast.test.d.ts +1 -0
  427. package/types/components/manage/Toolbar/More.d.ts +4 -0
  428. package/types/components/manage/Toolbar/More.test.d.ts +1 -0
  429. package/types/components/manage/Toolbar/PersonalTools.d.ts +7 -0
  430. package/types/components/manage/Toolbar/PersonalTools.test.d.ts +1 -0
  431. package/types/components/manage/Toolbar/StandardWrapper.d.ts +12 -0
  432. package/types/components/manage/Toolbar/StandardWrapper.test.d.ts +1 -0
  433. package/types/components/manage/Toolbar/Stats.d.ts +2 -0
  434. package/types/components/manage/Toolbar/Toolbar.d.ts +2 -0
  435. package/types/components/manage/Toolbar/Toolbar.test.d.ts +1 -0
  436. package/types/components/manage/Toolbar/Types.d.ts +21 -0
  437. package/types/components/manage/Toolbar/Types.test.d.ts +1 -0
  438. package/types/components/manage/UniversalLink/UniversalLink.d.ts +22 -0
  439. package/types/components/manage/UniversalLink/UniversalLink.test.d.ts +1 -0
  440. package/types/components/manage/Widgets/AlignWidget.d.ts +12 -0
  441. package/types/components/manage/Widgets/AlignWidget.stories.d.ts +14 -0
  442. package/types/components/manage/Widgets/AlignWidget.test.d.ts +1 -0
  443. package/types/components/manage/Widgets/ArrayWidget.d.ts +7 -0
  444. package/types/components/manage/Widgets/ArrayWidget.stories.d.ts +25 -0
  445. package/types/components/manage/Widgets/ArrayWidget.test.d.ts +1 -0
  446. package/types/components/manage/Widgets/ButtonsWidget.d.ts +2 -0
  447. package/types/components/manage/Widgets/ButtonsWidget.stories.d.ts +14 -0
  448. package/types/components/manage/Widgets/ButtonsWidget.test.d.ts +1 -0
  449. package/types/components/manage/Widgets/CheckboxWidget.d.ts +4 -0
  450. package/types/components/manage/Widgets/CheckboxWidget.stories.d.ts +9 -0
  451. package/types/components/manage/Widgets/CheckboxWidget.test.d.ts +1 -0
  452. package/types/components/manage/Widgets/ColorPickerWidget.d.ts +22 -0
  453. package/types/components/manage/Widgets/ColorPickerWidget.stories.d.ts +8 -0
  454. package/types/components/manage/Widgets/ColorPickerWidget.test.d.ts +1 -0
  455. package/types/components/manage/Widgets/DatetimeWidget.d.ts +87 -0
  456. package/types/components/manage/Widgets/DatetimeWidget.stories.d.ts +9 -0
  457. package/types/components/manage/Widgets/DatetimeWidget.test.d.ts +1 -0
  458. package/types/components/manage/Widgets/EmailWidget.d.ts +49 -0
  459. package/types/components/manage/Widgets/EmailWidget.stories.d.ts +9 -0
  460. package/types/components/manage/Widgets/EmailWidget.test.d.ts +1 -0
  461. package/types/components/manage/Widgets/FileWidget.d.ts +4 -0
  462. package/types/components/manage/Widgets/FileWidget.stories.d.ts +9 -0
  463. package/types/components/manage/Widgets/FileWidget.test.d.ts +1 -0
  464. package/types/components/manage/Widgets/FormFieldWrapper.d.ts +4 -0
  465. package/types/components/manage/Widgets/FormFieldWrapper.stories.d.ts +13 -0
  466. package/types/components/manage/Widgets/IdWidget.d.ts +2 -0
  467. package/types/components/manage/Widgets/IdWidget.stories.d.ts +9 -0
  468. package/types/components/manage/Widgets/IdWidget.test.d.ts +1 -0
  469. package/types/components/manage/Widgets/ImageSizeWidget.d.ts +4 -0
  470. package/types/components/manage/Widgets/ImageSizeWidget.stories.d.ts +9 -0
  471. package/types/components/manage/Widgets/ImageSizeWidget.test.d.ts +1 -0
  472. package/types/components/manage/Widgets/InternalUrlWidget.d.ts +40 -0
  473. package/types/components/manage/Widgets/InternalUrlWidget.stories.d.ts +12 -0
  474. package/types/components/manage/Widgets/NumberWidget.d.ts +4 -0
  475. package/types/components/manage/Widgets/NumberWidget.stories.d.ts +9 -0
  476. package/types/components/manage/Widgets/NumberWidget.test.d.ts +1 -0
  477. package/types/components/manage/Widgets/ObjectBrowserWidget.d.ts +72 -0
  478. package/types/components/manage/Widgets/ObjectBrowserWidget.stories.d.ts +76 -0
  479. package/types/components/manage/Widgets/ObjectBrowserWidget.test.d.ts +1 -0
  480. package/types/components/manage/Widgets/ObjectListWidget.d.ts +30 -0
  481. package/types/components/manage/Widgets/ObjectListWidget.stories.d.ts +79 -0
  482. package/types/components/manage/Widgets/ObjectListWidget.test.d.ts +1 -0
  483. package/types/components/manage/Widgets/ObjectWidget.d.ts +31 -0
  484. package/types/components/manage/Widgets/ObjectWidget.stories.d.ts +13 -0
  485. package/types/components/manage/Widgets/ObjectWidget.test.d.ts +1 -0
  486. package/types/components/manage/Widgets/PasswordWidget.d.ts +4 -0
  487. package/types/components/manage/Widgets/PasswordWidget.stories.d.ts +9 -0
  488. package/types/components/manage/Widgets/PasswordWidget.test.d.ts +1 -0
  489. package/types/components/manage/Widgets/QuerySortOnWidget.d.ts +2 -0
  490. package/types/components/manage/Widgets/QueryWidget.d.ts +81 -0
  491. package/types/components/manage/Widgets/QueryWidget.stories.d.ts +9 -0
  492. package/types/components/manage/Widgets/QuerystringWidget.d.ts +44 -0
  493. package/types/components/manage/Widgets/QuerystringWidget.test.d.ts +1 -0
  494. package/types/components/manage/Widgets/RecurrenceWidget/ByDayField.d.ts +2 -0
  495. package/types/components/manage/Widgets/RecurrenceWidget/ByMonthDayField.d.ts +4 -0
  496. package/types/components/manage/Widgets/RecurrenceWidget/ByMonthField.d.ts +4 -0
  497. package/types/components/manage/Widgets/RecurrenceWidget/ByYearField.d.ts +4 -0
  498. package/types/components/manage/Widgets/RecurrenceWidget/EndField.d.ts +4 -0
  499. package/types/components/manage/Widgets/RecurrenceWidget/IntervalField.d.ts +28 -0
  500. package/types/components/manage/Widgets/RecurrenceWidget/MonthOfTheYearField.d.ts +2 -0
  501. package/types/components/manage/Widgets/RecurrenceWidget/Occurences.d.ts +5 -0
  502. package/types/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.d.ts +2 -0
  503. package/types/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.test.d.ts +1 -0
  504. package/types/components/manage/Widgets/RecurrenceWidget/SelectInput.d.ts +34 -0
  505. package/types/components/manage/Widgets/RecurrenceWidget/Utils.d.ts +61 -0
  506. package/types/components/manage/Widgets/RecurrenceWidget/WeekdayOfTheMonthField.d.ts +2 -0
  507. package/types/components/manage/Widgets/RecurrenceWidget/WeekdayOfTheMonthIndexField.d.ts +4 -0
  508. package/types/components/manage/Widgets/ReferenceWidget.d.ts +2 -0
  509. package/types/components/manage/Widgets/ReferenceWidget.test.d.ts +1 -0
  510. package/types/components/manage/Widgets/RegistryImageWidget.d.ts +4 -0
  511. package/types/components/manage/Widgets/RegistryImageWidget.test.d.ts +1 -0
  512. package/types/components/manage/Widgets/SchemaWidget.d.ts +4 -0
  513. package/types/components/manage/Widgets/SchemaWidget.test.d.ts +1 -0
  514. package/types/components/manage/Widgets/SchemaWidgetFieldset.d.ts +27 -0
  515. package/types/components/manage/Widgets/SchemaWidgetFieldset.test.d.ts +1 -0
  516. package/types/components/manage/Widgets/SelectAutoComplete.d.ts +7 -0
  517. package/types/components/manage/Widgets/SelectAutoComplete.test.d.ts +1 -0
  518. package/types/components/manage/Widgets/SelectAutocompleteWidget.stories.d.ts +29 -0
  519. package/types/components/manage/Widgets/SelectStyling.d.ts +24 -0
  520. package/types/components/manage/Widgets/SelectUtils.d.ts +33 -0
  521. package/types/components/manage/Widgets/SelectUtils.test.d.ts +1 -0
  522. package/types/components/manage/Widgets/SelectWidget.d.ts +5 -0
  523. package/types/components/manage/Widgets/SelectWidget.stories.d.ts +26 -0
  524. package/types/components/manage/Widgets/SelectWidget.test.d.ts +1 -0
  525. package/types/components/manage/Widgets/TextWidget.d.ts +4 -0
  526. package/types/components/manage/Widgets/TextWidget.stories.d.ts +9 -0
  527. package/types/components/manage/Widgets/TextWidget.test.d.ts +1 -0
  528. package/types/components/manage/Widgets/TextareaWidget.d.ts +4 -0
  529. package/types/components/manage/Widgets/TextareaWidget.stories.d.ts +9 -0
  530. package/types/components/manage/Widgets/TextareaWidget.test.d.ts +1 -0
  531. package/types/components/manage/Widgets/TokenWidget.d.ts +4 -0
  532. package/types/components/manage/Widgets/TokenWidget.stories.d.ts +21 -0
  533. package/types/components/manage/Widgets/TokenWidget.test.d.ts +1 -0
  534. package/types/components/manage/Widgets/UrlWidget.d.ts +40 -0
  535. package/types/components/manage/Widgets/UrlWidget.stories.d.ts +9 -0
  536. package/types/components/manage/Widgets/UrlWidget.test.d.ts +1 -0
  537. package/types/components/manage/Widgets/VocabularyTermsWidget.d.ts +2 -0
  538. package/types/components/manage/Widgets/VocabularyTermsWidget.stories.d.ts +9 -0
  539. package/types/components/manage/Widgets/VocabularyTermsWidget.test.d.ts +1 -0
  540. package/types/components/manage/Widgets/WysiwygWidget.d.ts +5 -0
  541. package/types/components/manage/Widgets/WysiwygWidget.stories.d.ts +9 -0
  542. package/types/components/manage/Widgets/WysiwygWidget.test.d.ts +1 -0
  543. package/types/components/manage/Widgets/__mocks__/react-sortable-hoc.d.ts +3 -0
  544. package/types/components/manage/Widgets/story.d.ts +4 -0
  545. package/types/components/manage/Workflow/Workflow.d.ts +2 -0
  546. package/types/components/manage/Workflow/Workflow.test.d.ts +1 -0
  547. package/types/components/manage/WorkingCopyToastsFactory/WorkingCopyToastsFactory.d.ts +2 -0
  548. package/types/components/theme/Anontools/Anontools.d.ts +16 -0
  549. package/types/components/theme/Anontools/Anontools.stories.d.ts +8 -0
  550. package/types/components/theme/Anontools/Anontools.test.d.ts +1 -0
  551. package/types/components/theme/App/App.d.ts +52 -0
  552. package/types/components/theme/App/App.test.d.ts +1 -0
  553. package/types/components/theme/AppExtras/AppExtras.d.ts +2 -0
  554. package/types/components/theme/AppExtras/AppExtras.test.d.ts +1 -0
  555. package/types/components/theme/Avatar/Avatar.d.ts +33 -0
  556. package/types/components/theme/Avatar/Avatar.test.d.ts +1 -0
  557. package/types/components/theme/Breadcrumbs/Breadcrumbs.d.ts +9 -0
  558. package/types/components/theme/Breadcrumbs/Breadcrumbs.stories.d.ts +10 -0
  559. package/types/components/theme/Breadcrumbs/Breadcrumbs.test.d.ts +1 -0
  560. package/types/components/theme/Comments/Comment.stories.d.ts +28 -0
  561. package/types/components/theme/Comments/CommentEditModal.d.ts +18 -0
  562. package/types/components/theme/Comments/CommentEditModal.stories.d.ts +29 -0
  563. package/types/components/theme/Comments/CommentEditModal.test.d.ts +1 -0
  564. package/types/components/theme/Comments/Comments.d.ts +2 -0
  565. package/types/components/theme/Comments/Comments.test.d.ts +1 -0
  566. package/types/components/theme/Component/Component.d.ts +10 -0
  567. package/types/components/theme/Component/Component.test.d.ts +1 -0
  568. package/types/components/theme/ConnectionRefused/ConnectionRefused.d.ts +2 -0
  569. package/types/components/theme/ConnectionRefused/ConnectionRefused.test.d.ts +1 -0
  570. package/types/components/theme/ContactForm/ContactForm.d.ts +2 -0
  571. package/types/components/theme/ContactForm/ContactForm.stories.d.ts +13 -0
  572. package/types/components/theme/ContactForm/ContactForm.test.d.ts +1 -0
  573. package/types/components/theme/ContentMetadataTags/ContentMetadataTags.d.ts +2 -0
  574. package/types/components/theme/CorsError/CorsError.d.ts +7 -0
  575. package/types/components/theme/CorsError/CorsError.test.d.ts +1 -0
  576. package/types/components/theme/Error/Error.d.ts +7 -0
  577. package/types/components/theme/Error/Error.test.d.ts +1 -0
  578. package/types/components/theme/Error/ErrorBoundary.d.ts +12 -0
  579. package/types/components/theme/Error/ErrorBoundary.test.d.ts +1 -0
  580. package/types/components/theme/Error/ServerError.d.ts +2 -0
  581. package/types/components/theme/EventDetails/EventDetails.d.ts +5 -0
  582. package/types/components/theme/EventDetails/EventDetails.stories.d.ts +49 -0
  583. package/types/components/theme/EventDetails/EventDetails.test.d.ts +1 -0
  584. package/types/components/theme/Footer/Footer.d.ts +4 -0
  585. package/types/components/theme/Footer/Footer.test.d.ts +1 -0
  586. package/types/components/theme/Forbidden/Forbidden.d.ts +2 -0
  587. package/types/components/theme/Forbidden/Forbidden.test.d.ts +1 -0
  588. package/types/components/theme/FormattedDate/FormattedDate.d.ts +14 -0
  589. package/types/components/theme/FormattedDate/FormattedDate.stories.d.ts +21 -0
  590. package/types/components/theme/FormattedDate/FormattedRelativeDate.d.ts +11 -0
  591. package/types/components/theme/FormattedDate/FormattedRelativeDate.stories.d.ts +58 -0
  592. package/types/components/theme/Header/Header.d.ts +17 -0
  593. package/types/components/theme/Header/Header.stories.d.ts +12 -0
  594. package/types/components/theme/Header/Header.test.d.ts +1 -0
  595. package/types/components/theme/Icon/Icon.d.ts +55 -0
  596. package/types/components/theme/Icon/Icon.stories.d.ts +13 -0
  597. package/types/components/theme/Icon/Icon.test.d.ts +1 -0
  598. package/types/components/theme/Image/Image.d.ts +23 -0
  599. package/types/components/theme/Image/Image.test.d.ts +1 -0
  600. package/types/components/theme/LanguageSelector/LanguageSelector.d.ts +11 -0
  601. package/types/components/theme/LanguageSelector/LanguageSelector.test.d.ts +1 -0
  602. package/types/components/theme/Login/Login.d.ts +2 -0
  603. package/types/components/theme/Login/Login.stories.d.ts +8 -0
  604. package/types/components/theme/Login/Login.test.d.ts +1 -0
  605. package/types/components/theme/Logo/Logo.Multilingual.test.d.ts +1 -0
  606. package/types/components/theme/Logo/Logo.d.ts +8 -0
  607. package/types/components/theme/Logo/Logo.stories.d.ts +8 -0
  608. package/types/components/theme/Logo/Logo.test.d.ts +1 -0
  609. package/types/components/theme/Logout/Logout.d.ts +4 -0
  610. package/types/components/theme/Logout/Logout.test.d.ts +1 -0
  611. package/types/components/theme/MultilingualRedirector/MultilingualRedirector.d.ts +2 -0
  612. package/types/components/theme/MultilingualRedirector/MultilingualRedirector.test.d.ts +1 -0
  613. package/types/components/theme/Navigation/ContextNavigation.d.ts +13 -0
  614. package/types/components/theme/Navigation/ContextNavigation.stories.d.ts +8 -0
  615. package/types/components/theme/Navigation/ContextNavigation.test.d.ts +1 -0
  616. package/types/components/theme/Navigation/NavItem.d.ts +5 -0
  617. package/types/components/theme/Navigation/NavItems.d.ts +5 -0
  618. package/types/components/theme/Navigation/Navigation.Multilingual.test.d.ts +1 -0
  619. package/types/components/theme/Navigation/Navigation.d.ts +7 -0
  620. package/types/components/theme/Navigation/Navigation.test.d.ts +1 -0
  621. package/types/components/theme/Navigation/withContentNavigation.d.ts +14 -0
  622. package/types/components/theme/NotFound/NotFound.d.ts +2 -0
  623. package/types/components/theme/NotFound/NotFound.test.d.ts +1 -0
  624. package/types/components/theme/OutdatedBrowser/OutdatedBrowser.d.ts +2 -0
  625. package/types/components/theme/Pagination/Pagination.d.ts +4 -0
  626. package/types/components/theme/Pagination/Pagination.test.d.ts +1 -0
  627. package/types/components/theme/PasswordReset/PasswordReset.d.ts +2 -0
  628. package/types/components/theme/PasswordReset/PasswordReset.test.d.ts +1 -0
  629. package/types/components/theme/PasswordReset/RequestPasswordReset.d.ts +2 -0
  630. package/types/components/theme/PasswordReset/RequestPasswordReset.test.d.ts +1 -0
  631. package/types/components/theme/Popup/Popup.d.ts +11 -0
  632. package/types/components/theme/PreviewImage/PreviewImage.d.ts +17 -0
  633. package/types/components/theme/PreviewImage/PreviewImage.test.d.ts +1 -0
  634. package/types/components/theme/Register/Register.d.ts +2 -0
  635. package/types/components/theme/Register/Register.test.d.ts +1 -0
  636. package/types/components/theme/RequestTimeout/RequestTimeout.d.ts +6 -0
  637. package/types/components/theme/RequestTimeout/RequestTimeout.test.d.ts +1 -0
  638. package/types/components/theme/Search/Search.d.ts +5 -0
  639. package/types/components/theme/Search/Search.test.d.ts +1 -0
  640. package/types/components/theme/Search/SearchTags.d.ts +2 -0
  641. package/types/components/theme/Search/SearchTags.test.d.ts +1 -0
  642. package/types/components/theme/SearchWidget/SearchWidget.d.ts +2 -0
  643. package/types/components/theme/SearchWidget/SearchWidget.stories.d.ts +7 -0
  644. package/types/components/theme/SearchWidget/SearchWidget.test.d.ts +1 -0
  645. package/types/components/theme/Sitemap/Sitemap.d.ts +6 -0
  646. package/types/components/theme/Sitemap/Sitemap.test.d.ts +1 -0
  647. package/types/components/theme/SkipLinks/SkipLinks.d.ts +2 -0
  648. package/types/components/theme/SkipLinks/SkipLinks.test.d.ts +1 -0
  649. package/types/components/theme/SocialSharing/SocialSharing.d.ts +17 -0
  650. package/types/components/theme/SocialSharing/SocialSharing.test.d.ts +1 -0
  651. package/types/components/theme/Tags/Tags.d.ts +17 -0
  652. package/types/components/theme/Tags/Tags.test.d.ts +1 -0
  653. package/types/components/theme/Title/Title.d.ts +16 -0
  654. package/types/components/theme/Title/Title.test.d.ts +1 -0
  655. package/types/components/theme/Unauthorized/Unauthorized.d.ts +2 -0
  656. package/types/components/theme/Unauthorized/Unauthorized.test.d.ts +1 -0
  657. package/types/components/theme/View/AlbumView.d.ts +22 -0
  658. package/types/components/theme/View/AlbumView.test.d.ts +1 -0
  659. package/types/components/theme/View/DefaultView.d.ts +4 -0
  660. package/types/components/theme/View/DefaultView.test.d.ts +1 -0
  661. package/types/components/theme/View/EventDatesInfo.d.ts +16 -0
  662. package/types/components/theme/View/EventDatesInfo.test.d.ts +1 -0
  663. package/types/components/theme/View/EventView.d.ts +13 -0
  664. package/types/components/theme/View/EventView.test.d.ts +1 -0
  665. package/types/components/theme/View/FileView.d.ts +15 -0
  666. package/types/components/theme/View/FileView.test.d.ts +1 -0
  667. package/types/components/theme/View/ImageView.d.ts +15 -0
  668. package/types/components/theme/View/ImageView.test.d.ts +1 -0
  669. package/types/components/theme/View/LinkView.d.ts +17 -0
  670. package/types/components/theme/View/LinkView.test.d.ts +1 -0
  671. package/types/components/theme/View/ListingView.d.ts +15 -0
  672. package/types/components/theme/View/ListingView.test.d.ts +1 -0
  673. package/types/components/theme/View/NewsItemView.d.ts +15 -0
  674. package/types/components/theme/View/NewsItemView.test.d.ts +1 -0
  675. package/types/components/theme/View/RenderBlocks.d.ts +2 -0
  676. package/types/components/theme/View/RenderBlocks.test.d.ts +1 -0
  677. package/types/components/theme/View/RenderEmptyBlock.d.ts +2 -0
  678. package/types/components/theme/View/SummaryView.d.ts +13 -0
  679. package/types/components/theme/View/SummaryView.test.d.ts +1 -0
  680. package/types/components/theme/View/TabularView.d.ts +13 -0
  681. package/types/components/theme/View/TabularView.test.d.ts +1 -0
  682. package/types/components/theme/View/View.d.ts +2 -0
  683. package/types/components/theme/View/View.test.d.ts +1 -0
  684. package/types/components/theme/Widgets/ArrayWidget.d.ts +6 -0
  685. package/types/components/theme/Widgets/ArrayWidget.test.d.ts +1 -0
  686. package/types/components/theme/Widgets/BooleanWidget.d.ts +4 -0
  687. package/types/components/theme/Widgets/BooleanWidget.stories.d.ts +8 -0
  688. package/types/components/theme/Widgets/BooleanWidget.test.d.ts +1 -0
  689. package/types/components/theme/Widgets/DateWidget.d.ts +7 -0
  690. package/types/components/theme/Widgets/DateWidget.stories.d.ts +8 -0
  691. package/types/components/theme/Widgets/DateWidget.test.d.ts +1 -0
  692. package/types/components/theme/Widgets/DatetimeWidget.d.ts +7 -0
  693. package/types/components/theme/Widgets/DatetimeWidget.stories.d.ts +8 -0
  694. package/types/components/theme/Widgets/DatetimeWidget.test.d.ts +1 -0
  695. package/types/components/theme/Widgets/DescriptionWidget.d.ts +6 -0
  696. package/types/components/theme/Widgets/DescriptionWidget.stories.d.ts +8 -0
  697. package/types/components/theme/Widgets/DescriptionWidget.test.d.ts +1 -0
  698. package/types/components/theme/Widgets/EmailWidget.d.ts +6 -0
  699. package/types/components/theme/Widgets/EmailWidget.stories.d.ts +8 -0
  700. package/types/components/theme/Widgets/EmailWidget.test.d.ts +1 -0
  701. package/types/components/theme/Widgets/FileWidget.d.ts +6 -0
  702. package/types/components/theme/Widgets/FileWidget.stories.d.ts +8 -0
  703. package/types/components/theme/Widgets/FileWidget.test.d.ts +1 -0
  704. package/types/components/theme/Widgets/ImageWidget.d.ts +5 -0
  705. package/types/components/theme/Widgets/ImageWidget.stories.d.ts +8 -0
  706. package/types/components/theme/Widgets/ImageWidget.test.d.ts +1 -0
  707. package/types/components/theme/Widgets/PasswordWidget.d.ts +6 -0
  708. package/types/components/theme/Widgets/PasswordWidget.stories.d.ts +8 -0
  709. package/types/components/theme/Widgets/PasswordWidget.test.d.ts +1 -0
  710. package/types/components/theme/Widgets/RelationWidget.d.ts +6 -0
  711. package/types/components/theme/Widgets/RelationWidget.stories.d.ts +51 -0
  712. package/types/components/theme/Widgets/RelationWidget.test.d.ts +1 -0
  713. package/types/components/theme/Widgets/RelationsWidget.d.ts +6 -0
  714. package/types/components/theme/Widgets/RelationsWidget.stories.d.ts +8 -0
  715. package/types/components/theme/Widgets/RelationsWidget.test.d.ts +1 -0
  716. package/types/components/theme/Widgets/RichTextWidget.d.ts +5 -0
  717. package/types/components/theme/Widgets/RichTextWidget.stories.d.ts +8 -0
  718. package/types/components/theme/Widgets/RichTextWidget.test.d.ts +1 -0
  719. package/types/components/theme/Widgets/SelectWidget.d.ts +6 -0
  720. package/types/components/theme/Widgets/SelectWidget.stories.d.ts +8 -0
  721. package/types/components/theme/Widgets/SelectWidget.test.d.ts +1 -0
  722. package/types/components/theme/Widgets/TextWidget.d.ts +6 -0
  723. package/types/components/theme/Widgets/TextWidget.stories.d.ts +8 -0
  724. package/types/components/theme/Widgets/TextWidget.test.d.ts +1 -0
  725. package/types/components/theme/Widgets/TitleWidget.d.ts +6 -0
  726. package/types/components/theme/Widgets/TitleWidget.stories.d.ts +8 -0
  727. package/types/components/theme/Widgets/TitleWidget.test.d.ts +1 -0
  728. package/types/components/theme/Widgets/TokenWidget.d.ts +6 -0
  729. package/types/components/theme/Widgets/TokenWidget.stories.d.ts +8 -0
  730. package/types/components/theme/Widgets/TokenWidget.test.d.ts +1 -0
  731. package/types/components/theme/Widgets/UrlWidget.d.ts +6 -0
  732. package/types/components/theme/Widgets/UrlWidget.stories.d.ts +8 -0
  733. package/types/components/theme/Widgets/UrlWidget.test.d.ts +1 -0
  734. package/types/config/Blocks.d.ts +53 -0
  735. package/types/config/Components.d.ts +11 -0
  736. package/types/config/ContentIcons.d.ts +9 -0
  737. package/types/config/ControlPanels.d.ts +25 -0
  738. package/types/config/Loadables.d.ts +30 -0
  739. package/types/config/NonContentRoutes.d.ts +1 -0
  740. package/types/config/RichTextEditor/Blocks.d.ts +5 -0
  741. package/types/config/RichTextEditor/FromHTML.d.ts +3 -0
  742. package/types/config/RichTextEditor/Plugins.d.ts +5 -0
  743. package/types/config/RichTextEditor/Styles.d.ts +10 -0
  744. package/types/config/RichTextEditor/ToHTML.d.ts +75 -0
  745. package/types/config/RichTextEditor/index.d.ts +16 -0
  746. package/types/config/Style.d.ts +7 -0
  747. package/types/config/Views.d.ts +43 -0
  748. package/types/config/Widgets.d.ts +102 -0
  749. package/types/config/Workflows.d.ts +49 -0
  750. package/types/config/index.d.ts +1 -0
  751. package/types/config/server.d.ts +16 -0
  752. package/types/constants/ActionTypes.d.ts +139 -0
  753. package/types/constants/Indexes.d.ts +139 -0
  754. package/types/constants/Languages.d.ts +14 -0
  755. package/types/error.d.ts +4 -0
  756. package/types/express-middleware/devproxy.d.ts +1 -0
  757. package/types/express-middleware/files.d.ts +1 -0
  758. package/types/express-middleware/images.d.ts +1 -0
  759. package/types/express-middleware/ok.d.ts +1 -0
  760. package/types/express-middleware/robotstxt.d.ts +1 -0
  761. package/types/express-middleware/sitemap.d.ts +3 -0
  762. package/types/express-middleware/static.d.ts +1 -0
  763. package/types/helpers/Api/APIResourceWithAuth.d.ts +1 -0
  764. package/types/helpers/Api/Api.d.ts +13 -0
  765. package/types/helpers/Api/Api.plone.rest.test.d.ts +1 -0
  766. package/types/helpers/Api/Api.test.d.ts +1 -0
  767. package/types/helpers/AsyncConnect/AsyncConnect.d.ts +49 -0
  768. package/types/helpers/AsyncConnect/AsyncConnect.test.d.ts +1 -0
  769. package/types/helpers/AsyncConnect/index.d.ts +19 -0
  770. package/types/helpers/AsyncConnect/ssr.d.ts +8 -0
  771. package/types/helpers/AsyncConnect/utils.d.ts +5 -0
  772. package/types/helpers/AuthToken/AuthToken.d.ts +13 -0
  773. package/types/helpers/AuthToken/AuthToken.test.d.ts +1 -0
  774. package/types/helpers/Blocks/Blocks.d.ts +149 -0
  775. package/types/helpers/Blocks/Blocks.test.d.ts +1 -0
  776. package/types/helpers/BodyClass/BodyClass.d.ts +2 -0
  777. package/types/helpers/Content/Content.d.ts +31 -0
  778. package/types/helpers/Content/Content.test.d.ts +1 -0
  779. package/types/helpers/Cookies/cookies.d.ts +5 -0
  780. package/types/helpers/Extensions/index.d.ts +2 -0
  781. package/types/helpers/Extensions/withBlockExtensions.d.ts +44 -0
  782. package/types/helpers/Extensions/withBlockExtensions.test.d.ts +1 -0
  783. package/types/helpers/Extensions/withBlockSchemaEnhancer.d.ts +49 -0
  784. package/types/helpers/Extensions/withBlockSchemaEnhancer.test.d.ts +1 -0
  785. package/types/helpers/FormValidation/FormValidation.d.ts +26 -0
  786. package/types/helpers/FormValidation/FormValidation.test.d.ts +1 -0
  787. package/types/helpers/Helmet/Helmet.d.ts +72 -0
  788. package/types/helpers/Helmet/HelmetConstants.d.ts +54 -0
  789. package/types/helpers/Helmet/HelmetUtils.d.ts +69 -0
  790. package/types/helpers/Html/Html.d.ts +52 -0
  791. package/types/helpers/Html/Html.test.d.ts +1 -0
  792. package/types/helpers/LanguageMap/LanguageMap.d.ts +879 -0
  793. package/types/helpers/LanguageMap/LanguageMap.test.d.ts +1 -0
  794. package/types/helpers/Loadable/Loadable.d.ts +3 -0
  795. package/types/helpers/Loadable/__mocks__/Loadable.d.ts +3 -0
  796. package/types/helpers/Loadable/index.d.ts +1 -0
  797. package/types/helpers/MessageLabels/MessageLabels.d.ts +540 -0
  798. package/types/helpers/Proxy/Proxy.d.ts +1 -0
  799. package/types/helpers/Robots/Robots.d.ts +1 -0
  800. package/types/helpers/ScrollToTop/ScrollToTop.d.ts +2 -0
  801. package/types/helpers/Site/index.d.ts +4 -0
  802. package/types/helpers/Sitemap/Sitemap.d.ts +3 -0
  803. package/types/helpers/UndoManager/useUndoManager.d.ts +10 -0
  804. package/types/helpers/Url/Url.d.ts +145 -0
  805. package/types/helpers/Url/Url.test.d.ts +1 -0
  806. package/types/helpers/Url/urlRegex.d.ts +3 -0
  807. package/types/helpers/User/User.d.ts +6 -0
  808. package/types/helpers/Utils/Date.d.ts +34 -0
  809. package/types/helpers/Utils/Date.test.d.ts +1 -0
  810. package/types/helpers/Utils/UseDetectClickOutside.stories.d.ts +11 -0
  811. package/types/helpers/Utils/Utils.d.ts +53 -0
  812. package/types/helpers/Utils/Utils.test.d.ts +1 -0
  813. package/types/helpers/Utils/useDetectClickOutside.d.ts +11 -0
  814. package/types/helpers/Utils/useEvent.d.ts +4 -0
  815. package/types/helpers/Utils/usePagination.d.ts +4 -0
  816. package/types/helpers/Utils/usePagination.test.d.ts +1 -0
  817. package/types/helpers/Utils/usePrevious.d.ts +4 -0
  818. package/types/helpers/Utils/usePrevious.test.d.ts +1 -0
  819. package/types/helpers/Vocabularies/Vocabularies.d.ts +41 -0
  820. package/types/helpers/Widget/utils.d.ts +1 -0
  821. package/types/helpers/Widget/utils.test.d.ts +1 -0
  822. package/types/helpers/Widget/widget.d.ts +1 -0
  823. package/types/helpers/Workflows/Workflows.d.ts +21 -0
  824. package/types/helpers/Workflows/Workflows.test.d.ts +1 -0
  825. package/types/helpers/index.d.ts +16 -0
  826. package/types/hooks/client/useClient.d.ts +1 -0
  827. package/types/hooks/clipboard/useClipboard.d.ts +1 -0
  828. package/types/hooks/index.d.ts +1 -0
  829. package/types/icons/load-icons.d.ts +2 -0
  830. package/types/index.d.ts +1 -0
  831. package/types/middleware/Api.test.d.ts +1 -0
  832. package/types/middleware/api.d.ts +24 -0
  833. package/types/middleware/blacklistRoutes.d.ts +5 -0
  834. package/types/middleware/index.d.ts +1 -0
  835. package/types/middleware/storeProtectLoadUtils.d.ts +9 -0
  836. package/types/middleware/storeProtectLoadUtils.test.d.ts +1 -0
  837. package/types/reducers/actions/actions.d.ts +8 -0
  838. package/types/reducers/actions/actions.test.d.ts +1 -0
  839. package/types/reducers/addons/addons.d.ts +8 -0
  840. package/types/reducers/aliases/aliases.d.ts +8 -0
  841. package/types/reducers/aliases/aliases.test.d.ts +1 -0
  842. package/types/reducers/apierror/apierror.d.ts +8 -0
  843. package/types/reducers/apierror/apierror.test.d.ts +1 -0
  844. package/types/reducers/asyncConnect/asyncConnect.d.ts +7 -0
  845. package/types/reducers/authRole/authRole.d.ts +8 -0
  846. package/types/reducers/authRole/authRole.test.d.ts +1 -0
  847. package/types/reducers/blocksClipboard/blocksClipboard.d.ts +1 -0
  848. package/types/reducers/breadcrumbs/breadcrumbs.d.ts +8 -0
  849. package/types/reducers/breadcrumbs/breadcrumbs.test.d.ts +1 -0
  850. package/types/reducers/browserdetect/browserdetect.d.ts +8 -0
  851. package/types/reducers/clipboard/clipboard.d.ts +8 -0
  852. package/types/reducers/clipboard/clipboard.test.d.ts +1 -0
  853. package/types/reducers/comments/comments.d.ts +8 -0
  854. package/types/reducers/comments/comments.test.d.ts +1 -0
  855. package/types/reducers/content/content.d.ts +8 -0
  856. package/types/reducers/content/content.test.d.ts +1 -0
  857. package/types/reducers/contentRulesEvents/contentRulesEvents.d.ts +8 -0
  858. package/types/reducers/contextNavigation/contextNavigation.d.ts +8 -0
  859. package/types/reducers/contextNavigation/contextNavigation.test.d.ts +1 -0
  860. package/types/reducers/controlPanelRule/controlPanelRule.d.ts +8 -0
  861. package/types/reducers/controlPanelRules/controlPanelRules.d.ts +8 -0
  862. package/types/reducers/controlpanels/controlpanels.d.ts +8 -0
  863. package/types/reducers/controlpanels/controlpanels.test.d.ts +1 -0
  864. package/types/reducers/diff/diff.d.ts +8 -0
  865. package/types/reducers/diff/diff.test.d.ts +1 -0
  866. package/types/reducers/emailNotification/emailNotification.d.ts +8 -0
  867. package/types/reducers/emailNotification/emailNotification.test.d.ts +1 -0
  868. package/types/reducers/emailSend/emailSend.d.ts +8 -0
  869. package/types/reducers/emailSend/emailSend.test.d.ts +1 -0
  870. package/types/reducers/form/form.d.ts +7 -0
  871. package/types/reducers/form/form.test.d.ts +1 -0
  872. package/types/reducers/groups/groups.d.ts +8 -0
  873. package/types/reducers/groups/groups.test.d.ts +1 -0
  874. package/types/reducers/history/history.d.ts +8 -0
  875. package/types/reducers/history/history.test.d.ts +1 -0
  876. package/types/reducers/index.d.ts +58 -0
  877. package/types/reducers/lazyLibraries/lazyLibraries.d.ts +1 -0
  878. package/types/reducers/messages/messages.d.ts +8 -0
  879. package/types/reducers/messages/messages.test.d.ts +1 -0
  880. package/types/reducers/navigation/navigation.d.ts +8 -0
  881. package/types/reducers/navigation/navigation.test.d.ts +1 -0
  882. package/types/reducers/navroot/navroot.d.ts +8 -0
  883. package/types/reducers/navroot/navroot.test.d.ts +1 -0
  884. package/types/reducers/querystring/querystring.d.ts +8 -0
  885. package/types/reducers/querystring/querystring.test.d.ts +1 -0
  886. package/types/reducers/querystringsearch/querystringsearch.d.ts +8 -0
  887. package/types/reducers/querystringsearch/querystringsearch.test.d.ts +1 -0
  888. package/types/reducers/relations/relations.d.ts +8 -0
  889. package/types/reducers/roles/roles.d.ts +8 -0
  890. package/types/reducers/roles/roles.test.d.ts +1 -0
  891. package/types/reducers/rules/rules.d.ts +8 -0
  892. package/types/reducers/schema/schema.d.ts +8 -0
  893. package/types/reducers/schema/schema.test.d.ts +1 -0
  894. package/types/reducers/search/search.d.ts +8 -0
  895. package/types/reducers/search/search.test.d.ts +1 -0
  896. package/types/reducers/sharing/sharing.d.ts +8 -0
  897. package/types/reducers/sharing/sharing.test.d.ts +1 -0
  898. package/types/reducers/sidebar/sidebar.d.ts +8 -0
  899. package/types/reducers/sidebar/sidebar.test.d.ts +1 -0
  900. package/types/reducers/site/site.d.ts +8 -0
  901. package/types/reducers/site/site.test.d.ts +1 -0
  902. package/types/reducers/toolbar/toolbar.d.ts +8 -0
  903. package/types/reducers/toolbar/toolbar.test.d.ts +1 -0
  904. package/types/reducers/transactions/transactions.d.ts +8 -0
  905. package/types/reducers/transactions/transactions.test.d.ts +1 -0
  906. package/types/reducers/types/types.d.ts +8 -0
  907. package/types/reducers/types/types.test.d.ts +1 -0
  908. package/types/reducers/upgrade/upgrade.d.ts +8 -0
  909. package/types/reducers/userSession/userSession.d.ts +8 -0
  910. package/types/reducers/userSession/userSession.test.d.ts +1 -0
  911. package/types/reducers/users/users.d.ts +8 -0
  912. package/types/reducers/users/users.test.d.ts +1 -0
  913. package/types/reducers/userschema/userschema.d.ts +8 -0
  914. package/types/reducers/vocabularies/vocabularies.d.ts +8 -0
  915. package/types/reducers/vocabularies/vocabularies.test.d.ts +1 -0
  916. package/types/reducers/workflow/workflow.d.ts +8 -0
  917. package/types/reducers/workflow/workflow.test.d.ts +1 -0
  918. package/types/reducers/workingcopy/workingcopy.d.ts +8 -0
  919. package/types/reducers/workingcopy/workingcopy.test.d.ts +1 -0
  920. package/types/registry.d.ts +34 -0
  921. package/types/registry.test.d.ts +1 -0
  922. package/types/routes.d.ts +27 -0
  923. package/types/routes.test.d.ts +1 -0
  924. package/types/runtime_config.d.ts +1 -0
  925. package/types/server.d.ts +3 -0
  926. package/types/start-client.d.ts +2 -0
  927. package/types/start-server.d.ts +1 -0
  928. package/types/store.d.ts +4 -0
  929. package/types/storybook.d.ts +2107 -0
  930. package/types/theme.d.ts +1 -0
@@ -0,0 +1,2107 @@
1
+ /**
2
+ * Wrapper container class.
3
+ * @class Wrapper
4
+ * @extends Component
5
+ */
6
+ export default class Wrapper extends Component<any, any, any> {
7
+ /**
8
+ * Property types.
9
+ * @property {Object} propTypes Property types.
10
+ * @static
11
+ */
12
+ static propTypes: {
13
+ pathname: any;
14
+ anonymous: any;
15
+ customStore: any;
16
+ };
17
+ constructor(props: any);
18
+ constructor(props: any, context: any);
19
+ customState(): {
20
+ router: {
21
+ location: {
22
+ pathname: string;
23
+ search: string;
24
+ hash: string;
25
+ key: string;
26
+ query: {};
27
+ };
28
+ action: string;
29
+ };
30
+ intl: {
31
+ defaultLocale: string;
32
+ locale: string;
33
+ messages: {};
34
+ };
35
+ reduxAsyncConnect: {
36
+ loaded: boolean;
37
+ loadState: {
38
+ breadcrumbs: {
39
+ loading: boolean;
40
+ loaded: boolean;
41
+ error: any;
42
+ };
43
+ content: {
44
+ loading: boolean;
45
+ loaded: boolean;
46
+ error: any;
47
+ };
48
+ navigation: {
49
+ loading: boolean;
50
+ loaded: boolean;
51
+ error: any;
52
+ };
53
+ workflow: {
54
+ loading: boolean;
55
+ loaded: boolean;
56
+ error: any;
57
+ };
58
+ };
59
+ breadcrumbs: {
60
+ '@id': string;
61
+ items: any[];
62
+ };
63
+ content: {
64
+ '@components': {
65
+ actions: {
66
+ '@id': string;
67
+ };
68
+ breadcrumbs: {
69
+ '@id': string;
70
+ };
71
+ navigation: {
72
+ '@id': string;
73
+ };
74
+ };
75
+ '@id': string;
76
+ '@type': string;
77
+ blocks: {
78
+ '0358abe2-b4f1-463d-a279-a63ea80daf19': {
79
+ '@type': string;
80
+ };
81
+ '07c273fc-8bfc-4e7d-a327-d513e5a945bb': {
82
+ '@type': string;
83
+ };
84
+ '2dfe8e4c-5bf6-43f1-93e1-6c320ede7226': {
85
+ '@type': string;
86
+ text: {
87
+ blocks: {
88
+ data: {};
89
+ depth: number;
90
+ entityRanges: any[];
91
+ inlineStyleRanges: {
92
+ length: number;
93
+ offset: number;
94
+ style: string;
95
+ }[];
96
+ key: string;
97
+ text: string;
98
+ type: string;
99
+ }[];
100
+ entityMap: {};
101
+ };
102
+ };
103
+ '3c881f51-f75b-4959-834a-6e1d5edc32ae': {
104
+ '@type': string;
105
+ text: {
106
+ blocks: {
107
+ data: {};
108
+ depth: number;
109
+ entityRanges: any[];
110
+ inlineStyleRanges: {
111
+ length: number;
112
+ offset: number;
113
+ style: string;
114
+ }[];
115
+ key: string;
116
+ text: string;
117
+ type: string;
118
+ }[];
119
+ entityMap: {};
120
+ };
121
+ };
122
+ '5e1c30b1-ec6c-4dc0-9483-9768c3c416e4': {
123
+ '@type': string;
124
+ text: {
125
+ blocks: {
126
+ data: {};
127
+ depth: number;
128
+ entityRanges: {
129
+ key: number;
130
+ length: number;
131
+ offset: number;
132
+ }[];
133
+ inlineStyleRanges: any[];
134
+ key: string;
135
+ text: string;
136
+ type: string;
137
+ }[];
138
+ entityMap: {
139
+ 0: {
140
+ data: {
141
+ href: string;
142
+ rel: string;
143
+ url: string;
144
+ };
145
+ mutability: string;
146
+ type: string;
147
+ };
148
+ 1: {
149
+ data: {
150
+ href: string;
151
+ url: string;
152
+ };
153
+ mutability: string;
154
+ type: string;
155
+ };
156
+ };
157
+ };
158
+ };
159
+ '61cc1bc0-d4f5-4e2b-9152-79512045a4dd': {
160
+ '@type': string;
161
+ text: {
162
+ blocks: {
163
+ data: {};
164
+ depth: number;
165
+ entityRanges: any[];
166
+ inlineStyleRanges: any[];
167
+ key: string;
168
+ text: string;
169
+ type: string;
170
+ }[];
171
+ entityMap: {};
172
+ };
173
+ };
174
+ '874049e7-629e-489a-b46c-1adf35ad40ee': {
175
+ '@type': string;
176
+ text: {
177
+ blocks: {
178
+ data: {};
179
+ depth: number;
180
+ entityRanges: any[];
181
+ inlineStyleRanges: any[];
182
+ key: string;
183
+ text: string;
184
+ type: string;
185
+ }[];
186
+ entityMap: {};
187
+ };
188
+ };
189
+ '942b6530-2407-420f-9c24-597adda6b2ce': {
190
+ '@type': string;
191
+ text: {
192
+ blocks: {
193
+ data: {};
194
+ depth: number;
195
+ entityRanges: {
196
+ key: number;
197
+ length: number;
198
+ offset: number;
199
+ }[];
200
+ inlineStyleRanges: any[];
201
+ key: string;
202
+ text: string;
203
+ type: string;
204
+ }[];
205
+ entityMap: {
206
+ 0: {
207
+ data: {
208
+ href: string;
209
+ url: string;
210
+ };
211
+ mutability: string;
212
+ type: string;
213
+ };
214
+ };
215
+ };
216
+ };
217
+ '9a976b8e-72ba-468a-bea8-b37a31bb386b': {
218
+ '@type': string;
219
+ text: {
220
+ blocks: {
221
+ data: {};
222
+ depth: number;
223
+ entityRanges: any[];
224
+ inlineStyleRanges: {
225
+ length: number;
226
+ offset: number;
227
+ style: string;
228
+ }[];
229
+ key: string;
230
+ text: string;
231
+ type: string;
232
+ }[];
233
+ entityMap: {};
234
+ };
235
+ };
236
+ 'b3717238-448f-406e-b06f-57a9715c3326': {
237
+ '@type': string;
238
+ text: {
239
+ blocks: {
240
+ data: {};
241
+ depth: number;
242
+ entityRanges: {
243
+ key: number;
244
+ length: number;
245
+ offset: number;
246
+ }[];
247
+ inlineStyleRanges: any[];
248
+ key: string;
249
+ text: string;
250
+ type: string;
251
+ }[];
252
+ entityMap: {
253
+ 0: {
254
+ data: {
255
+ href: string;
256
+ url: string;
257
+ };
258
+ mutability: string;
259
+ type: string;
260
+ };
261
+ };
262
+ };
263
+ };
264
+ 'c049ff8b-3e5a-4cfb-bca6-e4a6cca9be28': {
265
+ '@type': string;
266
+ text: {
267
+ blocks: {
268
+ data: {};
269
+ depth: number;
270
+ entityRanges: any[];
271
+ inlineStyleRanges: any[];
272
+ key: string;
273
+ text: string;
274
+ type: string;
275
+ }[];
276
+ entityMap: {};
277
+ };
278
+ };
279
+ 'c91f0fe9-f2e9-4a17-84a5-8e4f2678ed3c': {
280
+ '@type': string;
281
+ text: {
282
+ blocks: {
283
+ data: {};
284
+ depth: number;
285
+ entityRanges: any[];
286
+ inlineStyleRanges: {
287
+ length: number;
288
+ offset: number;
289
+ style: string;
290
+ }[];
291
+ key: string;
292
+ text: string;
293
+ type: string;
294
+ }[];
295
+ entityMap: {};
296
+ };
297
+ };
298
+ 'e0ca2fbc-7800-4b9b-afe5-8e42af9f5dd6': {
299
+ '@type': string;
300
+ text: {
301
+ blocks: {
302
+ data: {};
303
+ depth: number;
304
+ entityRanges: any[];
305
+ inlineStyleRanges: any[];
306
+ key: string;
307
+ text: string;
308
+ type: string;
309
+ }[];
310
+ entityMap: {};
311
+ };
312
+ };
313
+ 'effbdcdc-253c-41a7-841e-5edb3b56ce32': {
314
+ '@type': string;
315
+ text: {
316
+ blocks: {
317
+ data: {};
318
+ depth: number;
319
+ entityRanges: {
320
+ key: number;
321
+ length: number;
322
+ offset: number;
323
+ }[];
324
+ inlineStyleRanges: any[];
325
+ key: string;
326
+ text: string;
327
+ type: string;
328
+ }[];
329
+ entityMap: {
330
+ 0: {
331
+ data: {
332
+ href: string;
333
+ rel: string;
334
+ url: string;
335
+ };
336
+ mutability: string;
337
+ type: string;
338
+ };
339
+ };
340
+ };
341
+ };
342
+ };
343
+ blocks_layout: {
344
+ items: string[];
345
+ };
346
+ description: string;
347
+ id: string;
348
+ is_folderish: boolean;
349
+ items: {
350
+ '@id': string;
351
+ '@type': string;
352
+ description: string;
353
+ review_state: string;
354
+ title: string;
355
+ }[];
356
+ items_total: number;
357
+ parent: {};
358
+ title: string;
359
+ };
360
+ navigation: {
361
+ '@id': string;
362
+ items: {
363
+ '@id': string;
364
+ description: string;
365
+ title: string;
366
+ }[];
367
+ };
368
+ workflow: {
369
+ '@id': string;
370
+ history: any[];
371
+ transitions: any[];
372
+ };
373
+ };
374
+ actions: {
375
+ error: any;
376
+ actions: {
377
+ document_actions: any[];
378
+ object: {
379
+ icon: string;
380
+ id: string;
381
+ title: string;
382
+ }[];
383
+ object_buttons: any[];
384
+ portal_tabs: {
385
+ icon: string;
386
+ id: string;
387
+ title: string;
388
+ }[];
389
+ site_actions: {
390
+ icon: string;
391
+ id: string;
392
+ title: string;
393
+ }[];
394
+ user: {
395
+ icon: string;
396
+ id: string;
397
+ title: string;
398
+ }[];
399
+ };
400
+ loaded: boolean;
401
+ loading: boolean;
402
+ };
403
+ addons: {
404
+ error: any;
405
+ installedAddons: any[];
406
+ availableAddons: any[];
407
+ upgradableAddons: any[];
408
+ loaded: boolean;
409
+ loading: boolean;
410
+ };
411
+ apierror: {
412
+ error: any;
413
+ statusCode: any;
414
+ connectionRefused: boolean;
415
+ message: any;
416
+ };
417
+ breadcrumbs: {
418
+ error: any;
419
+ items: {
420
+ title: string;
421
+ url: string;
422
+ }[];
423
+ loaded: boolean;
424
+ loading: boolean;
425
+ };
426
+ browserdetect: {
427
+ name: string;
428
+ version: string;
429
+ os: string;
430
+ type: string;
431
+ };
432
+ comments: {
433
+ add: {
434
+ loaded: boolean;
435
+ loading: boolean;
436
+ error: any;
437
+ };
438
+ delete: {
439
+ loaded: boolean;
440
+ loading: boolean;
441
+ error: any;
442
+ };
443
+ update: {
444
+ loaded: boolean;
445
+ loading: boolean;
446
+ error: any;
447
+ };
448
+ list: {
449
+ loaded: boolean;
450
+ loading: boolean;
451
+ error: any;
452
+ };
453
+ items: any[];
454
+ };
455
+ content: {
456
+ unlock: {
457
+ loaded: boolean;
458
+ loading: boolean;
459
+ error: any;
460
+ };
461
+ create: {
462
+ loaded: boolean;
463
+ loading: boolean;
464
+ error: any;
465
+ };
466
+ delete: {
467
+ loaded: boolean;
468
+ loading: boolean;
469
+ error: any;
470
+ };
471
+ update: {
472
+ loaded: boolean;
473
+ loading: boolean;
474
+ error: any;
475
+ };
476
+ get: {
477
+ loading: boolean;
478
+ loaded: boolean;
479
+ error: any;
480
+ };
481
+ order: {
482
+ loaded: boolean;
483
+ loading: boolean;
484
+ error: any;
485
+ };
486
+ data: {
487
+ '@components': {
488
+ actions: {
489
+ '@id': string;
490
+ };
491
+ breadcrumbs: {
492
+ '@id': string;
493
+ };
494
+ navigation: {
495
+ '@id': string;
496
+ };
497
+ };
498
+ '@id': string;
499
+ '@type': string;
500
+ blocks: {
501
+ '0358abe2-b4f1-463d-a279-a63ea80daf19': {
502
+ '@type': string;
503
+ };
504
+ '07c273fc-8bfc-4e7d-a327-d513e5a945bb': {
505
+ '@type': string;
506
+ };
507
+ '2dfe8e4c-5bf6-43f1-93e1-6c320ede7226': {
508
+ '@type': string;
509
+ text: {
510
+ blocks: {
511
+ data: {};
512
+ depth: number;
513
+ entityRanges: any[];
514
+ inlineStyleRanges: {
515
+ length: number;
516
+ offset: number;
517
+ style: string;
518
+ }[];
519
+ key: string;
520
+ text: string;
521
+ type: string;
522
+ }[];
523
+ entityMap: {};
524
+ };
525
+ };
526
+ '3c881f51-f75b-4959-834a-6e1d5edc32ae': {
527
+ '@type': string;
528
+ text: {
529
+ blocks: {
530
+ data: {};
531
+ depth: number;
532
+ entityRanges: any[];
533
+ inlineStyleRanges: {
534
+ length: number;
535
+ offset: number;
536
+ style: string;
537
+ }[];
538
+ key: string;
539
+ text: string;
540
+ type: string;
541
+ }[];
542
+ entityMap: {};
543
+ };
544
+ };
545
+ '5e1c30b1-ec6c-4dc0-9483-9768c3c416e4': {
546
+ '@type': string;
547
+ text: {
548
+ blocks: {
549
+ data: {};
550
+ depth: number;
551
+ entityRanges: {
552
+ key: number;
553
+ length: number;
554
+ offset: number;
555
+ }[];
556
+ inlineStyleRanges: any[];
557
+ key: string;
558
+ text: string;
559
+ type: string;
560
+ }[];
561
+ entityMap: {
562
+ 0: {
563
+ data: {
564
+ href: string;
565
+ rel: string;
566
+ url: string;
567
+ };
568
+ mutability: string;
569
+ type: string;
570
+ };
571
+ 1: {
572
+ data: {
573
+ href: string;
574
+ url: string;
575
+ };
576
+ mutability: string;
577
+ type: string;
578
+ };
579
+ };
580
+ };
581
+ };
582
+ '61cc1bc0-d4f5-4e2b-9152-79512045a4dd': {
583
+ '@type': string;
584
+ text: {
585
+ blocks: {
586
+ data: {};
587
+ depth: number;
588
+ entityRanges: any[];
589
+ inlineStyleRanges: any[];
590
+ key: string;
591
+ text: string;
592
+ type: string;
593
+ }[];
594
+ entityMap: {};
595
+ };
596
+ };
597
+ '874049e7-629e-489a-b46c-1adf35ad40ee': {
598
+ '@type': string;
599
+ text: {
600
+ blocks: {
601
+ data: {};
602
+ depth: number;
603
+ entityRanges: any[];
604
+ inlineStyleRanges: any[];
605
+ key: string;
606
+ text: string;
607
+ type: string;
608
+ }[];
609
+ entityMap: {};
610
+ };
611
+ };
612
+ '942b6530-2407-420f-9c24-597adda6b2ce': {
613
+ '@type': string;
614
+ text: {
615
+ blocks: {
616
+ data: {};
617
+ depth: number;
618
+ entityRanges: {
619
+ key: number;
620
+ length: number;
621
+ offset: number;
622
+ }[];
623
+ inlineStyleRanges: any[];
624
+ key: string;
625
+ text: string;
626
+ type: string;
627
+ }[];
628
+ entityMap: {
629
+ 0: {
630
+ data: {
631
+ href: string;
632
+ url: string;
633
+ };
634
+ mutability: string;
635
+ type: string;
636
+ };
637
+ };
638
+ };
639
+ };
640
+ '9a976b8e-72ba-468a-bea8-b37a31bb386b': {
641
+ '@type': string;
642
+ text: {
643
+ blocks: {
644
+ data: {};
645
+ depth: number;
646
+ entityRanges: any[];
647
+ inlineStyleRanges: {
648
+ length: number;
649
+ offset: number;
650
+ style: string;
651
+ }[];
652
+ key: string;
653
+ text: string;
654
+ type: string;
655
+ }[];
656
+ entityMap: {};
657
+ };
658
+ };
659
+ 'b3717238-448f-406e-b06f-57a9715c3326': {
660
+ '@type': string;
661
+ text: {
662
+ blocks: {
663
+ data: {};
664
+ depth: number;
665
+ entityRanges: {
666
+ key: number;
667
+ length: number;
668
+ offset: number;
669
+ }[];
670
+ inlineStyleRanges: any[];
671
+ key: string;
672
+ text: string;
673
+ type: string;
674
+ }[];
675
+ entityMap: {
676
+ 0: {
677
+ data: {
678
+ href: string;
679
+ url: string;
680
+ };
681
+ mutability: string;
682
+ type: string;
683
+ };
684
+ };
685
+ };
686
+ };
687
+ 'c049ff8b-3e5a-4cfb-bca6-e4a6cca9be28': {
688
+ '@type': string;
689
+ text: {
690
+ blocks: {
691
+ data: {};
692
+ depth: number;
693
+ entityRanges: any[];
694
+ inlineStyleRanges: any[];
695
+ key: string;
696
+ text: string;
697
+ type: string;
698
+ }[];
699
+ entityMap: {};
700
+ };
701
+ };
702
+ 'c91f0fe9-f2e9-4a17-84a5-8e4f2678ed3c': {
703
+ '@type': string;
704
+ text: {
705
+ blocks: {
706
+ data: {};
707
+ depth: number;
708
+ entityRanges: any[];
709
+ inlineStyleRanges: {
710
+ length: number;
711
+ offset: number;
712
+ style: string;
713
+ }[];
714
+ key: string;
715
+ text: string;
716
+ type: string;
717
+ }[];
718
+ entityMap: {};
719
+ };
720
+ };
721
+ 'e0ca2fbc-7800-4b9b-afe5-8e42af9f5dd6': {
722
+ '@type': string;
723
+ text: {
724
+ blocks: {
725
+ data: {};
726
+ depth: number;
727
+ entityRanges: any[];
728
+ inlineStyleRanges: any[];
729
+ key: string;
730
+ text: string;
731
+ type: string;
732
+ }[];
733
+ entityMap: {};
734
+ };
735
+ };
736
+ 'effbdcdc-253c-41a7-841e-5edb3b56ce32': {
737
+ '@type': string;
738
+ text: {
739
+ blocks: {
740
+ data: {};
741
+ depth: number;
742
+ entityRanges: {
743
+ key: number;
744
+ length: number;
745
+ offset: number;
746
+ }[];
747
+ inlineStyleRanges: any[];
748
+ key: string;
749
+ text: string;
750
+ type: string;
751
+ }[];
752
+ entityMap: {
753
+ 0: {
754
+ data: {
755
+ href: string;
756
+ rel: string;
757
+ url: string;
758
+ };
759
+ mutability: string;
760
+ type: string;
761
+ };
762
+ };
763
+ };
764
+ };
765
+ };
766
+ blocks_layout: {
767
+ items: string[];
768
+ };
769
+ description: string;
770
+ id: string;
771
+ is_folderish: boolean;
772
+ items: {
773
+ '@id': string;
774
+ '@type': string;
775
+ description: string;
776
+ review_state: string;
777
+ title: string;
778
+ url: string;
779
+ }[];
780
+ items_total: number;
781
+ parent: {};
782
+ title: string;
783
+ };
784
+ subrequests: {};
785
+ };
786
+ controlpanels: {
787
+ get: {
788
+ loaded: boolean;
789
+ loading: boolean;
790
+ error: any;
791
+ };
792
+ list: {
793
+ loaded: boolean;
794
+ loading: boolean;
795
+ error: any;
796
+ };
797
+ update: {
798
+ loaded: boolean;
799
+ loading: boolean;
800
+ error: any;
801
+ };
802
+ post: {
803
+ loaded: boolean;
804
+ loading: boolean;
805
+ error: any;
806
+ };
807
+ delete: {
808
+ loaded: boolean;
809
+ loading: boolean;
810
+ error: any;
811
+ };
812
+ controlpanel: any;
813
+ controlpanels: any[];
814
+ systeminformation: any;
815
+ databaseinformation: any;
816
+ };
817
+ clipboard: {
818
+ action: any;
819
+ source: any;
820
+ request: {
821
+ loaded: boolean;
822
+ loading: boolean;
823
+ error: any;
824
+ };
825
+ };
826
+ diff: {
827
+ error: any;
828
+ data: any[];
829
+ loaded: boolean;
830
+ loading: boolean;
831
+ };
832
+ emailNotification: {
833
+ error: any;
834
+ loaded: boolean;
835
+ loading: boolean;
836
+ };
837
+ form: {};
838
+ groups: {
839
+ create: {
840
+ loaded: boolean;
841
+ loading: boolean;
842
+ error: any;
843
+ };
844
+ delete: {
845
+ loaded: boolean;
846
+ loading: boolean;
847
+ error: any;
848
+ };
849
+ get: {
850
+ loaded: boolean;
851
+ loading: boolean;
852
+ error: any;
853
+ };
854
+ list: {
855
+ loaded: boolean;
856
+ loading: boolean;
857
+ error: any;
858
+ };
859
+ update: {
860
+ loaded: boolean;
861
+ loading: boolean;
862
+ error: any;
863
+ };
864
+ groups: any[];
865
+ group: {};
866
+ };
867
+ history: {
868
+ entries: any[];
869
+ get: {
870
+ error: any;
871
+ loaded: boolean;
872
+ loading: boolean;
873
+ };
874
+ revert: {
875
+ error: any;
876
+ loaded: boolean;
877
+ loading: boolean;
878
+ };
879
+ };
880
+ messages: {
881
+ messages: any[];
882
+ };
883
+ navigation: {
884
+ error: any;
885
+ items: {
886
+ title: string;
887
+ url: string;
888
+ }[];
889
+ loaded: boolean;
890
+ loading: boolean;
891
+ };
892
+ querystring: {
893
+ error: any;
894
+ indexes: {};
895
+ sortable_indexes: {};
896
+ loaded: boolean;
897
+ loading: boolean;
898
+ };
899
+ querystringsearch: {
900
+ error: any;
901
+ items: any[];
902
+ total: number;
903
+ loaded: boolean;
904
+ loading: boolean;
905
+ batching: {};
906
+ subrequests: {};
907
+ };
908
+ roles: {
909
+ error: any;
910
+ roles: any[];
911
+ loaded: boolean;
912
+ loading: boolean;
913
+ };
914
+ schema: {
915
+ error: any;
916
+ loaded: boolean;
917
+ loading: boolean;
918
+ schema: any;
919
+ post: {
920
+ loaded: boolean;
921
+ loading: boolean;
922
+ error: any;
923
+ };
924
+ update: {
925
+ loaded: boolean;
926
+ loading: boolean;
927
+ error: any;
928
+ };
929
+ put: {
930
+ loaded: boolean;
931
+ loading: boolean;
932
+ error: any;
933
+ };
934
+ };
935
+ search: {
936
+ error: any;
937
+ items: any[];
938
+ total: number;
939
+ loaded: boolean;
940
+ loading: boolean;
941
+ batching: {};
942
+ subrequests: {};
943
+ };
944
+ sharing: {
945
+ update: {
946
+ loaded: boolean;
947
+ loading: boolean;
948
+ error: any;
949
+ };
950
+ get: {
951
+ loaded: boolean;
952
+ loading: boolean;
953
+ error: any;
954
+ };
955
+ data: {
956
+ available_roles: any[];
957
+ entries: any[];
958
+ inherit: any;
959
+ };
960
+ };
961
+ sidebar: {
962
+ tab: number;
963
+ };
964
+ types: {
965
+ error: any;
966
+ loaded: boolean;
967
+ loading: boolean;
968
+ types: {
969
+ '@id': string;
970
+ addable: boolean;
971
+ title: string;
972
+ }[];
973
+ };
974
+ users: {
975
+ user: {};
976
+ users: any[];
977
+ create: {
978
+ error: any;
979
+ loaded: boolean;
980
+ loading: boolean;
981
+ };
982
+ get: {
983
+ error: any;
984
+ loaded: boolean;
985
+ loading: boolean;
986
+ };
987
+ list: {
988
+ error: any;
989
+ loaded: boolean;
990
+ loading: boolean;
991
+ };
992
+ delete: {
993
+ error: any;
994
+ loaded: boolean;
995
+ loading: boolean;
996
+ };
997
+ update: {
998
+ error: any;
999
+ loaded: boolean;
1000
+ loading: boolean;
1001
+ };
1002
+ update_password: {
1003
+ error: any;
1004
+ loaded: boolean;
1005
+ loading: boolean;
1006
+ };
1007
+ password: {
1008
+ error: any;
1009
+ loaded: boolean;
1010
+ loading: boolean;
1011
+ };
1012
+ initial: {
1013
+ error: any;
1014
+ loaded: boolean;
1015
+ loading: boolean;
1016
+ };
1017
+ reset: {
1018
+ error: any;
1019
+ loaded: boolean;
1020
+ loading: boolean;
1021
+ };
1022
+ };
1023
+ userSession: {
1024
+ token: string;
1025
+ login: {
1026
+ loaded: boolean;
1027
+ loading: boolean;
1028
+ error: any;
1029
+ };
1030
+ };
1031
+ vocabularies: {};
1032
+ workflow: {
1033
+ get: {
1034
+ loading: boolean;
1035
+ loaded: boolean;
1036
+ error: any;
1037
+ };
1038
+ transition: {
1039
+ loaded: boolean;
1040
+ loading: boolean;
1041
+ error: any;
1042
+ };
1043
+ history: any[];
1044
+ transitions: any[];
1045
+ multiple: any[];
1046
+ };
1047
+ toolbar: {
1048
+ expanded: boolean;
1049
+ };
1050
+ lazyLibraries: {};
1051
+ };
1052
+ render(): JSX.Element;
1053
+ }
1054
+ export class RealStoreWrapper extends Component<any, any, any> {
1055
+ /**
1056
+ * Property types.
1057
+ * @property {Object} propTypes Property types.
1058
+ * @static
1059
+ */
1060
+ static propTypes: {
1061
+ pathname: any;
1062
+ anonymous: any;
1063
+ customStore: any;
1064
+ };
1065
+ constructor(props: any);
1066
+ constructor(props: any, context: any);
1067
+ customState(): {
1068
+ router: {
1069
+ location: {
1070
+ pathname: string;
1071
+ search: string;
1072
+ hash: string;
1073
+ key: string;
1074
+ query: {};
1075
+ };
1076
+ action: string;
1077
+ };
1078
+ intl: {
1079
+ defaultLocale: string;
1080
+ locale: string;
1081
+ messages: {};
1082
+ };
1083
+ reduxAsyncConnect: {
1084
+ loaded: boolean;
1085
+ loadState: {
1086
+ breadcrumbs: {
1087
+ loading: boolean;
1088
+ loaded: boolean;
1089
+ error: any;
1090
+ };
1091
+ content: {
1092
+ loading: boolean;
1093
+ loaded: boolean;
1094
+ error: any;
1095
+ };
1096
+ navigation: {
1097
+ loading: boolean;
1098
+ loaded: boolean;
1099
+ error: any;
1100
+ };
1101
+ workflow: {
1102
+ loading: boolean;
1103
+ loaded: boolean;
1104
+ error: any;
1105
+ };
1106
+ };
1107
+ breadcrumbs: {
1108
+ '@id': string;
1109
+ items: any[];
1110
+ };
1111
+ content: {
1112
+ '@components': {
1113
+ actions: {
1114
+ '@id': string;
1115
+ };
1116
+ breadcrumbs: {
1117
+ '@id': string;
1118
+ };
1119
+ navigation: {
1120
+ '@id': string;
1121
+ };
1122
+ };
1123
+ '@id': string;
1124
+ '@type': string;
1125
+ blocks: {
1126
+ '0358abe2-b4f1-463d-a279-a63ea80daf19': {
1127
+ '@type': string;
1128
+ };
1129
+ '07c273fc-8bfc-4e7d-a327-d513e5a945bb': {
1130
+ '@type': string;
1131
+ };
1132
+ '2dfe8e4c-5bf6-43f1-93e1-6c320ede7226': {
1133
+ '@type': string;
1134
+ text: {
1135
+ blocks: {
1136
+ data: {};
1137
+ depth: number;
1138
+ entityRanges: any[];
1139
+ inlineStyleRanges: {
1140
+ length: number;
1141
+ offset: number;
1142
+ style: string;
1143
+ }[];
1144
+ key: string;
1145
+ text: string;
1146
+ type: string;
1147
+ }[];
1148
+ entityMap: {};
1149
+ };
1150
+ };
1151
+ '3c881f51-f75b-4959-834a-6e1d5edc32ae': {
1152
+ '@type': string;
1153
+ text: {
1154
+ blocks: {
1155
+ data: {};
1156
+ depth: number;
1157
+ entityRanges: any[];
1158
+ inlineStyleRanges: {
1159
+ length: number;
1160
+ offset: number;
1161
+ style: string;
1162
+ }[];
1163
+ key: string;
1164
+ text: string;
1165
+ type: string;
1166
+ }[];
1167
+ entityMap: {};
1168
+ };
1169
+ };
1170
+ '5e1c30b1-ec6c-4dc0-9483-9768c3c416e4': {
1171
+ '@type': string;
1172
+ text: {
1173
+ blocks: {
1174
+ data: {};
1175
+ depth: number;
1176
+ entityRanges: {
1177
+ key: number;
1178
+ length: number;
1179
+ offset: number;
1180
+ }[];
1181
+ inlineStyleRanges: any[];
1182
+ key: string;
1183
+ text: string;
1184
+ type: string;
1185
+ }[];
1186
+ entityMap: {
1187
+ 0: {
1188
+ data: {
1189
+ href: string;
1190
+ rel: string;
1191
+ url: string;
1192
+ };
1193
+ mutability: string;
1194
+ type: string;
1195
+ };
1196
+ 1: {
1197
+ data: {
1198
+ href: string;
1199
+ url: string;
1200
+ };
1201
+ mutability: string;
1202
+ type: string;
1203
+ };
1204
+ };
1205
+ };
1206
+ };
1207
+ '61cc1bc0-d4f5-4e2b-9152-79512045a4dd': {
1208
+ '@type': string;
1209
+ text: {
1210
+ blocks: {
1211
+ data: {};
1212
+ depth: number;
1213
+ entityRanges: any[];
1214
+ inlineStyleRanges: any[];
1215
+ key: string;
1216
+ text: string;
1217
+ type: string;
1218
+ }[];
1219
+ entityMap: {};
1220
+ };
1221
+ };
1222
+ '874049e7-629e-489a-b46c-1adf35ad40ee': {
1223
+ '@type': string;
1224
+ text: {
1225
+ blocks: {
1226
+ data: {};
1227
+ depth: number;
1228
+ entityRanges: any[];
1229
+ inlineStyleRanges: any[];
1230
+ key: string;
1231
+ text: string;
1232
+ type: string;
1233
+ }[];
1234
+ entityMap: {};
1235
+ };
1236
+ };
1237
+ '942b6530-2407-420f-9c24-597adda6b2ce': {
1238
+ '@type': string;
1239
+ text: {
1240
+ blocks: {
1241
+ data: {};
1242
+ depth: number;
1243
+ entityRanges: {
1244
+ key: number;
1245
+ length: number;
1246
+ offset: number;
1247
+ }[];
1248
+ inlineStyleRanges: any[];
1249
+ key: string;
1250
+ text: string;
1251
+ type: string;
1252
+ }[];
1253
+ entityMap: {
1254
+ 0: {
1255
+ data: {
1256
+ href: string;
1257
+ url: string;
1258
+ };
1259
+ mutability: string;
1260
+ type: string;
1261
+ };
1262
+ };
1263
+ };
1264
+ };
1265
+ '9a976b8e-72ba-468a-bea8-b37a31bb386b': {
1266
+ '@type': string;
1267
+ text: {
1268
+ blocks: {
1269
+ data: {};
1270
+ depth: number;
1271
+ entityRanges: any[];
1272
+ inlineStyleRanges: {
1273
+ length: number;
1274
+ offset: number;
1275
+ style: string;
1276
+ }[];
1277
+ key: string;
1278
+ text: string;
1279
+ type: string;
1280
+ }[];
1281
+ entityMap: {};
1282
+ };
1283
+ };
1284
+ 'b3717238-448f-406e-b06f-57a9715c3326': {
1285
+ '@type': string;
1286
+ text: {
1287
+ blocks: {
1288
+ data: {};
1289
+ depth: number;
1290
+ entityRanges: {
1291
+ key: number;
1292
+ length: number;
1293
+ offset: number;
1294
+ }[];
1295
+ inlineStyleRanges: any[];
1296
+ key: string;
1297
+ text: string;
1298
+ type: string;
1299
+ }[];
1300
+ entityMap: {
1301
+ 0: {
1302
+ data: {
1303
+ href: string;
1304
+ url: string;
1305
+ };
1306
+ mutability: string;
1307
+ type: string;
1308
+ };
1309
+ };
1310
+ };
1311
+ };
1312
+ 'c049ff8b-3e5a-4cfb-bca6-e4a6cca9be28': {
1313
+ '@type': string;
1314
+ text: {
1315
+ blocks: {
1316
+ data: {};
1317
+ depth: number;
1318
+ entityRanges: any[];
1319
+ inlineStyleRanges: any[];
1320
+ key: string;
1321
+ text: string;
1322
+ type: string;
1323
+ }[];
1324
+ entityMap: {};
1325
+ };
1326
+ };
1327
+ 'c91f0fe9-f2e9-4a17-84a5-8e4f2678ed3c': {
1328
+ '@type': string;
1329
+ text: {
1330
+ blocks: {
1331
+ data: {};
1332
+ depth: number;
1333
+ entityRanges: any[];
1334
+ inlineStyleRanges: {
1335
+ length: number;
1336
+ offset: number;
1337
+ style: string;
1338
+ }[];
1339
+ key: string;
1340
+ text: string;
1341
+ type: string;
1342
+ }[];
1343
+ entityMap: {};
1344
+ };
1345
+ };
1346
+ 'e0ca2fbc-7800-4b9b-afe5-8e42af9f5dd6': {
1347
+ '@type': string;
1348
+ text: {
1349
+ blocks: {
1350
+ data: {};
1351
+ depth: number;
1352
+ entityRanges: any[];
1353
+ inlineStyleRanges: any[];
1354
+ key: string;
1355
+ text: string;
1356
+ type: string;
1357
+ }[];
1358
+ entityMap: {};
1359
+ };
1360
+ };
1361
+ 'effbdcdc-253c-41a7-841e-5edb3b56ce32': {
1362
+ '@type': string;
1363
+ text: {
1364
+ blocks: {
1365
+ data: {};
1366
+ depth: number;
1367
+ entityRanges: {
1368
+ key: number;
1369
+ length: number;
1370
+ offset: number;
1371
+ }[];
1372
+ inlineStyleRanges: any[];
1373
+ key: string;
1374
+ text: string;
1375
+ type: string;
1376
+ }[];
1377
+ entityMap: {
1378
+ 0: {
1379
+ data: {
1380
+ href: string;
1381
+ rel: string;
1382
+ url: string;
1383
+ };
1384
+ mutability: string;
1385
+ type: string;
1386
+ };
1387
+ };
1388
+ };
1389
+ };
1390
+ };
1391
+ blocks_layout: {
1392
+ items: string[];
1393
+ };
1394
+ description: string;
1395
+ id: string;
1396
+ is_folderish: boolean;
1397
+ items: {
1398
+ '@id': string;
1399
+ '@type': string;
1400
+ description: string;
1401
+ review_state: string;
1402
+ title: string;
1403
+ }[];
1404
+ items_total: number;
1405
+ parent: {};
1406
+ title: string;
1407
+ };
1408
+ navigation: {
1409
+ '@id': string;
1410
+ items: {
1411
+ '@id': string;
1412
+ description: string;
1413
+ title: string;
1414
+ }[];
1415
+ };
1416
+ workflow: {
1417
+ '@id': string;
1418
+ history: any[];
1419
+ transitions: any[];
1420
+ };
1421
+ };
1422
+ actions: {
1423
+ error: any;
1424
+ actions: {
1425
+ document_actions: any[];
1426
+ object: {
1427
+ icon: string;
1428
+ id: string;
1429
+ title: string;
1430
+ }[];
1431
+ object_buttons: any[];
1432
+ portal_tabs: {
1433
+ icon: string;
1434
+ id: string;
1435
+ title: string;
1436
+ }[];
1437
+ site_actions: {
1438
+ icon: string;
1439
+ id: string;
1440
+ title: string;
1441
+ }[];
1442
+ user: {
1443
+ icon: string;
1444
+ id: string;
1445
+ title: string;
1446
+ }[];
1447
+ };
1448
+ loaded: boolean;
1449
+ loading: boolean;
1450
+ };
1451
+ addons: {
1452
+ error: any;
1453
+ installedAddons: any[];
1454
+ availableAddons: any[];
1455
+ upgradableAddons: any[];
1456
+ loaded: boolean;
1457
+ loading: boolean;
1458
+ };
1459
+ apierror: {
1460
+ error: any;
1461
+ statusCode: any;
1462
+ connectionRefused: boolean;
1463
+ message: any;
1464
+ };
1465
+ breadcrumbs: {
1466
+ error: any;
1467
+ items: {
1468
+ title: string;
1469
+ url: string;
1470
+ }[];
1471
+ loaded: boolean;
1472
+ loading: boolean;
1473
+ };
1474
+ browserdetect: {
1475
+ name: string;
1476
+ version: string;
1477
+ os: string;
1478
+ type: string;
1479
+ };
1480
+ comments: {
1481
+ add: {
1482
+ loaded: boolean;
1483
+ loading: boolean;
1484
+ error: any;
1485
+ };
1486
+ delete: {
1487
+ loaded: boolean;
1488
+ loading: boolean;
1489
+ error: any;
1490
+ };
1491
+ update: {
1492
+ loaded: boolean;
1493
+ loading: boolean;
1494
+ error: any;
1495
+ };
1496
+ list: {
1497
+ loaded: boolean;
1498
+ loading: boolean;
1499
+ error: any;
1500
+ };
1501
+ items: any[];
1502
+ };
1503
+ content: {
1504
+ unlock: {
1505
+ loaded: boolean;
1506
+ loading: boolean;
1507
+ error: any;
1508
+ };
1509
+ create: {
1510
+ loaded: boolean;
1511
+ loading: boolean;
1512
+ error: any;
1513
+ };
1514
+ delete: {
1515
+ loaded: boolean;
1516
+ loading: boolean;
1517
+ error: any;
1518
+ };
1519
+ update: {
1520
+ loaded: boolean;
1521
+ loading: boolean;
1522
+ error: any;
1523
+ };
1524
+ get: {
1525
+ loading: boolean;
1526
+ loaded: boolean;
1527
+ error: any;
1528
+ };
1529
+ order: {
1530
+ loaded: boolean;
1531
+ loading: boolean;
1532
+ error: any;
1533
+ };
1534
+ data: {
1535
+ '@components': {
1536
+ actions: {
1537
+ '@id': string;
1538
+ };
1539
+ breadcrumbs: {
1540
+ '@id': string;
1541
+ };
1542
+ navigation: {
1543
+ '@id': string;
1544
+ };
1545
+ };
1546
+ '@id': string;
1547
+ '@type': string;
1548
+ blocks: {
1549
+ '0358abe2-b4f1-463d-a279-a63ea80daf19': {
1550
+ '@type': string;
1551
+ };
1552
+ '07c273fc-8bfc-4e7d-a327-d513e5a945bb': {
1553
+ '@type': string;
1554
+ };
1555
+ '2dfe8e4c-5bf6-43f1-93e1-6c320ede7226': {
1556
+ '@type': string;
1557
+ text: {
1558
+ blocks: {
1559
+ data: {};
1560
+ depth: number;
1561
+ entityRanges: any[];
1562
+ inlineStyleRanges: {
1563
+ length: number;
1564
+ offset: number;
1565
+ style: string;
1566
+ }[];
1567
+ key: string;
1568
+ text: string;
1569
+ type: string;
1570
+ }[];
1571
+ entityMap: {};
1572
+ };
1573
+ };
1574
+ '3c881f51-f75b-4959-834a-6e1d5edc32ae': {
1575
+ '@type': string;
1576
+ text: {
1577
+ blocks: {
1578
+ data: {};
1579
+ depth: number;
1580
+ entityRanges: any[];
1581
+ inlineStyleRanges: {
1582
+ length: number;
1583
+ offset: number;
1584
+ style: string;
1585
+ }[];
1586
+ key: string;
1587
+ text: string;
1588
+ type: string;
1589
+ }[];
1590
+ entityMap: {};
1591
+ };
1592
+ };
1593
+ '5e1c30b1-ec6c-4dc0-9483-9768c3c416e4': {
1594
+ '@type': string;
1595
+ text: {
1596
+ blocks: {
1597
+ data: {};
1598
+ depth: number;
1599
+ entityRanges: {
1600
+ key: number;
1601
+ length: number;
1602
+ offset: number;
1603
+ }[];
1604
+ inlineStyleRanges: any[];
1605
+ key: string;
1606
+ text: string;
1607
+ type: string;
1608
+ }[];
1609
+ entityMap: {
1610
+ 0: {
1611
+ data: {
1612
+ href: string;
1613
+ rel: string;
1614
+ url: string;
1615
+ };
1616
+ mutability: string;
1617
+ type: string;
1618
+ };
1619
+ 1: {
1620
+ data: {
1621
+ href: string;
1622
+ url: string;
1623
+ };
1624
+ mutability: string;
1625
+ type: string;
1626
+ };
1627
+ };
1628
+ };
1629
+ };
1630
+ '61cc1bc0-d4f5-4e2b-9152-79512045a4dd': {
1631
+ '@type': string;
1632
+ text: {
1633
+ blocks: {
1634
+ data: {};
1635
+ depth: number;
1636
+ entityRanges: any[];
1637
+ inlineStyleRanges: any[];
1638
+ key: string;
1639
+ text: string;
1640
+ type: string;
1641
+ }[];
1642
+ entityMap: {};
1643
+ };
1644
+ };
1645
+ '874049e7-629e-489a-b46c-1adf35ad40ee': {
1646
+ '@type': string;
1647
+ text: {
1648
+ blocks: {
1649
+ data: {};
1650
+ depth: number;
1651
+ entityRanges: any[];
1652
+ inlineStyleRanges: any[];
1653
+ key: string;
1654
+ text: string;
1655
+ type: string;
1656
+ }[];
1657
+ entityMap: {};
1658
+ };
1659
+ };
1660
+ '942b6530-2407-420f-9c24-597adda6b2ce': {
1661
+ '@type': string;
1662
+ text: {
1663
+ blocks: {
1664
+ data: {};
1665
+ depth: number;
1666
+ entityRanges: {
1667
+ key: number;
1668
+ length: number;
1669
+ offset: number;
1670
+ }[];
1671
+ inlineStyleRanges: any[];
1672
+ key: string;
1673
+ text: string;
1674
+ type: string;
1675
+ }[];
1676
+ entityMap: {
1677
+ 0: {
1678
+ data: {
1679
+ href: string;
1680
+ url: string;
1681
+ };
1682
+ mutability: string;
1683
+ type: string;
1684
+ };
1685
+ };
1686
+ };
1687
+ };
1688
+ '9a976b8e-72ba-468a-bea8-b37a31bb386b': {
1689
+ '@type': string;
1690
+ text: {
1691
+ blocks: {
1692
+ data: {};
1693
+ depth: number;
1694
+ entityRanges: any[];
1695
+ inlineStyleRanges: {
1696
+ length: number;
1697
+ offset: number;
1698
+ style: string;
1699
+ }[];
1700
+ key: string;
1701
+ text: string;
1702
+ type: string;
1703
+ }[];
1704
+ entityMap: {};
1705
+ };
1706
+ };
1707
+ 'b3717238-448f-406e-b06f-57a9715c3326': {
1708
+ '@type': string;
1709
+ text: {
1710
+ blocks: {
1711
+ data: {};
1712
+ depth: number;
1713
+ entityRanges: {
1714
+ key: number;
1715
+ length: number;
1716
+ offset: number;
1717
+ }[];
1718
+ inlineStyleRanges: any[];
1719
+ key: string;
1720
+ text: string;
1721
+ type: string;
1722
+ }[];
1723
+ entityMap: {
1724
+ 0: {
1725
+ data: {
1726
+ href: string;
1727
+ url: string;
1728
+ };
1729
+ mutability: string;
1730
+ type: string;
1731
+ };
1732
+ };
1733
+ };
1734
+ };
1735
+ 'c049ff8b-3e5a-4cfb-bca6-e4a6cca9be28': {
1736
+ '@type': string;
1737
+ text: {
1738
+ blocks: {
1739
+ data: {};
1740
+ depth: number;
1741
+ entityRanges: any[];
1742
+ inlineStyleRanges: any[];
1743
+ key: string;
1744
+ text: string;
1745
+ type: string;
1746
+ }[];
1747
+ entityMap: {};
1748
+ };
1749
+ };
1750
+ 'c91f0fe9-f2e9-4a17-84a5-8e4f2678ed3c': {
1751
+ '@type': string;
1752
+ text: {
1753
+ blocks: {
1754
+ data: {};
1755
+ depth: number;
1756
+ entityRanges: any[];
1757
+ inlineStyleRanges: {
1758
+ length: number;
1759
+ offset: number;
1760
+ style: string;
1761
+ }[];
1762
+ key: string;
1763
+ text: string;
1764
+ type: string;
1765
+ }[];
1766
+ entityMap: {};
1767
+ };
1768
+ };
1769
+ 'e0ca2fbc-7800-4b9b-afe5-8e42af9f5dd6': {
1770
+ '@type': string;
1771
+ text: {
1772
+ blocks: {
1773
+ data: {};
1774
+ depth: number;
1775
+ entityRanges: any[];
1776
+ inlineStyleRanges: any[];
1777
+ key: string;
1778
+ text: string;
1779
+ type: string;
1780
+ }[];
1781
+ entityMap: {};
1782
+ };
1783
+ };
1784
+ 'effbdcdc-253c-41a7-841e-5edb3b56ce32': {
1785
+ '@type': string;
1786
+ text: {
1787
+ blocks: {
1788
+ data: {};
1789
+ depth: number;
1790
+ entityRanges: {
1791
+ key: number;
1792
+ length: number;
1793
+ offset: number;
1794
+ }[];
1795
+ inlineStyleRanges: any[];
1796
+ key: string;
1797
+ text: string;
1798
+ type: string;
1799
+ }[];
1800
+ entityMap: {
1801
+ 0: {
1802
+ data: {
1803
+ href: string;
1804
+ rel: string;
1805
+ url: string;
1806
+ };
1807
+ mutability: string;
1808
+ type: string;
1809
+ };
1810
+ };
1811
+ };
1812
+ };
1813
+ };
1814
+ blocks_layout: {
1815
+ items: string[];
1816
+ };
1817
+ description: string;
1818
+ id: string;
1819
+ is_folderish: boolean;
1820
+ items: {
1821
+ '@id': string;
1822
+ '@type': string;
1823
+ description: string;
1824
+ review_state: string;
1825
+ title: string;
1826
+ url: string;
1827
+ }[];
1828
+ items_total: number;
1829
+ parent: {};
1830
+ title: string;
1831
+ };
1832
+ subrequests: {};
1833
+ };
1834
+ controlpanels: {
1835
+ get: {
1836
+ loaded: boolean;
1837
+ loading: boolean;
1838
+ error: any;
1839
+ };
1840
+ list: {
1841
+ loaded: boolean;
1842
+ loading: boolean;
1843
+ error: any;
1844
+ };
1845
+ update: {
1846
+ loaded: boolean;
1847
+ loading: boolean;
1848
+ error: any;
1849
+ };
1850
+ post: {
1851
+ loaded: boolean;
1852
+ loading: boolean;
1853
+ error: any;
1854
+ };
1855
+ delete: {
1856
+ loaded: boolean;
1857
+ loading: boolean;
1858
+ error: any;
1859
+ };
1860
+ controlpanel: any;
1861
+ controlpanels: any[];
1862
+ systeminformation: any;
1863
+ databaseinformation: any;
1864
+ };
1865
+ clipboard: {
1866
+ action: any;
1867
+ source: any;
1868
+ request: {
1869
+ loaded: boolean;
1870
+ loading: boolean;
1871
+ error: any;
1872
+ };
1873
+ };
1874
+ diff: {
1875
+ error: any;
1876
+ data: any[];
1877
+ loaded: boolean;
1878
+ loading: boolean;
1879
+ };
1880
+ emailNotification: {
1881
+ error: any;
1882
+ loaded: boolean;
1883
+ loading: boolean;
1884
+ };
1885
+ form: {};
1886
+ groups: {
1887
+ create: {
1888
+ loaded: boolean;
1889
+ loading: boolean;
1890
+ error: any;
1891
+ };
1892
+ delete: {
1893
+ loaded: boolean;
1894
+ loading: boolean;
1895
+ error: any;
1896
+ };
1897
+ get: {
1898
+ loaded: boolean;
1899
+ loading: boolean;
1900
+ error: any;
1901
+ };
1902
+ list: {
1903
+ loaded: boolean;
1904
+ loading: boolean;
1905
+ error: any;
1906
+ };
1907
+ update: {
1908
+ loaded: boolean;
1909
+ loading: boolean;
1910
+ error: any;
1911
+ };
1912
+ groups: any[];
1913
+ group: {};
1914
+ };
1915
+ history: {
1916
+ entries: any[];
1917
+ get: {
1918
+ error: any;
1919
+ loaded: boolean;
1920
+ loading: boolean;
1921
+ };
1922
+ revert: {
1923
+ error: any;
1924
+ loaded: boolean;
1925
+ loading: boolean;
1926
+ };
1927
+ };
1928
+ messages: {
1929
+ messages: any[];
1930
+ };
1931
+ navigation: {
1932
+ error: any;
1933
+ items: {
1934
+ title: string;
1935
+ url: string;
1936
+ }[];
1937
+ loaded: boolean;
1938
+ loading: boolean;
1939
+ };
1940
+ querystring: {
1941
+ error: any;
1942
+ indexes: {};
1943
+ sortable_indexes: {};
1944
+ loaded: boolean;
1945
+ loading: boolean;
1946
+ };
1947
+ querystringsearch: {
1948
+ error: any;
1949
+ items: any[];
1950
+ total: number;
1951
+ loaded: boolean;
1952
+ loading: boolean;
1953
+ batching: {};
1954
+ subrequests: {};
1955
+ };
1956
+ roles: {
1957
+ error: any;
1958
+ roles: any[];
1959
+ loaded: boolean;
1960
+ loading: boolean;
1961
+ };
1962
+ schema: {
1963
+ error: any;
1964
+ loaded: boolean;
1965
+ loading: boolean;
1966
+ schema: any;
1967
+ post: {
1968
+ loaded: boolean;
1969
+ loading: boolean;
1970
+ error: any;
1971
+ };
1972
+ update: {
1973
+ loaded: boolean;
1974
+ loading: boolean;
1975
+ error: any;
1976
+ };
1977
+ put: {
1978
+ loaded: boolean;
1979
+ loading: boolean;
1980
+ error: any;
1981
+ };
1982
+ };
1983
+ search: {
1984
+ error: any;
1985
+ items: any[];
1986
+ total: number;
1987
+ loaded: boolean;
1988
+ loading: boolean;
1989
+ batching: {};
1990
+ subrequests: {};
1991
+ };
1992
+ sharing: {
1993
+ update: {
1994
+ loaded: boolean;
1995
+ loading: boolean;
1996
+ error: any;
1997
+ };
1998
+ get: {
1999
+ loaded: boolean;
2000
+ loading: boolean;
2001
+ error: any;
2002
+ };
2003
+ data: {
2004
+ available_roles: any[];
2005
+ entries: any[];
2006
+ inherit: any;
2007
+ };
2008
+ };
2009
+ sidebar: {
2010
+ tab: number;
2011
+ };
2012
+ types: {
2013
+ error: any;
2014
+ loaded: boolean;
2015
+ loading: boolean;
2016
+ types: {
2017
+ '@id': string;
2018
+ addable: boolean;
2019
+ title: string;
2020
+ }[];
2021
+ };
2022
+ users: {
2023
+ user: {};
2024
+ users: any[];
2025
+ create: {
2026
+ error: any;
2027
+ loaded: boolean;
2028
+ loading: boolean;
2029
+ };
2030
+ get: {
2031
+ error: any;
2032
+ loaded: boolean;
2033
+ loading: boolean;
2034
+ };
2035
+ list: {
2036
+ error: any;
2037
+ loaded: boolean;
2038
+ loading: boolean;
2039
+ };
2040
+ delete: {
2041
+ error: any;
2042
+ loaded: boolean;
2043
+ loading: boolean;
2044
+ };
2045
+ update: {
2046
+ error: any;
2047
+ loaded: boolean;
2048
+ loading: boolean;
2049
+ };
2050
+ update_password: {
2051
+ error: any;
2052
+ loaded: boolean;
2053
+ loading: boolean;
2054
+ };
2055
+ password: {
2056
+ error: any;
2057
+ loaded: boolean;
2058
+ loading: boolean;
2059
+ };
2060
+ initial: {
2061
+ error: any;
2062
+ loaded: boolean;
2063
+ loading: boolean;
2064
+ };
2065
+ reset: {
2066
+ error: any;
2067
+ loaded: boolean;
2068
+ loading: boolean;
2069
+ };
2070
+ };
2071
+ userSession: {
2072
+ token: string;
2073
+ login: {
2074
+ loaded: boolean;
2075
+ loading: boolean;
2076
+ error: any;
2077
+ };
2078
+ };
2079
+ vocabularies: {};
2080
+ workflow: {
2081
+ get: {
2082
+ loading: boolean;
2083
+ loaded: boolean;
2084
+ error: any;
2085
+ };
2086
+ transition: {
2087
+ loaded: boolean;
2088
+ loading: boolean;
2089
+ error: any;
2090
+ };
2091
+ history: any[];
2092
+ transitions: any[];
2093
+ multiple: any[];
2094
+ };
2095
+ toolbar: {
2096
+ expanded: boolean;
2097
+ };
2098
+ lazyLibraries: {};
2099
+ };
2100
+ render(): JSX.Element;
2101
+ }
2102
+ export function FormUndoWrapper({ initialState, children, showControls, }: {
2103
+ initialState?: {};
2104
+ children: any;
2105
+ showControls?: boolean;
2106
+ }): JSX.Element;
2107
+ import { Component } from 'react';