@plone/volto 17.3.0 → 17.5.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 (960) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/README.md +0 -1
  3. package/addon-registry.js +6 -2
  4. package/cypress/support/commands.js +9 -0
  5. package/locales/ca/LC_MESSAGES/volto.po +10 -10
  6. package/locales/ca.json +1 -1
  7. package/locales/de/LC_MESSAGES/volto.po +10 -10
  8. package/locales/de.json +1 -1
  9. package/locales/en/LC_MESSAGES/volto.po +10 -10
  10. package/locales/en.json +1 -1
  11. package/locales/es/LC_MESSAGES/volto.po +10 -10
  12. package/locales/es.json +1 -1
  13. package/locales/eu/LC_MESSAGES/volto.po +10 -10
  14. package/locales/eu.json +1 -1
  15. package/locales/fi/LC_MESSAGES/volto.po +10 -10
  16. package/locales/fi.json +1 -1
  17. package/locales/fr/LC_MESSAGES/volto.po +10 -10
  18. package/locales/fr.json +1 -1
  19. package/locales/it/LC_MESSAGES/volto.po +10 -10
  20. package/locales/it.json +1 -1
  21. package/locales/ja/LC_MESSAGES/volto.po +10 -10
  22. package/locales/ja.json +1 -1
  23. package/locales/nl/LC_MESSAGES/volto.po +10 -10
  24. package/locales/nl.json +1 -1
  25. package/locales/pt/LC_MESSAGES/volto.po +10 -10
  26. package/locales/pt.json +1 -1
  27. package/locales/pt_BR/LC_MESSAGES/volto.po +10 -10
  28. package/locales/pt_BR.json +1 -1
  29. package/locales/ro/LC_MESSAGES/volto.po +10 -10
  30. package/locales/ro.json +1 -1
  31. package/locales/volto.pot +11 -11
  32. package/locales/zh_CN/LC_MESSAGES/volto.po +10 -10
  33. package/locales/zh_CN.json +1 -1
  34. package/package.json +14 -8
  35. package/packages/volto-slate/package.json +5 -5
  36. package/packages/volto-slate/src/blocks/Text/keyboard/joinBlocks.js +6 -3
  37. package/packages/volto-slate/src/editor/SlateEditor.jsx +3 -1
  38. package/packages/volto-slate/src/editor/plugins/Link/extensions.js +25 -20
  39. package/packages/volto-slate/src/slate-react.js +26 -0
  40. package/packages/volto-slate/src/utils/selection.js +7 -4
  41. package/razzle.config.js +3 -0
  42. package/src/components/manage/Blocks/Description/Edit.jsx +5 -15
  43. package/src/components/manage/Blocks/Description/View.jsx +3 -13
  44. package/src/components/manage/Blocks/HTML/View.jsx +0 -10
  45. package/src/components/manage/Blocks/HeroImageLeft/View.jsx +0 -10
  46. package/src/components/manage/Blocks/Image/View.jsx +0 -10
  47. package/src/components/manage/Blocks/LeadImage/View.jsx +0 -10
  48. package/src/components/manage/Blocks/Search/SearchBlockView.jsx +1 -1
  49. package/src/components/manage/Blocks/Search/hocs/withSearch.jsx +10 -2
  50. package/src/components/manage/Blocks/Table/View.jsx +0 -10
  51. package/src/components/manage/Blocks/Text/View.jsx +0 -10
  52. package/src/components/manage/Blocks/Title/Edit.jsx +1 -11
  53. package/src/components/manage/Blocks/Video/Body.jsx +0 -10
  54. package/src/components/manage/Contents/Contents.jsx +240 -164
  55. package/src/components/manage/LinkMore/LinkMore.jsx +0 -10
  56. package/src/components/manage/Multilingual/TranslationObject.jsx +0 -10
  57. package/src/components/manage/TextLineEdit/TextLineEdit.jsx +1 -1
  58. package/theme/themes/pastanaga/extras/blocks.less +9 -0
  59. package/theme/themes/pastanaga/extras/contents.less +1 -1
  60. package/types/actions/actions/actions.d.ts +7 -0
  61. package/types/actions/actions/actions.test.d.ts +1 -0
  62. package/types/actions/addons/addons.d.ts +27 -0
  63. package/types/actions/addons/addons.test.d.ts +1 -0
  64. package/types/actions/aliases/aliases.d.ts +24 -0
  65. package/types/actions/aliases/aliases.test.d.ts +1 -0
  66. package/types/actions/asyncConnect/asyncConnect.d.ts +24 -0
  67. package/types/actions/authRole/authRole.d.ts +4 -0
  68. package/types/actions/authRole/authRole.test.d.ts +1 -0
  69. package/types/actions/blocksClipboard/blocksClipboard.d.ts +13 -0
  70. package/types/actions/breadcrumbs/breadcrumbs.d.ts +7 -0
  71. package/types/actions/breadcrumbs/breadcrumbs.test.d.ts +1 -0
  72. package/types/actions/clipboard/clipboard.d.ts +30 -0
  73. package/types/actions/clipboard/clipboard.test.d.ts +1 -0
  74. package/types/actions/comments/comments.d.ts +37 -0
  75. package/types/actions/comments/comments.test.d.ts +1 -0
  76. package/types/actions/content/content.d.ts +90 -0
  77. package/types/actions/content/content.multilingual.test.d.ts +1 -0
  78. package/types/actions/content/content.test.d.ts +1 -0
  79. package/types/actions/contextNavigation/contextNavigation.d.ts +8 -0
  80. package/types/actions/contextNavigation/contextNavigation.test.d.ts +1 -0
  81. package/types/actions/controlpanels/controlpanels.d.ts +51 -0
  82. package/types/actions/controlpanels/controlpanels.test.d.ts +1 -0
  83. package/types/actions/diff/diff.d.ts +9 -0
  84. package/types/actions/diff/diff.test.d.ts +1 -0
  85. package/types/actions/emailNotification/emailNotification.d.ts +10 -0
  86. package/types/actions/emailNotification/emailNotification.test.d.ts +1 -0
  87. package/types/actions/emailSend/emailSend.d.ts +11 -0
  88. package/types/actions/emailSend/emailSend.test.d.ts +1 -0
  89. package/types/actions/groups/groups.d.ts +36 -0
  90. package/types/actions/groups/groups.test.d.ts +1 -0
  91. package/types/actions/history/history.d.ts +15 -0
  92. package/types/actions/history/history.test.d.ts +1 -0
  93. package/types/actions/index.d.ts +8 -0
  94. package/types/actions/language/language.d.ts +9 -0
  95. package/types/actions/lazyLibraries/lazyLibraries.d.ts +1 -0
  96. package/types/actions/messages/messages.d.ts +22 -0
  97. package/types/actions/messages/messages.test.d.ts +1 -0
  98. package/types/actions/navigation/navigation.d.ts +8 -0
  99. package/types/actions/navigation/navigation.test.d.ts +1 -0
  100. package/types/actions/navroot/navroot.d.ts +6 -0
  101. package/types/actions/navroot/navroot.test.d.ts +1 -0
  102. package/types/actions/querystring/querystring.d.ts +6 -0
  103. package/types/actions/querystring/querystring.test.d.ts +1 -0
  104. package/types/actions/querystringsearch/querystringsearch.d.ts +7 -0
  105. package/types/actions/querystringsearch/querystringsearch.test.d.ts +1 -0
  106. package/types/actions/relations/rebuild.d.ts +7 -0
  107. package/types/actions/relations/relations.d.ts +27 -0
  108. package/types/actions/relations/relations.test.d.ts +1 -0
  109. package/types/actions/roles/roles.d.ts +6 -0
  110. package/types/actions/roles/roles.test.d.ts +1 -0
  111. package/types/actions/rules/rules.d.ts +168 -0
  112. package/types/actions/schema/schema.d.ts +32 -0
  113. package/types/actions/schema/schema.test.d.ts +1 -0
  114. package/types/actions/search/search.d.ts +16 -0
  115. package/types/actions/search/search.test.d.ts +1 -0
  116. package/types/actions/sharing/sharing.d.ts +16 -0
  117. package/types/actions/sharing/sharing.test.d.ts +1 -0
  118. package/types/actions/sidebar/sidebar.d.ts +7 -0
  119. package/types/actions/sidebar/sidebar.test.d.ts +1 -0
  120. package/types/actions/site/site.d.ts +6 -0
  121. package/types/actions/site/site.test.d.ts +1 -0
  122. package/types/actions/toolbar/toolbar.d.ts +7 -0
  123. package/types/actions/toolbar/toolbar.test.d.ts +1 -0
  124. package/types/actions/transactions/transactions.d.ts +13 -0
  125. package/types/actions/transactions/transactions.test.d.ts +1 -0
  126. package/types/actions/translations/translations.d.ts +23 -0
  127. package/types/actions/translations/translations.test.d.ts +1 -0
  128. package/types/actions/types/types.d.ts +7 -0
  129. package/types/actions/types/types.test.d.ts +1 -0
  130. package/types/actions/upgrade/upgrade.d.ts +17 -0
  131. package/types/actions/userSession/userSession.d.ts +26 -0
  132. package/types/actions/userSession/userSession.test.d.ts +1 -0
  133. package/types/actions/users/users.d.ts +66 -0
  134. package/types/actions/users/users.test.d.ts +1 -0
  135. package/types/actions/userschema/userschema.d.ts +6 -0
  136. package/types/actions/vocabularies/vocabularies.d.ts +20 -0
  137. package/types/actions/vocabularies/vocabularies.test.d.ts +1 -0
  138. package/types/actions/workflow/workflow.d.ts +15 -0
  139. package/types/actions/workflow/workflow.test.d.ts +1 -0
  140. package/types/actions/workingcopy/workingcopy.d.ts +21 -0
  141. package/types/actions/workingcopy/workingcopy.test.d.ts +1 -0
  142. package/types/client.d.ts +1 -0
  143. package/types/components/index.d.ts +3 -0
  144. package/types/components/manage/Actions/Actions.d.ts +7 -0
  145. package/types/components/manage/Actions/Actions.test.d.ts +1 -0
  146. package/types/components/manage/Add/Add.d.ts +4 -0
  147. package/types/components/manage/Add/Add.test.d.ts +1 -0
  148. package/types/components/manage/Aliases/Aliases.d.ts +2 -0
  149. package/types/components/manage/Aliases/Aliases.test.d.ts +1 -0
  150. package/types/components/manage/AnchorPlugin/components/Link/index.d.ts +26 -0
  151. package/types/components/manage/AnchorPlugin/components/LinkButton/AddLinkForm.d.ts +4 -0
  152. package/types/components/manage/AnchorPlugin/components/LinkButton/index.d.ts +2 -0
  153. package/types/components/manage/AnchorPlugin/index.d.ts +9 -0
  154. package/types/components/manage/AnchorPlugin/linkStrategy.d.ts +11 -0
  155. package/types/components/manage/AnchorPlugin/utils/EditorUtils.d.ts +10 -0
  156. package/types/components/manage/BlockChooser/BlockChooser.d.ts +2 -0
  157. package/types/components/manage/BlockChooser/BlockChooser.test.d.ts +1 -0
  158. package/types/components/manage/BlockChooser/BlockChooserButton.d.ts +3 -0
  159. package/types/components/manage/BlockChooser/BlockChooserButton.test.d.ts +1 -0
  160. package/types/components/manage/BlockChooser/BlockChooserSearch.d.ts +5 -0
  161. package/types/components/manage/BlockChooser/BlockChooserSearch.test.d.ts +1 -0
  162. package/types/components/manage/Blocks/Block/BlocksForm.d.ts +2 -0
  163. package/types/components/manage/Blocks/Block/BlocksForm.test.d.ts +1 -0
  164. package/types/components/manage/Blocks/Block/DefaultEdit.d.ts +2 -0
  165. package/types/components/manage/Blocks/Block/DefaultView.d.ts +2 -0
  166. package/types/components/manage/Blocks/Block/Edit.d.ts +51 -0
  167. package/types/components/manage/Blocks/Block/EditBlockWrapper.d.ts +4 -0
  168. package/types/components/manage/Blocks/Block/Schema.d.ts +51 -0
  169. package/types/components/manage/Blocks/Block/Settings.d.ts +4 -0
  170. package/types/components/manage/Blocks/Block/Settings.test.d.ts +1 -0
  171. package/types/components/manage/Blocks/Block/Style.d.ts +5 -0
  172. package/types/components/manage/Blocks/Block/Style.test.d.ts +1 -0
  173. package/types/components/manage/Blocks/Block/StyleWrapper.d.ts +2 -0
  174. package/types/components/manage/Blocks/Container/Data.d.ts +2 -0
  175. package/types/components/manage/Blocks/Container/Edit.d.ts +12 -0
  176. package/types/components/manage/Blocks/Container/EditBlockWrapper.d.ts +2 -0
  177. package/types/components/manage/Blocks/Container/NewBlockAddButton.d.ts +2 -0
  178. package/types/components/manage/Blocks/Container/SimpleContainerToolbar.d.ts +2 -0
  179. package/types/components/manage/Blocks/Description/Edit.d.ts +26 -0
  180. package/types/components/manage/Blocks/Description/Edit.test.d.ts +1 -0
  181. package/types/components/manage/Blocks/Description/View.d.ts +11 -0
  182. package/types/components/manage/Blocks/Description/View.test.d.ts +1 -0
  183. package/types/components/manage/Blocks/Grid/Edit.d.ts +11 -0
  184. package/types/components/manage/Blocks/Grid/View.d.ts +2 -0
  185. package/types/components/manage/Blocks/Grid/adapter.d.ts +7 -0
  186. package/types/components/manage/Blocks/Grid/schema.d.ts +15 -0
  187. package/types/components/manage/Blocks/Grid/templates.d.ts +7 -0
  188. package/types/components/manage/Blocks/HTML/Edit.d.ts +2 -0
  189. package/types/components/manage/Blocks/HTML/Edit.test.d.ts +1 -0
  190. package/types/components/manage/Blocks/HTML/View.d.ts +9 -0
  191. package/types/components/manage/Blocks/HTML/View.test.d.ts +1 -0
  192. package/types/components/manage/Blocks/HeroImageLeft/Data.d.ts +2 -0
  193. package/types/components/manage/Blocks/HeroImageLeft/Edit.d.ts +2 -0
  194. package/types/components/manage/Blocks/HeroImageLeft/Edit.test.d.ts +1 -0
  195. package/types/components/manage/Blocks/HeroImageLeft/View.d.ts +9 -0
  196. package/types/components/manage/Blocks/HeroImageLeft/View.test.d.ts +1 -0
  197. package/types/components/manage/Blocks/HeroImageLeft/schema.d.ts +24 -0
  198. package/types/components/manage/Blocks/Image/Edit.d.ts +4 -0
  199. package/types/components/manage/Blocks/Image/Edit.test.d.ts +1 -0
  200. package/types/components/manage/Blocks/Image/ImageSidebar.d.ts +9 -0
  201. package/types/components/manage/Blocks/Image/ImageSidebar.test.d.ts +1 -0
  202. package/types/components/manage/Blocks/Image/LayoutSchema.d.ts +2 -0
  203. package/types/components/manage/Blocks/Image/View.d.ts +13 -0
  204. package/types/components/manage/Blocks/Image/View.test.d.ts +1 -0
  205. package/types/components/manage/Blocks/Image/schema.d.ts +41 -0
  206. package/types/components/manage/Blocks/Image/utils.d.ts +1 -0
  207. package/types/components/manage/Blocks/LeadImage/Edit.d.ts +4 -0
  208. package/types/components/manage/Blocks/LeadImage/Edit.test.d.ts +1 -0
  209. package/types/components/manage/Blocks/LeadImage/LeadImageSidebar.d.ts +24 -0
  210. package/types/components/manage/Blocks/LeadImage/LeadImageSidebar.test.d.ts +1 -0
  211. package/types/components/manage/Blocks/LeadImage/View.d.ts +11 -0
  212. package/types/components/manage/Blocks/LeadImage/View.test.d.ts +1 -0
  213. package/types/components/manage/Blocks/LeadImage/utils.d.ts +1 -0
  214. package/types/components/manage/Blocks/Listing/DefaultNoResultsComponent.d.ts +2 -0
  215. package/types/components/manage/Blocks/Listing/DefaultTemplate.d.ts +15 -0
  216. package/types/components/manage/Blocks/Listing/Edit.d.ts +2 -0
  217. package/types/components/manage/Blocks/Listing/GalleryNoResultsComponent.d.ts +2 -0
  218. package/types/components/manage/Blocks/Listing/ImageGallery.d.ts +9 -0
  219. package/types/components/manage/Blocks/Listing/ListingBody.d.ts +4 -0
  220. package/types/components/manage/Blocks/Listing/ListingBody.test.d.ts +1 -0
  221. package/types/components/manage/Blocks/Listing/ListingData.d.ts +9 -0
  222. package/types/components/manage/Blocks/Listing/ListingData.test.d.ts +1 -0
  223. package/types/components/manage/Blocks/Listing/SummaryTemplate.d.ts +14 -0
  224. package/types/components/manage/Blocks/Listing/View.d.ts +2 -0
  225. package/types/components/manage/Blocks/Listing/View.test.d.ts +1 -0
  226. package/types/components/manage/Blocks/Listing/getAsyncData.d.ts +7 -0
  227. package/types/components/manage/Blocks/Listing/schema.d.ts +35 -0
  228. package/types/components/manage/Blocks/Listing/withQuerystringResults.d.ts +1 -0
  229. package/types/components/manage/Blocks/Maps/Edit.d.ts +2 -0
  230. package/types/components/manage/Blocks/Maps/Edit.test.d.ts +1 -0
  231. package/types/components/manage/Blocks/Maps/MapsSidebar.d.ts +2 -0
  232. package/types/components/manage/Blocks/Maps/MapsSidebar.test.d.ts +1 -0
  233. package/types/components/manage/Blocks/Maps/View.d.ts +4 -0
  234. package/types/components/manage/Blocks/Maps/View.test.d.ts +1 -0
  235. package/types/components/manage/Blocks/Maps/schema.d.ts +23 -0
  236. package/types/components/manage/Blocks/Search/SearchBlockEdit.d.ts +5 -0
  237. package/types/components/manage/Blocks/Search/SearchBlockView.d.ts +6 -0
  238. package/types/components/manage/Blocks/Search/SelectStyling.d.ts +11 -0
  239. package/types/components/manage/Blocks/Search/components/CheckboxFacet.d.ts +14 -0
  240. package/types/components/manage/Blocks/Search/components/CheckboxFacet.test.d.ts +1 -0
  241. package/types/components/manage/Blocks/Search/components/DateRangeFacet.d.ts +2 -0
  242. package/types/components/manage/Blocks/Search/components/DateRangeFacet.test.d.ts +1 -0
  243. package/types/components/manage/Blocks/Search/components/DateRangeFacetFilterListEntry.d.ts +2 -0
  244. package/types/components/manage/Blocks/Search/components/Facets.d.ts +2 -0
  245. package/types/components/manage/Blocks/Search/components/FilterList.d.ts +6 -0
  246. package/types/components/manage/Blocks/Search/components/FilterList.test.d.ts +1 -0
  247. package/types/components/manage/Blocks/Search/components/SearchDetails.d.ts +7 -0
  248. package/types/components/manage/Blocks/Search/components/SearchDetails.test.d.ts +1 -0
  249. package/types/components/manage/Blocks/Search/components/SearchInput.d.ts +2 -0
  250. package/types/components/manage/Blocks/Search/components/SearchInput.test.d.ts +1 -0
  251. package/types/components/manage/Blocks/Search/components/SelectFacet.d.ts +2 -0
  252. package/types/components/manage/Blocks/Search/components/SelectFacet.test.d.ts +1 -0
  253. package/types/components/manage/Blocks/Search/components/SelectFacetFilterListEntry.d.ts +2 -0
  254. package/types/components/manage/Blocks/Search/components/SelectStyling.d.ts +24 -0
  255. package/types/components/manage/Blocks/Search/components/SortOn.d.ts +4 -0
  256. package/types/components/manage/Blocks/Search/components/ToggleFacet.d.ts +17 -0
  257. package/types/components/manage/Blocks/Search/components/ToggleFacetFilterListEntry.d.ts +2 -0
  258. package/types/components/manage/Blocks/Search/components/ViewSwitcher.d.ts +4 -0
  259. package/types/components/manage/Blocks/Search/components/base.d.ts +23 -0
  260. package/types/components/manage/Blocks/Search/components/index.d.ts +13 -0
  261. package/types/components/manage/Blocks/Search/hocs/index.d.ts +2 -0
  262. package/types/components/manage/Blocks/Search/hocs/withQueryString.d.ts +8 -0
  263. package/types/components/manage/Blocks/Search/hocs/withSearch.d.ts +5 -0
  264. package/types/components/manage/Blocks/Search/layout/LeftColumnFacets.d.ts +2 -0
  265. package/types/components/manage/Blocks/Search/layout/RightColumnFacets.d.ts +2 -0
  266. package/types/components/manage/Blocks/Search/layout/TopSideFacets.d.ts +2 -0
  267. package/types/components/manage/Blocks/Search/schema.d.ts +108 -0
  268. package/types/components/manage/Blocks/Search/utils.d.ts +4 -0
  269. package/types/components/manage/Blocks/Search/widgets/SelectMetadataField.d.ts +5 -0
  270. package/types/components/manage/Blocks/Table/Cell.d.ts +3 -0
  271. package/types/components/manage/Blocks/Table/Cell.test.d.ts +1 -0
  272. package/types/components/manage/Blocks/Table/Edit.d.ts +2 -0
  273. package/types/components/manage/Blocks/Table/Edit.test.d.ts +1 -0
  274. package/types/components/manage/Blocks/Table/View.d.ts +9 -0
  275. package/types/components/manage/Blocks/Table/View.test.d.ts +1 -0
  276. package/types/components/manage/Blocks/Teaser/Body.d.ts +8 -0
  277. package/types/components/manage/Blocks/Teaser/Data.d.ts +2 -0
  278. package/types/components/manage/Blocks/Teaser/DefaultBody.d.ts +8 -0
  279. package/types/components/manage/Blocks/Teaser/Edit.d.ts +2 -0
  280. package/types/components/manage/Blocks/Teaser/View.d.ts +2 -0
  281. package/types/components/manage/Blocks/Teaser/adapter.d.ts +7 -0
  282. package/types/components/manage/Blocks/Teaser/schema.d.ts +46 -0
  283. package/types/components/manage/Blocks/Text/Edit.d.ts +92 -0
  284. package/types/components/manage/Blocks/Text/Edit.test.d.ts +1 -0
  285. package/types/components/manage/Blocks/Text/Schema.d.ts +2 -0
  286. package/types/components/manage/Blocks/Text/View.d.ts +9 -0
  287. package/types/components/manage/Blocks/Text/View.test.d.ts +1 -0
  288. package/types/components/manage/Blocks/Title/Edit.d.ts +26 -0
  289. package/types/components/manage/Blocks/Title/Edit.test.d.ts +1 -0
  290. package/types/components/manage/Blocks/Title/View.d.ts +5 -0
  291. package/types/components/manage/Blocks/Title/View.test.d.ts +1 -0
  292. package/types/components/manage/Blocks/ToC/Edit.d.ts +7 -0
  293. package/types/components/manage/Blocks/ToC/Schema.d.ts +35 -0
  294. package/types/components/manage/Blocks/ToC/View.d.ts +10 -0
  295. package/types/components/manage/Blocks/ToC/variations/DefaultTocRenderer.d.ts +4 -0
  296. package/types/components/manage/Blocks/ToC/variations/DefaultTocRenderer.test.d.ts +1 -0
  297. package/types/components/manage/Blocks/ToC/variations/HorizontalMenu.d.ts +4 -0
  298. package/types/components/manage/Blocks/ToC/variations/index.d.ts +16 -0
  299. package/types/components/manage/Blocks/Video/Body.d.ts +10 -0
  300. package/types/components/manage/Blocks/Video/Edit.d.ts +4 -0
  301. package/types/components/manage/Blocks/Video/Edit.test.d.ts +1 -0
  302. package/types/components/manage/Blocks/Video/VideoSidebar.d.ts +2 -0
  303. package/types/components/manage/Blocks/Video/VideoSidebar.test.d.ts +1 -0
  304. package/types/components/manage/Blocks/Video/View.d.ts +2 -0
  305. package/types/components/manage/Blocks/Video/View.test.d.ts +1 -0
  306. package/types/components/manage/Blocks/Video/schema.d.ts +25 -0
  307. package/types/components/manage/ConditionalLink/ConditionalLink.d.ts +15 -0
  308. package/types/components/manage/ConditionalLink/ConditionalLink.test.d.ts +1 -0
  309. package/types/components/manage/Contents/Contents.d.ts +7 -0
  310. package/types/components/manage/Contents/Contents.test.d.ts +1 -0
  311. package/types/components/manage/Contents/ContentsBreadcrumbs.Multilingual.test.d.ts +1 -0
  312. package/types/components/manage/Contents/ContentsBreadcrumbs.d.ts +2 -0
  313. package/types/components/manage/Contents/ContentsBreadcrumbs.test.d.ts +1 -0
  314. package/types/components/manage/Contents/ContentsBreadcrumbsHomeItem.d.ts +2 -0
  315. package/types/components/manage/Contents/ContentsBreadcrumbsRootItem.d.ts +2 -0
  316. package/types/components/manage/Contents/ContentsIndexHeader.d.ts +21 -0
  317. package/types/components/manage/Contents/ContentsIndexHeader.test.d.ts +1 -0
  318. package/types/components/manage/Contents/ContentsItem.d.ts +37 -0
  319. package/types/components/manage/Contents/ContentsItem.test.d.ts +1 -0
  320. package/types/components/manage/Contents/ContentsPropertiesModal.d.ts +10 -0
  321. package/types/components/manage/Contents/ContentsPropertiesModal.test.d.ts +1 -0
  322. package/types/components/manage/Contents/ContentsRenameModal.d.ts +10 -0
  323. package/types/components/manage/Contents/ContentsRenameModal.stories.d.ts +8 -0
  324. package/types/components/manage/Contents/ContentsRenameModal.test.d.ts +1 -0
  325. package/types/components/manage/Contents/ContentsTagsModal.d.ts +10 -0
  326. package/types/components/manage/Contents/ContentsTagsModal.stories.d.ts +19 -0
  327. package/types/components/manage/Contents/ContentsTagsModal.test.d.ts +1 -0
  328. package/types/components/manage/Contents/ContentsUploadModal.d.ts +2 -0
  329. package/types/components/manage/Contents/ContentsUploadModal.test.d.ts +1 -0
  330. package/types/components/manage/Contents/ContentsWorkflowModal.d.ts +10 -0
  331. package/types/components/manage/Contents/ContentsWorkflowModal.test.d.ts +1 -0
  332. package/types/components/manage/Contents/circle.d.ts +4 -0
  333. package/types/components/manage/Controlpanels/AddonsControlpanel.d.ts +2 -0
  334. package/types/components/manage/Controlpanels/AddonsControlpanel.test.d.ts +1 -0
  335. package/types/components/manage/Controlpanels/Aliases.d.ts +2 -0
  336. package/types/components/manage/Controlpanels/Aliases.test.d.ts +1 -0
  337. package/types/components/manage/Controlpanels/ContentType.d.ts +2 -0
  338. package/types/components/manage/Controlpanels/ContentType.test.d.ts +1 -0
  339. package/types/components/manage/Controlpanels/ContentTypeLayout.d.ts +2 -0
  340. package/types/components/manage/Controlpanels/ContentTypeLayout.test.d.ts +1 -0
  341. package/types/components/manage/Controlpanels/ContentTypeSchema.d.ts +2 -0
  342. package/types/components/manage/Controlpanels/ContentTypes.d.ts +2 -0
  343. package/types/components/manage/Controlpanels/ContentTypes.test.d.ts +1 -0
  344. package/types/components/manage/Controlpanels/ContentTypesActions.d.ts +4 -0
  345. package/types/components/manage/Controlpanels/Controlpanel.d.ts +4 -0
  346. package/types/components/manage/Controlpanels/Controlpanel.test.d.ts +1 -0
  347. package/types/components/manage/Controlpanels/Controlpanels.d.ts +17 -0
  348. package/types/components/manage/Controlpanels/Controlpanels.test.d.ts +1 -0
  349. package/types/components/manage/Controlpanels/DatabaseInformation.d.ts +2 -0
  350. package/types/components/manage/Controlpanels/Groups/GroupsControlpanel.d.ts +2 -0
  351. package/types/components/manage/Controlpanels/Groups/GroupsControlpanel.test.d.ts +1 -0
  352. package/types/components/manage/Controlpanels/Groups/RenderGroups.d.ts +4 -0
  353. package/types/components/manage/Controlpanels/Groups/RenderGroups.test.d.ts +1 -0
  354. package/types/components/manage/Controlpanels/ModerateComments.d.ts +2 -0
  355. package/types/components/manage/Controlpanels/ModerateComments.test.d.ts +1 -0
  356. package/types/components/manage/Controlpanels/Relations/BrokenRelations.d.ts +2 -0
  357. package/types/components/manage/Controlpanels/Relations/Relations.d.ts +2 -0
  358. package/types/components/manage/Controlpanels/Relations/RelationsListing.d.ts +8 -0
  359. package/types/components/manage/Controlpanels/Relations/RelationsMatrix.d.ts +2 -0
  360. package/types/components/manage/Controlpanels/Rules/AddRule.d.ts +2 -0
  361. package/types/components/manage/Controlpanels/Rules/AddRule.test.d.ts +1 -0
  362. package/types/components/manage/Controlpanels/Rules/ConfigureRule.d.ts +2 -0
  363. package/types/components/manage/Controlpanels/Rules/ConfigureRule.test.d.ts +1 -0
  364. package/types/components/manage/Controlpanels/Rules/EditRule.d.ts +2 -0
  365. package/types/components/manage/Controlpanels/Rules/EditRule.test.d.ts +1 -0
  366. package/types/components/manage/Controlpanels/Rules/Rules.d.ts +2 -0
  367. package/types/components/manage/Controlpanels/Rules/Rules.test.d.ts +1 -0
  368. package/types/components/manage/Controlpanels/Rules/components/VariableModal.d.ts +2 -0
  369. package/types/components/manage/Controlpanels/Rules/components/VariableModal.test.d.ts +1 -0
  370. package/types/components/manage/Controlpanels/UndoControlpanel.d.ts +2 -0
  371. package/types/components/manage/Controlpanels/UndoControlpanel.test.d.ts +1 -0
  372. package/types/components/manage/Controlpanels/UpgradeControlPanel.d.ts +2 -0
  373. package/types/components/manage/Controlpanels/Users/RenderUsers.d.ts +2 -0
  374. package/types/components/manage/Controlpanels/Users/RenderUsers.test.d.ts +1 -0
  375. package/types/components/manage/Controlpanels/Users/UserGroupMembershipControlPanel.d.ts +2 -0
  376. package/types/components/manage/Controlpanels/Users/UserGroupMembershipControlPanel.test.d.ts +1 -0
  377. package/types/components/manage/Controlpanels/Users/UserGroupMembershipListing.d.ts +9 -0
  378. package/types/components/manage/Controlpanels/Users/UserGroupMembershipMatrix.d.ts +5 -0
  379. package/types/components/manage/Controlpanels/Users/UsersControlpanel.d.ts +2 -0
  380. package/types/components/manage/Controlpanels/Users/UsersControlpanel.test.d.ts +1 -0
  381. package/types/components/manage/Controlpanels/VersionOverview.d.ts +10 -0
  382. package/types/components/manage/Delete/Delete.d.ts +2 -0
  383. package/types/components/manage/Delete/Delete.test.d.ts +1 -0
  384. package/types/components/manage/Diff/Diff.d.ts +2 -0
  385. package/types/components/manage/Diff/Diff.test.d.ts +1 -0
  386. package/types/components/manage/Diff/DiffField.d.ts +2 -0
  387. package/types/components/manage/Diff/DiffField.test.d.ts +1 -0
  388. package/types/components/manage/Display/Display.d.ts +4 -0
  389. package/types/components/manage/Display/Display.test.d.ts +1 -0
  390. package/types/components/manage/DragDropList/DragDropList.d.ts +2 -0
  391. package/types/components/manage/Edit/Edit.d.ts +5 -0
  392. package/types/components/manage/Edit/Edit.test.d.ts +1 -0
  393. package/types/components/manage/Form/BlockDataForm.d.ts +1 -0
  394. package/types/components/manage/Form/BlockDataForm.test.d.ts +1 -0
  395. package/types/components/manage/Form/BlocksToolbar.d.ts +14 -0
  396. package/types/components/manage/Form/Field.d.ts +4 -0
  397. package/types/components/manage/Form/Field.test.d.ts +1 -0
  398. package/types/components/manage/Form/Form.d.ts +4 -0
  399. package/types/components/manage/Form/Form.test.d.ts +1 -0
  400. package/types/components/manage/Form/InlineForm.d.ts +4 -0
  401. package/types/components/manage/Form/InlineForm.test.d.ts +1 -0
  402. package/types/components/manage/Form/InlineFormState.d.ts +3 -0
  403. package/types/components/manage/Form/ModalForm.d.ts +4 -0
  404. package/types/components/manage/Form/ModalForm.test.d.ts +1 -0
  405. package/types/components/manage/Form/UndoToolbar.d.ts +7 -0
  406. package/types/components/manage/History/History.d.ts +4 -0
  407. package/types/components/manage/History/History.test.d.ts +1 -0
  408. package/types/components/manage/LinkDetectionPlugin/link-detection-plugin.d.ts +11 -0
  409. package/types/components/manage/LinkDetectionPlugin/utils.d.ts +2 -0
  410. package/types/components/manage/LinkMore/LinkMore.d.ts +10 -0
  411. package/types/components/manage/LinksToItem/LinksToItem.d.ts +2 -0
  412. package/types/components/manage/LinksToItem/LinksToItem.test.d.ts +1 -0
  413. package/types/components/manage/LockingToastsFactory/LockingToastsFactory.d.ts +2 -0
  414. package/types/components/manage/MaybeWrap/MaybeWrap.d.ts +5 -0
  415. package/types/components/manage/MaybeWrap/MaybeWrap.test.d.ts +1 -0
  416. package/types/components/manage/Messages/Messages.d.ts +2 -0
  417. package/types/components/manage/Messages/Messages.test.d.ts +1 -0
  418. package/types/components/manage/Multilingual/CompareLanguages.d.ts +2 -0
  419. package/types/components/manage/Multilingual/CreateTranslation.d.ts +2 -0
  420. package/types/components/manage/Multilingual/CreateTranslation.test.d.ts +1 -0
  421. package/types/components/manage/Multilingual/ManageTranslations.d.ts +2 -0
  422. package/types/components/manage/Multilingual/ManageTranslations.test.d.ts +1 -0
  423. package/types/components/manage/Multilingual/TranslationObject.d.ts +9 -0
  424. package/types/components/manage/Pluggable/Pluggable.stories.d.ts +68 -0
  425. package/types/components/manage/Pluggable/Pluggable.test.d.ts +1 -0
  426. package/types/components/manage/Pluggable/index.d.ts +46 -0
  427. package/types/components/manage/Preferences/ChangePassword.d.ts +2 -0
  428. package/types/components/manage/Preferences/ChangePassword.test.d.ts +1 -0
  429. package/types/components/manage/Preferences/PersonalInformation.d.ts +2 -0
  430. package/types/components/manage/Preferences/PersonalInformation.test.d.ts +1 -0
  431. package/types/components/manage/Preferences/PersonalPreferences.d.ts +2 -0
  432. package/types/components/manage/Preferences/PersonalPreferences.test.d.ts +1 -0
  433. package/types/components/manage/ReactVirtualized/DynamicRowHeightList.d.ts +2 -0
  434. package/types/components/manage/Rules/Rules.d.ts +2 -0
  435. package/types/components/manage/Rules/Rules.test.d.ts +1 -0
  436. package/types/components/manage/Sharing/Sharing.d.ts +2 -0
  437. package/types/components/manage/Sharing/Sharing.test.d.ts +1 -0
  438. package/types/components/manage/Sidebar/AlignBlock.d.ts +8 -0
  439. package/types/components/manage/Sidebar/ObjectBrowser.d.ts +53 -0
  440. package/types/components/manage/Sidebar/ObjectBrowserBody.d.ts +2 -0
  441. package/types/components/manage/Sidebar/ObjectBrowserNav.d.ts +10 -0
  442. package/types/components/manage/Sidebar/ObjectBrowserNav.test.d.ts +1 -0
  443. package/types/components/manage/Sidebar/Sidebar.d.ts +6 -0
  444. package/types/components/manage/Sidebar/Sidebar.test.d.ts +1 -0
  445. package/types/components/manage/Sidebar/SidebarPopup.d.ts +17 -0
  446. package/types/components/manage/Sidebar/SidebarPopup.stories.d.ts +8 -0
  447. package/types/components/manage/Sidebar/SidebarPopup.test.d.ts +1 -0
  448. package/types/components/manage/Sidebar/SidebarPortal.d.ts +15 -0
  449. package/types/components/manage/Sidebar/SidebarPortal.test.d.ts +1 -0
  450. package/types/components/manage/TemplateChooser/TemplateChooser.d.ts +11 -0
  451. package/types/components/manage/TemplateChooser/TemplateChooser.test.d.ts +1 -0
  452. package/types/components/manage/TextLineEdit/TextLineEdit.d.ts +29 -0
  453. package/types/components/manage/TextLineEdit/TextLineEdit.stories.d.ts +17 -0
  454. package/types/components/manage/TextLineEdit/TextLineEdit.test.d.ts +1 -0
  455. package/types/components/manage/Toast/Toast.d.ts +12 -0
  456. package/types/components/manage/Toast/Toast.test.d.ts +1 -0
  457. package/types/components/manage/Toolbar/More.d.ts +4 -0
  458. package/types/components/manage/Toolbar/More.test.d.ts +1 -0
  459. package/types/components/manage/Toolbar/PersonalTools.d.ts +7 -0
  460. package/types/components/manage/Toolbar/PersonalTools.test.d.ts +1 -0
  461. package/types/components/manage/Toolbar/StandardWrapper.d.ts +12 -0
  462. package/types/components/manage/Toolbar/StandardWrapper.test.d.ts +1 -0
  463. package/types/components/manage/Toolbar/Stats.d.ts +2 -0
  464. package/types/components/manage/Toolbar/Toolbar.d.ts +2 -0
  465. package/types/components/manage/Toolbar/Toolbar.test.d.ts +1 -0
  466. package/types/components/manage/Toolbar/Types.d.ts +21 -0
  467. package/types/components/manage/Toolbar/Types.test.d.ts +1 -0
  468. package/types/components/manage/UniversalLink/UniversalLink.d.ts +22 -0
  469. package/types/components/manage/UniversalLink/UniversalLink.test.d.ts +1 -0
  470. package/types/components/manage/Widgets/AlignWidget.d.ts +12 -0
  471. package/types/components/manage/Widgets/AlignWidget.stories.d.ts +14 -0
  472. package/types/components/manage/Widgets/AlignWidget.test.d.ts +1 -0
  473. package/types/components/manage/Widgets/ArrayWidget.d.ts +7 -0
  474. package/types/components/manage/Widgets/ArrayWidget.stories.d.ts +25 -0
  475. package/types/components/manage/Widgets/ArrayWidget.test.d.ts +1 -0
  476. package/types/components/manage/Widgets/ButtonsWidget.d.ts +2 -0
  477. package/types/components/manage/Widgets/ButtonsWidget.stories.d.ts +14 -0
  478. package/types/components/manage/Widgets/ButtonsWidget.test.d.ts +1 -0
  479. package/types/components/manage/Widgets/CheckboxWidget.d.ts +4 -0
  480. package/types/components/manage/Widgets/CheckboxWidget.stories.d.ts +9 -0
  481. package/types/components/manage/Widgets/CheckboxWidget.test.d.ts +1 -0
  482. package/types/components/manage/Widgets/ColorPickerWidget.d.ts +22 -0
  483. package/types/components/manage/Widgets/ColorPickerWidget.stories.d.ts +8 -0
  484. package/types/components/manage/Widgets/ColorPickerWidget.test.d.ts +1 -0
  485. package/types/components/manage/Widgets/DatetimeWidget.d.ts +87 -0
  486. package/types/components/manage/Widgets/DatetimeWidget.stories.d.ts +9 -0
  487. package/types/components/manage/Widgets/DatetimeWidget.test.d.ts +1 -0
  488. package/types/components/manage/Widgets/EmailWidget.d.ts +49 -0
  489. package/types/components/manage/Widgets/EmailWidget.stories.d.ts +9 -0
  490. package/types/components/manage/Widgets/EmailWidget.test.d.ts +1 -0
  491. package/types/components/manage/Widgets/FileWidget.d.ts +4 -0
  492. package/types/components/manage/Widgets/FileWidget.stories.d.ts +9 -0
  493. package/types/components/manage/Widgets/FileWidget.test.d.ts +1 -0
  494. package/types/components/manage/Widgets/FormFieldWrapper.d.ts +4 -0
  495. package/types/components/manage/Widgets/FormFieldWrapper.stories.d.ts +13 -0
  496. package/types/components/manage/Widgets/IdWidget.d.ts +2 -0
  497. package/types/components/manage/Widgets/IdWidget.stories.d.ts +9 -0
  498. package/types/components/manage/Widgets/IdWidget.test.d.ts +1 -0
  499. package/types/components/manage/Widgets/ImageSizeWidget.d.ts +4 -0
  500. package/types/components/manage/Widgets/ImageSizeWidget.stories.d.ts +9 -0
  501. package/types/components/manage/Widgets/ImageSizeWidget.test.d.ts +1 -0
  502. package/types/components/manage/Widgets/InternalUrlWidget.d.ts +40 -0
  503. package/types/components/manage/Widgets/InternalUrlWidget.stories.d.ts +12 -0
  504. package/types/components/manage/Widgets/NumberWidget.d.ts +4 -0
  505. package/types/components/manage/Widgets/NumberWidget.stories.d.ts +9 -0
  506. package/types/components/manage/Widgets/NumberWidget.test.d.ts +1 -0
  507. package/types/components/manage/Widgets/ObjectBrowserWidget.d.ts +72 -0
  508. package/types/components/manage/Widgets/ObjectBrowserWidget.stories.d.ts +76 -0
  509. package/types/components/manage/Widgets/ObjectBrowserWidget.test.d.ts +1 -0
  510. package/types/components/manage/Widgets/ObjectListWidget.d.ts +30 -0
  511. package/types/components/manage/Widgets/ObjectListWidget.stories.d.ts +79 -0
  512. package/types/components/manage/Widgets/ObjectListWidget.test.d.ts +1 -0
  513. package/types/components/manage/Widgets/ObjectWidget.d.ts +31 -0
  514. package/types/components/manage/Widgets/ObjectWidget.stories.d.ts +13 -0
  515. package/types/components/manage/Widgets/ObjectWidget.test.d.ts +1 -0
  516. package/types/components/manage/Widgets/PasswordWidget.d.ts +4 -0
  517. package/types/components/manage/Widgets/PasswordWidget.stories.d.ts +9 -0
  518. package/types/components/manage/Widgets/PasswordWidget.test.d.ts +1 -0
  519. package/types/components/manage/Widgets/QuerySortOnWidget.d.ts +2 -0
  520. package/types/components/manage/Widgets/QueryWidget.d.ts +81 -0
  521. package/types/components/manage/Widgets/QueryWidget.stories.d.ts +9 -0
  522. package/types/components/manage/Widgets/QuerystringWidget.d.ts +44 -0
  523. package/types/components/manage/Widgets/QuerystringWidget.test.d.ts +1 -0
  524. package/types/components/manage/Widgets/RecurrenceWidget/ByDayField.d.ts +2 -0
  525. package/types/components/manage/Widgets/RecurrenceWidget/ByMonthDayField.d.ts +4 -0
  526. package/types/components/manage/Widgets/RecurrenceWidget/ByMonthField.d.ts +4 -0
  527. package/types/components/manage/Widgets/RecurrenceWidget/ByYearField.d.ts +4 -0
  528. package/types/components/manage/Widgets/RecurrenceWidget/EndField.d.ts +4 -0
  529. package/types/components/manage/Widgets/RecurrenceWidget/IntervalField.d.ts +28 -0
  530. package/types/components/manage/Widgets/RecurrenceWidget/MonthOfTheYearField.d.ts +2 -0
  531. package/types/components/manage/Widgets/RecurrenceWidget/Occurences.d.ts +5 -0
  532. package/types/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.d.ts +2 -0
  533. package/types/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.test.d.ts +1 -0
  534. package/types/components/manage/Widgets/RecurrenceWidget/SelectInput.d.ts +34 -0
  535. package/types/components/manage/Widgets/RecurrenceWidget/Utils.d.ts +61 -0
  536. package/types/components/manage/Widgets/RecurrenceWidget/WeekdayOfTheMonthField.d.ts +2 -0
  537. package/types/components/manage/Widgets/RecurrenceWidget/WeekdayOfTheMonthIndexField.d.ts +4 -0
  538. package/types/components/manage/Widgets/ReferenceWidget.d.ts +2 -0
  539. package/types/components/manage/Widgets/ReferenceWidget.test.d.ts +1 -0
  540. package/types/components/manage/Widgets/RegistryImageWidget.d.ts +4 -0
  541. package/types/components/manage/Widgets/RegistryImageWidget.test.d.ts +1 -0
  542. package/types/components/manage/Widgets/SchemaWidget.d.ts +4 -0
  543. package/types/components/manage/Widgets/SchemaWidget.test.d.ts +1 -0
  544. package/types/components/manage/Widgets/SchemaWidgetFieldset.d.ts +27 -0
  545. package/types/components/manage/Widgets/SchemaWidgetFieldset.test.d.ts +1 -0
  546. package/types/components/manage/Widgets/SelectAutoComplete.d.ts +7 -0
  547. package/types/components/manage/Widgets/SelectAutoComplete.test.d.ts +1 -0
  548. package/types/components/manage/Widgets/SelectAutocompleteWidget.stories.d.ts +29 -0
  549. package/types/components/manage/Widgets/SelectStyling.d.ts +24 -0
  550. package/types/components/manage/Widgets/SelectUtils.d.ts +33 -0
  551. package/types/components/manage/Widgets/SelectUtils.test.d.ts +1 -0
  552. package/types/components/manage/Widgets/SelectWidget.d.ts +5 -0
  553. package/types/components/manage/Widgets/SelectWidget.stories.d.ts +26 -0
  554. package/types/components/manage/Widgets/SelectWidget.test.d.ts +1 -0
  555. package/types/components/manage/Widgets/TextWidget.d.ts +4 -0
  556. package/types/components/manage/Widgets/TextWidget.stories.d.ts +9 -0
  557. package/types/components/manage/Widgets/TextWidget.test.d.ts +1 -0
  558. package/types/components/manage/Widgets/TextareaWidget.d.ts +4 -0
  559. package/types/components/manage/Widgets/TextareaWidget.stories.d.ts +9 -0
  560. package/types/components/manage/Widgets/TextareaWidget.test.d.ts +1 -0
  561. package/types/components/manage/Widgets/TokenWidget.d.ts +4 -0
  562. package/types/components/manage/Widgets/TokenWidget.stories.d.ts +21 -0
  563. package/types/components/manage/Widgets/TokenWidget.test.d.ts +1 -0
  564. package/types/components/manage/Widgets/UrlWidget.d.ts +40 -0
  565. package/types/components/manage/Widgets/UrlWidget.stories.d.ts +9 -0
  566. package/types/components/manage/Widgets/UrlWidget.test.d.ts +1 -0
  567. package/types/components/manage/Widgets/VocabularyTermsWidget.d.ts +2 -0
  568. package/types/components/manage/Widgets/VocabularyTermsWidget.stories.d.ts +9 -0
  569. package/types/components/manage/Widgets/VocabularyTermsWidget.test.d.ts +1 -0
  570. package/types/components/manage/Widgets/WysiwygWidget.d.ts +5 -0
  571. package/types/components/manage/Widgets/WysiwygWidget.stories.d.ts +9 -0
  572. package/types/components/manage/Widgets/WysiwygWidget.test.d.ts +1 -0
  573. package/types/components/manage/Widgets/__mocks__/react-sortable-hoc.d.ts +3 -0
  574. package/types/components/manage/Widgets/story.d.ts +4 -0
  575. package/types/components/manage/Workflow/Workflow.d.ts +2 -0
  576. package/types/components/manage/Workflow/Workflow.test.d.ts +1 -0
  577. package/types/components/manage/WorkingCopyToastsFactory/WorkingCopyToastsFactory.d.ts +2 -0
  578. package/types/components/theme/Anontools/Anontools.d.ts +16 -0
  579. package/types/components/theme/Anontools/Anontools.stories.d.ts +8 -0
  580. package/types/components/theme/Anontools/Anontools.test.d.ts +1 -0
  581. package/types/components/theme/App/App.d.ts +52 -0
  582. package/types/components/theme/App/App.test.d.ts +1 -0
  583. package/types/components/theme/AppExtras/AppExtras.d.ts +2 -0
  584. package/types/components/theme/AppExtras/AppExtras.test.d.ts +1 -0
  585. package/types/components/theme/Avatar/Avatar.d.ts +33 -0
  586. package/types/components/theme/Avatar/Avatar.test.d.ts +1 -0
  587. package/types/components/theme/Breadcrumbs/Breadcrumbs.d.ts +9 -0
  588. package/types/components/theme/Breadcrumbs/Breadcrumbs.stories.d.ts +10 -0
  589. package/types/components/theme/Breadcrumbs/Breadcrumbs.test.d.ts +1 -0
  590. package/types/components/theme/Comments/Comment.stories.d.ts +28 -0
  591. package/types/components/theme/Comments/CommentEditModal.d.ts +18 -0
  592. package/types/components/theme/Comments/CommentEditModal.stories.d.ts +29 -0
  593. package/types/components/theme/Comments/CommentEditModal.test.d.ts +1 -0
  594. package/types/components/theme/Comments/Comments.d.ts +2 -0
  595. package/types/components/theme/Comments/Comments.test.d.ts +1 -0
  596. package/types/components/theme/Component/Component.d.ts +10 -0
  597. package/types/components/theme/Component/Component.test.d.ts +1 -0
  598. package/types/components/theme/ConnectionRefused/ConnectionRefused.d.ts +2 -0
  599. package/types/components/theme/ConnectionRefused/ConnectionRefused.test.d.ts +1 -0
  600. package/types/components/theme/ContactForm/ContactForm.d.ts +2 -0
  601. package/types/components/theme/ContactForm/ContactForm.stories.d.ts +13 -0
  602. package/types/components/theme/ContactForm/ContactForm.test.d.ts +1 -0
  603. package/types/components/theme/ContentMetadataTags/ContentMetadataTags.d.ts +2 -0
  604. package/types/components/theme/CorsError/CorsError.d.ts +7 -0
  605. package/types/components/theme/CorsError/CorsError.test.d.ts +1 -0
  606. package/types/components/theme/Error/Error.d.ts +7 -0
  607. package/types/components/theme/Error/Error.test.d.ts +1 -0
  608. package/types/components/theme/Error/ErrorBoundary.d.ts +12 -0
  609. package/types/components/theme/Error/ErrorBoundary.test.d.ts +1 -0
  610. package/types/components/theme/Error/ServerError.d.ts +2 -0
  611. package/types/components/theme/EventDetails/EventDetails.d.ts +5 -0
  612. package/types/components/theme/EventDetails/EventDetails.stories.d.ts +49 -0
  613. package/types/components/theme/EventDetails/EventDetails.test.d.ts +1 -0
  614. package/types/components/theme/Footer/Footer.d.ts +4 -0
  615. package/types/components/theme/Footer/Footer.test.d.ts +1 -0
  616. package/types/components/theme/Forbidden/Forbidden.d.ts +2 -0
  617. package/types/components/theme/Forbidden/Forbidden.test.d.ts +1 -0
  618. package/types/components/theme/FormattedDate/FormattedDate.d.ts +14 -0
  619. package/types/components/theme/FormattedDate/FormattedDate.stories.d.ts +21 -0
  620. package/types/components/theme/FormattedDate/FormattedRelativeDate.d.ts +11 -0
  621. package/types/components/theme/FormattedDate/FormattedRelativeDate.stories.d.ts +58 -0
  622. package/types/components/theme/Header/Header.d.ts +17 -0
  623. package/types/components/theme/Header/Header.stories.d.ts +12 -0
  624. package/types/components/theme/Header/Header.test.d.ts +1 -0
  625. package/types/components/theme/Icon/Icon.d.ts +55 -0
  626. package/types/components/theme/Icon/Icon.stories.d.ts +13 -0
  627. package/types/components/theme/Icon/Icon.test.d.ts +1 -0
  628. package/types/components/theme/Image/Image.d.ts +23 -0
  629. package/types/components/theme/Image/Image.test.d.ts +1 -0
  630. package/types/components/theme/LanguageSelector/LanguageSelector.d.ts +11 -0
  631. package/types/components/theme/LanguageSelector/LanguageSelector.test.d.ts +1 -0
  632. package/types/components/theme/Login/Login.d.ts +2 -0
  633. package/types/components/theme/Login/Login.stories.d.ts +8 -0
  634. package/types/components/theme/Login/Login.test.d.ts +1 -0
  635. package/types/components/theme/Logo/Logo.Multilingual.test.d.ts +1 -0
  636. package/types/components/theme/Logo/Logo.d.ts +8 -0
  637. package/types/components/theme/Logo/Logo.stories.d.ts +8 -0
  638. package/types/components/theme/Logo/Logo.test.d.ts +1 -0
  639. package/types/components/theme/Logout/Logout.d.ts +4 -0
  640. package/types/components/theme/Logout/Logout.test.d.ts +1 -0
  641. package/types/components/theme/MultilingualRedirector/MultilingualRedirector.d.ts +2 -0
  642. package/types/components/theme/MultilingualRedirector/MultilingualRedirector.test.d.ts +1 -0
  643. package/types/components/theme/Navigation/ContextNavigation.d.ts +13 -0
  644. package/types/components/theme/Navigation/ContextNavigation.stories.d.ts +8 -0
  645. package/types/components/theme/Navigation/ContextNavigation.test.d.ts +1 -0
  646. package/types/components/theme/Navigation/NavItem.d.ts +5 -0
  647. package/types/components/theme/Navigation/NavItems.d.ts +5 -0
  648. package/types/components/theme/Navigation/Navigation.Multilingual.test.d.ts +1 -0
  649. package/types/components/theme/Navigation/Navigation.d.ts +7 -0
  650. package/types/components/theme/Navigation/Navigation.test.d.ts +1 -0
  651. package/types/components/theme/Navigation/withContentNavigation.d.ts +14 -0
  652. package/types/components/theme/NotFound/NotFound.d.ts +2 -0
  653. package/types/components/theme/NotFound/NotFound.test.d.ts +1 -0
  654. package/types/components/theme/OutdatedBrowser/OutdatedBrowser.d.ts +2 -0
  655. package/types/components/theme/Pagination/Pagination.d.ts +4 -0
  656. package/types/components/theme/Pagination/Pagination.test.d.ts +1 -0
  657. package/types/components/theme/PasswordReset/PasswordReset.d.ts +2 -0
  658. package/types/components/theme/PasswordReset/PasswordReset.test.d.ts +1 -0
  659. package/types/components/theme/PasswordReset/RequestPasswordReset.d.ts +2 -0
  660. package/types/components/theme/PasswordReset/RequestPasswordReset.test.d.ts +1 -0
  661. package/types/components/theme/Popup/Popup.d.ts +11 -0
  662. package/types/components/theme/PreviewImage/PreviewImage.d.ts +17 -0
  663. package/types/components/theme/PreviewImage/PreviewImage.test.d.ts +1 -0
  664. package/types/components/theme/Register/Register.d.ts +2 -0
  665. package/types/components/theme/Register/Register.test.d.ts +1 -0
  666. package/types/components/theme/RequestTimeout/RequestTimeout.d.ts +6 -0
  667. package/types/components/theme/RequestTimeout/RequestTimeout.test.d.ts +1 -0
  668. package/types/components/theme/Search/Search.d.ts +5 -0
  669. package/types/components/theme/Search/Search.test.d.ts +1 -0
  670. package/types/components/theme/Search/SearchTags.d.ts +2 -0
  671. package/types/components/theme/Search/SearchTags.test.d.ts +1 -0
  672. package/types/components/theme/SearchWidget/SearchWidget.d.ts +2 -0
  673. package/types/components/theme/SearchWidget/SearchWidget.stories.d.ts +7 -0
  674. package/types/components/theme/SearchWidget/SearchWidget.test.d.ts +1 -0
  675. package/types/components/theme/Sitemap/Sitemap.d.ts +6 -0
  676. package/types/components/theme/Sitemap/Sitemap.test.d.ts +1 -0
  677. package/types/components/theme/SkipLinks/SkipLinks.d.ts +2 -0
  678. package/types/components/theme/SkipLinks/SkipLinks.test.d.ts +1 -0
  679. package/types/components/theme/SocialSharing/SocialSharing.d.ts +17 -0
  680. package/types/components/theme/SocialSharing/SocialSharing.test.d.ts +1 -0
  681. package/types/components/theme/Tags/Tags.d.ts +17 -0
  682. package/types/components/theme/Tags/Tags.test.d.ts +1 -0
  683. package/types/components/theme/Title/Title.d.ts +16 -0
  684. package/types/components/theme/Title/Title.test.d.ts +1 -0
  685. package/types/components/theme/Unauthorized/Unauthorized.d.ts +2 -0
  686. package/types/components/theme/Unauthorized/Unauthorized.test.d.ts +1 -0
  687. package/types/components/theme/View/AlbumView.d.ts +22 -0
  688. package/types/components/theme/View/AlbumView.test.d.ts +1 -0
  689. package/types/components/theme/View/DefaultView.d.ts +4 -0
  690. package/types/components/theme/View/DefaultView.test.d.ts +1 -0
  691. package/types/components/theme/View/EventDatesInfo.d.ts +16 -0
  692. package/types/components/theme/View/EventDatesInfo.test.d.ts +1 -0
  693. package/types/components/theme/View/EventView.d.ts +13 -0
  694. package/types/components/theme/View/EventView.test.d.ts +1 -0
  695. package/types/components/theme/View/FileView.d.ts +15 -0
  696. package/types/components/theme/View/FileView.test.d.ts +1 -0
  697. package/types/components/theme/View/ImageView.d.ts +15 -0
  698. package/types/components/theme/View/ImageView.test.d.ts +1 -0
  699. package/types/components/theme/View/LinkView.d.ts +17 -0
  700. package/types/components/theme/View/LinkView.test.d.ts +1 -0
  701. package/types/components/theme/View/ListingView.d.ts +15 -0
  702. package/types/components/theme/View/ListingView.test.d.ts +1 -0
  703. package/types/components/theme/View/NewsItemView.d.ts +15 -0
  704. package/types/components/theme/View/NewsItemView.test.d.ts +1 -0
  705. package/types/components/theme/View/RenderBlocks.d.ts +2 -0
  706. package/types/components/theme/View/RenderBlocks.test.d.ts +1 -0
  707. package/types/components/theme/View/RenderEmptyBlock.d.ts +2 -0
  708. package/types/components/theme/View/SummaryView.d.ts +13 -0
  709. package/types/components/theme/View/SummaryView.test.d.ts +1 -0
  710. package/types/components/theme/View/TabularView.d.ts +13 -0
  711. package/types/components/theme/View/TabularView.test.d.ts +1 -0
  712. package/types/components/theme/View/View.d.ts +2 -0
  713. package/types/components/theme/View/View.test.d.ts +1 -0
  714. package/types/components/theme/Widgets/ArrayWidget.d.ts +6 -0
  715. package/types/components/theme/Widgets/ArrayWidget.test.d.ts +1 -0
  716. package/types/components/theme/Widgets/BooleanWidget.d.ts +4 -0
  717. package/types/components/theme/Widgets/BooleanWidget.stories.d.ts +8 -0
  718. package/types/components/theme/Widgets/BooleanWidget.test.d.ts +1 -0
  719. package/types/components/theme/Widgets/DateWidget.d.ts +7 -0
  720. package/types/components/theme/Widgets/DateWidget.stories.d.ts +8 -0
  721. package/types/components/theme/Widgets/DateWidget.test.d.ts +1 -0
  722. package/types/components/theme/Widgets/DatetimeWidget.d.ts +7 -0
  723. package/types/components/theme/Widgets/DatetimeWidget.stories.d.ts +8 -0
  724. package/types/components/theme/Widgets/DatetimeWidget.test.d.ts +1 -0
  725. package/types/components/theme/Widgets/DescriptionWidget.d.ts +6 -0
  726. package/types/components/theme/Widgets/DescriptionWidget.stories.d.ts +8 -0
  727. package/types/components/theme/Widgets/DescriptionWidget.test.d.ts +1 -0
  728. package/types/components/theme/Widgets/EmailWidget.d.ts +6 -0
  729. package/types/components/theme/Widgets/EmailWidget.stories.d.ts +8 -0
  730. package/types/components/theme/Widgets/EmailWidget.test.d.ts +1 -0
  731. package/types/components/theme/Widgets/FileWidget.d.ts +6 -0
  732. package/types/components/theme/Widgets/FileWidget.stories.d.ts +8 -0
  733. package/types/components/theme/Widgets/FileWidget.test.d.ts +1 -0
  734. package/types/components/theme/Widgets/ImageWidget.d.ts +5 -0
  735. package/types/components/theme/Widgets/ImageWidget.stories.d.ts +8 -0
  736. package/types/components/theme/Widgets/ImageWidget.test.d.ts +1 -0
  737. package/types/components/theme/Widgets/PasswordWidget.d.ts +6 -0
  738. package/types/components/theme/Widgets/PasswordWidget.stories.d.ts +8 -0
  739. package/types/components/theme/Widgets/PasswordWidget.test.d.ts +1 -0
  740. package/types/components/theme/Widgets/RelationWidget.d.ts +6 -0
  741. package/types/components/theme/Widgets/RelationWidget.stories.d.ts +51 -0
  742. package/types/components/theme/Widgets/RelationWidget.test.d.ts +1 -0
  743. package/types/components/theme/Widgets/RelationsWidget.d.ts +6 -0
  744. package/types/components/theme/Widgets/RelationsWidget.stories.d.ts +8 -0
  745. package/types/components/theme/Widgets/RelationsWidget.test.d.ts +1 -0
  746. package/types/components/theme/Widgets/RichTextWidget.d.ts +5 -0
  747. package/types/components/theme/Widgets/RichTextWidget.stories.d.ts +8 -0
  748. package/types/components/theme/Widgets/RichTextWidget.test.d.ts +1 -0
  749. package/types/components/theme/Widgets/SelectWidget.d.ts +6 -0
  750. package/types/components/theme/Widgets/SelectWidget.stories.d.ts +8 -0
  751. package/types/components/theme/Widgets/SelectWidget.test.d.ts +1 -0
  752. package/types/components/theme/Widgets/TextWidget.d.ts +6 -0
  753. package/types/components/theme/Widgets/TextWidget.stories.d.ts +8 -0
  754. package/types/components/theme/Widgets/TextWidget.test.d.ts +1 -0
  755. package/types/components/theme/Widgets/TitleWidget.d.ts +6 -0
  756. package/types/components/theme/Widgets/TitleWidget.stories.d.ts +8 -0
  757. package/types/components/theme/Widgets/TitleWidget.test.d.ts +1 -0
  758. package/types/components/theme/Widgets/TokenWidget.d.ts +6 -0
  759. package/types/components/theme/Widgets/TokenWidget.stories.d.ts +8 -0
  760. package/types/components/theme/Widgets/TokenWidget.test.d.ts +1 -0
  761. package/types/components/theme/Widgets/UrlWidget.d.ts +6 -0
  762. package/types/components/theme/Widgets/UrlWidget.stories.d.ts +8 -0
  763. package/types/components/theme/Widgets/UrlWidget.test.d.ts +1 -0
  764. package/types/config/Blocks.d.ts +53 -0
  765. package/types/config/Components.d.ts +11 -0
  766. package/types/config/ContentIcons.d.ts +9 -0
  767. package/types/config/ControlPanels.d.ts +25 -0
  768. package/types/config/Loadables.d.ts +30 -0
  769. package/types/config/NonContentRoutes.d.ts +1 -0
  770. package/types/config/RichTextEditor/Blocks.d.ts +5 -0
  771. package/types/config/RichTextEditor/FromHTML.d.ts +3 -0
  772. package/types/config/RichTextEditor/Plugins.d.ts +5 -0
  773. package/types/config/RichTextEditor/Styles.d.ts +10 -0
  774. package/types/config/RichTextEditor/ToHTML.d.ts +75 -0
  775. package/types/config/RichTextEditor/index.d.ts +16 -0
  776. package/types/config/Style.d.ts +7 -0
  777. package/types/config/Views.d.ts +43 -0
  778. package/types/config/Widgets.d.ts +102 -0
  779. package/types/config/Workflows.d.ts +49 -0
  780. package/types/config/index.d.ts +1 -0
  781. package/types/config/server.d.ts +16 -0
  782. package/types/constants/ActionTypes.d.ts +139 -0
  783. package/types/constants/Indexes.d.ts +139 -0
  784. package/types/constants/Languages.d.ts +14 -0
  785. package/types/error.d.ts +4 -0
  786. package/types/express-middleware/devproxy.d.ts +1 -0
  787. package/types/express-middleware/files.d.ts +1 -0
  788. package/types/express-middleware/images.d.ts +1 -0
  789. package/types/express-middleware/ok.d.ts +1 -0
  790. package/types/express-middleware/robotstxt.d.ts +1 -0
  791. package/types/express-middleware/sitemap.d.ts +3 -0
  792. package/types/express-middleware/static.d.ts +1 -0
  793. package/types/helpers/Api/APIResourceWithAuth.d.ts +1 -0
  794. package/types/helpers/Api/Api.d.ts +13 -0
  795. package/types/helpers/Api/Api.plone.rest.test.d.ts +1 -0
  796. package/types/helpers/Api/Api.test.d.ts +1 -0
  797. package/types/helpers/AsyncConnect/AsyncConnect.d.ts +49 -0
  798. package/types/helpers/AsyncConnect/AsyncConnect.test.d.ts +1 -0
  799. package/types/helpers/AsyncConnect/index.d.ts +19 -0
  800. package/types/helpers/AsyncConnect/ssr.d.ts +8 -0
  801. package/types/helpers/AsyncConnect/utils.d.ts +5 -0
  802. package/types/helpers/AuthToken/AuthToken.d.ts +13 -0
  803. package/types/helpers/AuthToken/AuthToken.test.d.ts +1 -0
  804. package/types/helpers/Blocks/Blocks.d.ts +149 -0
  805. package/types/helpers/Blocks/Blocks.test.d.ts +1 -0
  806. package/types/helpers/BodyClass/BodyClass.d.ts +2 -0
  807. package/types/helpers/Content/Content.d.ts +31 -0
  808. package/types/helpers/Content/Content.test.d.ts +1 -0
  809. package/types/helpers/Cookies/cookies.d.ts +5 -0
  810. package/types/helpers/Extensions/index.d.ts +2 -0
  811. package/types/helpers/Extensions/withBlockExtensions.d.ts +44 -0
  812. package/types/helpers/Extensions/withBlockExtensions.test.d.ts +1 -0
  813. package/types/helpers/Extensions/withBlockSchemaEnhancer.d.ts +49 -0
  814. package/types/helpers/Extensions/withBlockSchemaEnhancer.test.d.ts +1 -0
  815. package/types/helpers/FormValidation/FormValidation.d.ts +26 -0
  816. package/types/helpers/FormValidation/FormValidation.test.d.ts +1 -0
  817. package/types/helpers/Helmet/Helmet.d.ts +72 -0
  818. package/types/helpers/Helmet/HelmetConstants.d.ts +54 -0
  819. package/types/helpers/Helmet/HelmetUtils.d.ts +69 -0
  820. package/types/helpers/Html/Html.d.ts +52 -0
  821. package/types/helpers/Html/Html.test.d.ts +1 -0
  822. package/types/helpers/LanguageMap/LanguageMap.d.ts +879 -0
  823. package/types/helpers/LanguageMap/LanguageMap.test.d.ts +1 -0
  824. package/types/helpers/Loadable/Loadable.d.ts +3 -0
  825. package/types/helpers/Loadable/__mocks__/Loadable.d.ts +3 -0
  826. package/types/helpers/Loadable/index.d.ts +1 -0
  827. package/types/helpers/MessageLabels/MessageLabels.d.ts +540 -0
  828. package/types/helpers/Proxy/Proxy.d.ts +1 -0
  829. package/types/helpers/Robots/Robots.d.ts +1 -0
  830. package/types/helpers/ScrollToTop/ScrollToTop.d.ts +2 -0
  831. package/types/helpers/Site/index.d.ts +4 -0
  832. package/types/helpers/Sitemap/Sitemap.d.ts +3 -0
  833. package/types/helpers/UndoManager/useUndoManager.d.ts +10 -0
  834. package/types/helpers/Url/Url.d.ts +145 -0
  835. package/types/helpers/Url/Url.test.d.ts +1 -0
  836. package/types/helpers/Url/urlRegex.d.ts +3 -0
  837. package/types/helpers/User/User.d.ts +6 -0
  838. package/types/helpers/Utils/Date.d.ts +34 -0
  839. package/types/helpers/Utils/Date.test.d.ts +1 -0
  840. package/types/helpers/Utils/UseDetectClickOutside.stories.d.ts +11 -0
  841. package/types/helpers/Utils/Utils.d.ts +53 -0
  842. package/types/helpers/Utils/Utils.test.d.ts +1 -0
  843. package/types/helpers/Utils/useDetectClickOutside.d.ts +11 -0
  844. package/types/helpers/Utils/useEvent.d.ts +4 -0
  845. package/types/helpers/Utils/usePagination.d.ts +4 -0
  846. package/types/helpers/Utils/usePagination.test.d.ts +1 -0
  847. package/types/helpers/Utils/usePrevious.d.ts +4 -0
  848. package/types/helpers/Utils/usePrevious.test.d.ts +1 -0
  849. package/types/helpers/Vocabularies/Vocabularies.d.ts +41 -0
  850. package/types/helpers/Widget/utils.d.ts +1 -0
  851. package/types/helpers/Widget/utils.test.d.ts +1 -0
  852. package/types/helpers/Widget/widget.d.ts +1 -0
  853. package/types/helpers/Workflows/Workflows.d.ts +21 -0
  854. package/types/helpers/Workflows/Workflows.test.d.ts +1 -0
  855. package/types/helpers/index.d.ts +16 -0
  856. package/types/hooks/client/useClient.d.ts +1 -0
  857. package/types/hooks/clipboard/useClipboard.d.ts +1 -0
  858. package/types/hooks/index.d.ts +1 -0
  859. package/types/icons/load-icons.d.ts +2 -0
  860. package/types/index.d.ts +1 -0
  861. package/types/middleware/Api.test.d.ts +1 -0
  862. package/types/middleware/api.d.ts +24 -0
  863. package/types/middleware/blacklistRoutes.d.ts +5 -0
  864. package/types/middleware/index.d.ts +1 -0
  865. package/types/middleware/storeProtectLoadUtils.d.ts +9 -0
  866. package/types/middleware/storeProtectLoadUtils.test.d.ts +1 -0
  867. package/types/reducers/actions/actions.d.ts +8 -0
  868. package/types/reducers/actions/actions.test.d.ts +1 -0
  869. package/types/reducers/addons/addons.d.ts +8 -0
  870. package/types/reducers/aliases/aliases.d.ts +8 -0
  871. package/types/reducers/aliases/aliases.test.d.ts +1 -0
  872. package/types/reducers/apierror/apierror.d.ts +8 -0
  873. package/types/reducers/apierror/apierror.test.d.ts +1 -0
  874. package/types/reducers/asyncConnect/asyncConnect.d.ts +7 -0
  875. package/types/reducers/authRole/authRole.d.ts +8 -0
  876. package/types/reducers/authRole/authRole.test.d.ts +1 -0
  877. package/types/reducers/blocksClipboard/blocksClipboard.d.ts +1 -0
  878. package/types/reducers/breadcrumbs/breadcrumbs.d.ts +8 -0
  879. package/types/reducers/breadcrumbs/breadcrumbs.test.d.ts +1 -0
  880. package/types/reducers/browserdetect/browserdetect.d.ts +8 -0
  881. package/types/reducers/clipboard/clipboard.d.ts +8 -0
  882. package/types/reducers/clipboard/clipboard.test.d.ts +1 -0
  883. package/types/reducers/comments/comments.d.ts +8 -0
  884. package/types/reducers/comments/comments.test.d.ts +1 -0
  885. package/types/reducers/content/content.d.ts +8 -0
  886. package/types/reducers/content/content.test.d.ts +1 -0
  887. package/types/reducers/contentRulesEvents/contentRulesEvents.d.ts +8 -0
  888. package/types/reducers/contextNavigation/contextNavigation.d.ts +8 -0
  889. package/types/reducers/contextNavigation/contextNavigation.test.d.ts +1 -0
  890. package/types/reducers/controlPanelRule/controlPanelRule.d.ts +8 -0
  891. package/types/reducers/controlPanelRules/controlPanelRules.d.ts +8 -0
  892. package/types/reducers/controlpanels/controlpanels.d.ts +8 -0
  893. package/types/reducers/controlpanels/controlpanels.test.d.ts +1 -0
  894. package/types/reducers/diff/diff.d.ts +8 -0
  895. package/types/reducers/diff/diff.test.d.ts +1 -0
  896. package/types/reducers/emailNotification/emailNotification.d.ts +8 -0
  897. package/types/reducers/emailNotification/emailNotification.test.d.ts +1 -0
  898. package/types/reducers/emailSend/emailSend.d.ts +8 -0
  899. package/types/reducers/emailSend/emailSend.test.d.ts +1 -0
  900. package/types/reducers/form/form.d.ts +7 -0
  901. package/types/reducers/form/form.test.d.ts +1 -0
  902. package/types/reducers/groups/groups.d.ts +8 -0
  903. package/types/reducers/groups/groups.test.d.ts +1 -0
  904. package/types/reducers/history/history.d.ts +8 -0
  905. package/types/reducers/history/history.test.d.ts +1 -0
  906. package/types/reducers/index.d.ts +58 -0
  907. package/types/reducers/lazyLibraries/lazyLibraries.d.ts +1 -0
  908. package/types/reducers/messages/messages.d.ts +8 -0
  909. package/types/reducers/messages/messages.test.d.ts +1 -0
  910. package/types/reducers/navigation/navigation.d.ts +8 -0
  911. package/types/reducers/navigation/navigation.test.d.ts +1 -0
  912. package/types/reducers/navroot/navroot.d.ts +8 -0
  913. package/types/reducers/navroot/navroot.test.d.ts +1 -0
  914. package/types/reducers/querystring/querystring.d.ts +8 -0
  915. package/types/reducers/querystring/querystring.test.d.ts +1 -0
  916. package/types/reducers/querystringsearch/querystringsearch.d.ts +8 -0
  917. package/types/reducers/querystringsearch/querystringsearch.test.d.ts +1 -0
  918. package/types/reducers/relations/relations.d.ts +8 -0
  919. package/types/reducers/roles/roles.d.ts +8 -0
  920. package/types/reducers/roles/roles.test.d.ts +1 -0
  921. package/types/reducers/rules/rules.d.ts +8 -0
  922. package/types/reducers/schema/schema.d.ts +8 -0
  923. package/types/reducers/schema/schema.test.d.ts +1 -0
  924. package/types/reducers/search/search.d.ts +8 -0
  925. package/types/reducers/search/search.test.d.ts +1 -0
  926. package/types/reducers/sharing/sharing.d.ts +8 -0
  927. package/types/reducers/sharing/sharing.test.d.ts +1 -0
  928. package/types/reducers/sidebar/sidebar.d.ts +8 -0
  929. package/types/reducers/sidebar/sidebar.test.d.ts +1 -0
  930. package/types/reducers/site/site.d.ts +8 -0
  931. package/types/reducers/site/site.test.d.ts +1 -0
  932. package/types/reducers/toolbar/toolbar.d.ts +8 -0
  933. package/types/reducers/toolbar/toolbar.test.d.ts +1 -0
  934. package/types/reducers/transactions/transactions.d.ts +8 -0
  935. package/types/reducers/transactions/transactions.test.d.ts +1 -0
  936. package/types/reducers/types/types.d.ts +8 -0
  937. package/types/reducers/types/types.test.d.ts +1 -0
  938. package/types/reducers/upgrade/upgrade.d.ts +8 -0
  939. package/types/reducers/userSession/userSession.d.ts +8 -0
  940. package/types/reducers/userSession/userSession.test.d.ts +1 -0
  941. package/types/reducers/users/users.d.ts +8 -0
  942. package/types/reducers/users/users.test.d.ts +1 -0
  943. package/types/reducers/userschema/userschema.d.ts +8 -0
  944. package/types/reducers/vocabularies/vocabularies.d.ts +8 -0
  945. package/types/reducers/vocabularies/vocabularies.test.d.ts +1 -0
  946. package/types/reducers/workflow/workflow.d.ts +8 -0
  947. package/types/reducers/workflow/workflow.test.d.ts +1 -0
  948. package/types/reducers/workingcopy/workingcopy.d.ts +8 -0
  949. package/types/reducers/workingcopy/workingcopy.test.d.ts +1 -0
  950. package/types/registry.d.ts +34 -0
  951. package/types/registry.test.d.ts +1 -0
  952. package/types/routes.d.ts +27 -0
  953. package/types/routes.test.d.ts +1 -0
  954. package/types/runtime_config.d.ts +1 -0
  955. package/types/server.d.ts +3 -0
  956. package/types/start-client.d.ts +2 -0
  957. package/types/start-server.d.ts +1 -0
  958. package/types/store.d.ts +4 -0
  959. package/types/storybook.d.ts +2107 -0
  960. package/types/theme.d.ts +1 -0
@@ -0,0 +1,72 @@
1
+ /**
2
+ * ObjectBrowserWidget component class.
3
+ * @class ObjectBrowserWidget
4
+ * @extends Component
5
+ */
6
+ export class ObjectBrowserWidgetComponent extends Component<any, any, any> {
7
+ /**
8
+ * Property types.
9
+ * @property {Object} propTypes Property types.
10
+ * @static
11
+ */
12
+ static propTypes: {
13
+ id: any;
14
+ title: any;
15
+ description: any;
16
+ mode: any;
17
+ return: any;
18
+ initialPath: any;
19
+ required: any;
20
+ error: any;
21
+ value: any;
22
+ onChange: any;
23
+ openObjectBrowser: any;
24
+ allowExternals: any;
25
+ placeholder: any;
26
+ };
27
+ /**
28
+ * Default properties
29
+ * @property {Object} defaultProps Default properties.
30
+ * @static
31
+ */
32
+ static defaultProps: {
33
+ description: any;
34
+ required: boolean;
35
+ error: any[];
36
+ value: any[];
37
+ mode: string;
38
+ return: string;
39
+ initialPath: string;
40
+ allowExternals: boolean;
41
+ };
42
+ constructor(props: any);
43
+ state: {
44
+ manualLinkInput: string;
45
+ validURL: boolean;
46
+ };
47
+ selectedItemsRef: any;
48
+ placeholderRef: any;
49
+ renderLabel(item: any): JSX.Element;
50
+ removeItem: (item: any) => void;
51
+ onChange: (item: any) => void;
52
+ onManualLinkInput: (e: any) => void;
53
+ validateManualLink: (url: any) => any;
54
+ onSubmitManualLink: () => void;
55
+ onKeyDownManualLink: (e: any) => void;
56
+ showObjectBrowser: (ev: any) => void;
57
+ handleSelectedItemsRefClick: (e: any) => void;
58
+ /**
59
+ * Render method.
60
+ * @method render
61
+ * @returns {string} Markup for the component.
62
+ */
63
+ render(): string;
64
+ }
65
+ declare const _default: import("react").ForwardRefExoticComponent<Pick<import("react-intl").WithIntlProps<import("react-intl").WrappedComponentProps<string>>, string> & import("react").RefAttributes<import("react").ComponentType<import("react-intl").WrappedComponentProps<string>>>> & {
66
+ WrappedComponent: import("react").ComponentType<import("react-intl").WrappedComponentProps<string>>;
67
+ };
68
+ export default _default;
69
+ import { Component } from 'react';
70
+ export function ObjectBrowserWidgetMode(mode: any): import("react").ForwardRefExoticComponent<Pick<import("react-intl").WithIntlProps<import("react-intl").WrappedComponentProps<string>>, string> & import("react").RefAttributes<import("react").ComponentType<import("react-intl").WrappedComponentProps<string>>>> & {
71
+ WrappedComponent: import("react").ComponentType<import("react-intl").WrappedComponentProps<string>>;
72
+ };
@@ -0,0 +1,76 @@
1
+ export namespace searchResults {
2
+ let items: {
3
+ '@id': string;
4
+ '@type': string;
5
+ CreationDate: string;
6
+ Creator: string;
7
+ Date: string;
8
+ Description: string;
9
+ EffectiveDate: string;
10
+ ExpirationDate: string;
11
+ ModificationDate: string;
12
+ Subject: any[];
13
+ Title: string;
14
+ Type: string;
15
+ UID: string;
16
+ author_name: any;
17
+ cmf_uid: number;
18
+ commentators: any[];
19
+ created: string;
20
+ description: string;
21
+ effective: string;
22
+ end: any;
23
+ exclude_from_nav: boolean;
24
+ expires: string;
25
+ getId: string;
26
+ getObjSize: string;
27
+ getPath: string;
28
+ getRemoteUrl: any;
29
+ getURL: string;
30
+ id: string;
31
+ in_response_to: any;
32
+ is_folderish: boolean;
33
+ last_comment_date: any;
34
+ listCreators: string[];
35
+ location: any;
36
+ meta_type: string;
37
+ mime_type: string;
38
+ modified: string;
39
+ portal_type: string;
40
+ review_state: string;
41
+ start: any;
42
+ sync_uid: any;
43
+ title: string;
44
+ total_comments: number;
45
+ }[];
46
+ }
47
+ declare namespace _default {
48
+ export let title: string;
49
+ export namespace argTypes {
50
+ namespace selectableTypes {
51
+ let name: string;
52
+ let description: string;
53
+ namespace table {
54
+ namespace type {
55
+ let summary: string;
56
+ let detail: string;
57
+ }
58
+ }
59
+ namespace control {
60
+ let type_1: any;
61
+ export { type_1 as type };
62
+ }
63
+ }
64
+ }
65
+ export { OBC as component };
66
+ export let decorators: ((Story: any) => JSX.Element)[];
67
+ export let excludeStories: string[];
68
+ }
69
+ export default _default;
70
+ export function Connected(): JSX.Element;
71
+ export function SingleElement(): JSX.Element;
72
+ export function Placeholder(): JSX.Element;
73
+ export function Image(): JSX.Element;
74
+ export function InitalPath(): JSX.Element;
75
+ export function SelectableType(): JSX.Element;
76
+ import { ObjectBrowserWidgetComponent as OBC } from './ObjectBrowserWidget';
@@ -0,0 +1,30 @@
1
+ export default ObjectListWidget;
2
+ /**
3
+ * This is a DataGridField-equivalent widget for schema-based values.
4
+ * The shape of the items in the array is defined using a schema.
5
+ *
6
+ * ObjectListWidget can receive an optional `schemaExtender` prop which is
7
+ * a function that can mutate the schema for each individual item in the array.
8
+ * An example schema definition of the a field that renders with the
9
+ * ObjectListWidget:
10
+ *
11
+ * ```jsx
12
+ * columns: {
13
+ * title: 'Columns',
14
+ * description: 'Leave empty to show all columns',
15
+ * schema: SomeItemSchema,
16
+ * widget: 'object_list',
17
+ * schemaExtender: (schema, data) => {
18
+ * const mutated = lodash.cloneDeep(schema);
19
+ * mutated.properties.extraField = {
20
+ * title: 'Extra field',
21
+ * }
22
+ * mutated.fieldsets[0].fields.push('extraField');
23
+ * return mutated;
24
+ * },
25
+ * activeObject: 0, // Current active object drilled down from the schema (if present)
26
+ * setActiveObject: () => {} // The current active object state updater function drilled down from the schema (if present)
27
+ * },
28
+ * ```
29
+ */
30
+ declare function ObjectListWidget(props: any): JSX.Element;
@@ -0,0 +1,79 @@
1
+ export const Default: any;
2
+ export const MultipleFieldsets: any;
3
+ export const DefaultValues: any;
4
+ export function SchemaExtender(args: any): JSX.Element;
5
+ export namespace SchemaExtender {
6
+ namespace args {
7
+ export { defaultSchema as schema };
8
+ export { defaultSecondarySchema as secondarySchema };
9
+ }
10
+ }
11
+ declare namespace _default {
12
+ export let title: string;
13
+ export { ObjectListWidgetDefault as component };
14
+ export let decorators: ((Story: any) => JSX.Element)[];
15
+ export namespace argTypes {
16
+ let schema: {};
17
+ }
18
+ }
19
+ export default _default;
20
+ declare namespace defaultSchema {
21
+ let title_1: string;
22
+ export { title_1 as title };
23
+ export let addMessage: string;
24
+ export let fieldsets: {
25
+ id: string;
26
+ title: string;
27
+ fields: string[];
28
+ }[];
29
+ export namespace properties {
30
+ export namespace href {
31
+ let title_2: string;
32
+ export { title_2 as title };
33
+ export let widget: string;
34
+ export let mode: string;
35
+ export let selectedItemAttrs: string[];
36
+ export let allowExternals: boolean;
37
+ }
38
+ export namespace title_3 {
39
+ let title_4: string;
40
+ export { title_4 as title };
41
+ }
42
+ export { title_3 as title };
43
+ export namespace description {
44
+ let title_5: string;
45
+ export { title_5 as title };
46
+ }
47
+ export namespace preview_image {
48
+ let title_6: string;
49
+ export { title_6 as title };
50
+ let widget_1: string;
51
+ export { widget_1 as widget };
52
+ let mode_1: string;
53
+ export { mode_1 as mode };
54
+ let allowExternals_1: boolean;
55
+ export { allowExternals_1 as allowExternals };
56
+ }
57
+ }
58
+ export let required: any[];
59
+ }
60
+ declare namespace defaultSecondarySchema {
61
+ let title_7: string;
62
+ export { title_7 as title };
63
+ let fieldsets_1: {
64
+ id: string;
65
+ title: string;
66
+ fields: string[];
67
+ }[];
68
+ export { fieldsets_1 as fieldsets };
69
+ export namespace properties_1 {
70
+ namespace size {
71
+ let title_8: string;
72
+ export { title_8 as title };
73
+ }
74
+ }
75
+ export { properties_1 as properties };
76
+ let required_1: any[];
77
+ export { required_1 as required };
78
+ }
79
+ import ObjectListWidgetDefault from './ObjectListWidget';
@@ -0,0 +1,31 @@
1
+ export default ObjectWidget;
2
+ /**
3
+ *
4
+ * A JSON data editor widget based on a schema. If you want to represent complex
5
+ * data using a single field, this is the widget to use.
6
+ *
7
+ * If there are multiple field sets, it renders a Tab component with multiple
8
+ * tab panes. Each tab has the title of the fieldset it renders.
9
+ */
10
+ declare function ObjectWidget({ block, schema, value, onChange, errors, id, ...props }: {
11
+ [x: string]: any;
12
+ block: any;
13
+ schema: any;
14
+ value: any;
15
+ onChange: any;
16
+ errors?: {};
17
+ id: any;
18
+ }): JSX.Element;
19
+ declare namespace ObjectWidget {
20
+ namespace propTypes {
21
+ let id: any;
22
+ let schema: any;
23
+ let errors: any;
24
+ let value: any;
25
+ let onChange: any;
26
+ }
27
+ namespace defaultProps {
28
+ let value_1: any;
29
+ export { value_1 as value };
30
+ }
31
+ }
@@ -0,0 +1,13 @@
1
+ export const Default: any;
2
+ export const MultipleFieldsets: any;
3
+ export const DefaultValue: any;
4
+ declare namespace _default {
5
+ export let title: string;
6
+ export { ObjectWidget as component };
7
+ export let decorators: ((Story: any) => JSX.Element)[];
8
+ export namespace argTypes {
9
+ let schema: {};
10
+ }
11
+ }
12
+ export default _default;
13
+ import ObjectWidget from './ObjectWidget';
@@ -0,0 +1,4 @@
1
+ declare const _default: import("react").FC<import("react-intl").WithIntlProps<any>> & {
2
+ WrappedComponent: import("react").ComponentType<any>;
3
+ };
4
+ export default _default;
@@ -0,0 +1,9 @@
1
+ export const Password: any;
2
+ declare namespace _default {
3
+ export let title: string;
4
+ export { PasswordWidget as component };
5
+ export let decorators: ((Story: any) => JSX.Element)[];
6
+ export let argTypes: {};
7
+ }
8
+ export default _default;
9
+ import PasswordWidget from './PasswordWidget';
@@ -0,0 +1,2 @@
1
+ declare const _default: any;
2
+ export default _default;
@@ -0,0 +1,81 @@
1
+ /**
2
+ * Widget for a querystring value, to define a catalog search criteria.
3
+ */
4
+ export class QuerystringWidgetComponent extends Component<any, any, any> {
5
+ /**
6
+ * Property types.
7
+ * @property {Object} propTypes Property types.
8
+ * @static
9
+ */
10
+ static propTypes: {
11
+ id: any;
12
+ title: any;
13
+ description: any;
14
+ required: any;
15
+ error: any;
16
+ value: any;
17
+ focus: any;
18
+ onChange: any;
19
+ onEdit: any;
20
+ onDelete: any;
21
+ getQuerystring: any;
22
+ };
23
+ /**
24
+ * Default properties.
25
+ * @property {Object} defaultProps Default properties.
26
+ * @static
27
+ */
28
+ static defaultProps: {
29
+ description: any;
30
+ required: boolean;
31
+ error: any[];
32
+ value: any;
33
+ onChange: any;
34
+ onEdit: any;
35
+ onDelete: any;
36
+ focus: boolean;
37
+ };
38
+ /**
39
+ * Constructor
40
+ * @method constructor
41
+ * @param {Object} props Component properties
42
+ * @constructs EditComponent
43
+ */
44
+ constructor(props: any);
45
+ state: {
46
+ visual: boolean;
47
+ };
48
+ /**
49
+ * Change value handler
50
+ * @method onChangeValue
51
+ * @param {Number} index Index of the row.
52
+ * @param {String|Array} value Value of the row.
53
+ * @returns {undefined}
54
+ */
55
+ onChangeValue(index: number, value: string | any[]): undefined;
56
+ /**
57
+ * Get correct widget
58
+ * @method getWidget
59
+ * @param {Object} row Row object.
60
+ * @param {number} index Row index.
61
+ * @returns {Object} Widget.
62
+ */
63
+ getWidget(row: any, index: number, Select: any): any;
64
+ /**
65
+ * Component did mount lifecycle method
66
+ * @method componentDidMount
67
+ * @returns {undefined}
68
+ */
69
+ componentDidMount(): undefined;
70
+ /**
71
+ * Render method.
72
+ * @method render
73
+ * @returns {string} Markup for the component.
74
+ */
75
+ render(): string;
76
+ }
77
+ declare const _default: import("react").ForwardRefExoticComponent<Pick<import("react-intl").WithIntlProps<import("react-intl").WrappedComponentProps<string>>, string> & import("react").RefAttributes<import("react").ComponentType<import("react-intl").WrappedComponentProps<string>>>> & {
78
+ WrappedComponent: import("react").ComponentType<import("react-intl").WrappedComponentProps<string>>;
79
+ };
80
+ export default _default;
81
+ import { Component } from 'react';
@@ -0,0 +1,9 @@
1
+ export const Query: any;
2
+ declare namespace _default {
3
+ export let title: string;
4
+ export { QuerystringWidgetComponent as component };
5
+ export let decorators: ((Story: any) => JSX.Element)[];
6
+ export let argTypes: {};
7
+ }
8
+ export default _default;
9
+ import { QuerystringWidgetComponent } from './QueryWidget';
@@ -0,0 +1,44 @@
1
+ export function objectSchema({ intl, isDisabled, value }: {
2
+ intl: any;
3
+ isDisabled: any;
4
+ value: any;
5
+ }): {
6
+ fieldsets: {
7
+ id: string;
8
+ title: string;
9
+ fields: string[];
10
+ }[];
11
+ properties: {
12
+ query: {
13
+ title: any;
14
+ widget: string;
15
+ };
16
+ depth: {
17
+ title: any;
18
+ type: string;
19
+ };
20
+ sort_on: {
21
+ title: any;
22
+ widget: string;
23
+ isDisabled: any;
24
+ };
25
+ sort_order_boolean: {
26
+ title: any;
27
+ type: string;
28
+ isDisabled: any;
29
+ };
30
+ limit: {
31
+ title: any;
32
+ type: string;
33
+ isDisabled: any;
34
+ };
35
+ b_size: {
36
+ title: any;
37
+ type: string;
38
+ isDisabled: any;
39
+ };
40
+ };
41
+ required: any[];
42
+ };
43
+ export default QuerystringWidget;
44
+ declare function QuerystringWidget(props: any): JSX.Element;
@@ -0,0 +1,2 @@
1
+ declare const _default: any;
2
+ export default _default;
@@ -0,0 +1,4 @@
1
+ declare const _default: import("react").FC<import("react-intl").WithIntlProps<import("react-intl").WrappedComponentProps<string>>> & {
2
+ WrappedComponent: import("react").ComponentType<import("react-intl").WrappedComponentProps<string>>;
3
+ };
4
+ export default _default;
@@ -0,0 +1,4 @@
1
+ declare const _default: import("react").FC<import("react-intl").WithIntlProps<import("react-intl").WrappedComponentProps<string>>> & {
2
+ WrappedComponent: import("react").ComponentType<import("react-intl").WrappedComponentProps<string>>;
3
+ };
4
+ export default _default;
@@ -0,0 +1,4 @@
1
+ declare const _default: import("react").FC<import("react-intl").WithIntlProps<import("react-intl").WrappedComponentProps<string>>> & {
2
+ WrappedComponent: import("react").ComponentType<import("react-intl").WrappedComponentProps<string>>;
3
+ };
4
+ export default _default;
@@ -0,0 +1,4 @@
1
+ declare const _default: import("react").FC<import("react-intl").WithIntlProps<import("react-intl").WrappedComponentProps<string>>> & {
2
+ WrappedComponent: import("react").ComponentType<import("react-intl").WrappedComponentProps<string>>;
3
+ };
4
+ export default _default;
@@ -0,0 +1,28 @@
1
+ export default IntervalField;
2
+ /**
3
+ * IntervalField component class.
4
+ * @function IntervalField
5
+ * @returns {string} Markup of the component.
6
+ */
7
+ declare function IntervalField({ label, labelAfter, value, onChange }: {
8
+ label: any;
9
+ labelAfter: any;
10
+ value: any;
11
+ onChange: any;
12
+ }): string;
13
+ declare namespace IntervalField {
14
+ namespace propTypes {
15
+ let label: any;
16
+ let labelAfter: any;
17
+ let value: any;
18
+ let onChange: any;
19
+ }
20
+ namespace defaultProps {
21
+ let label_1: any;
22
+ export { label_1 as label };
23
+ let labelAfter_1: any;
24
+ export { labelAfter_1 as labelAfter };
25
+ let onChange_1: any;
26
+ export { onChange_1 as onChange };
27
+ }
28
+ }
@@ -0,0 +1,2 @@
1
+ declare const _default: any;
2
+ export default _default;
@@ -0,0 +1,5 @@
1
+ export const Occurences: any;
2
+ declare const _default: import("react").FC<import("react-intl").WithIntlProps<import("react-intl").WrappedComponentProps<any>>> & {
3
+ WrappedComponent: import("react").ComponentType<import("react-intl").WrappedComponentProps<any>>;
4
+ };
5
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: any;
2
+ export default _default;
@@ -0,0 +1,34 @@
1
+ export default SelectInput;
2
+ /**
3
+ * SelectInput component class.
4
+ * @function SelectInput
5
+ * @returns {string} Markup of the component.
6
+ */
7
+ declare function SelectInput({ name, disabled, options, value, onChange }: {
8
+ name: any;
9
+ disabled: any;
10
+ options: any;
11
+ value: any;
12
+ onChange: any;
13
+ }): string;
14
+ declare namespace SelectInput {
15
+ namespace propTypes {
16
+ let name: any;
17
+ let options: any;
18
+ let disabled: any;
19
+ let value: any;
20
+ let onChange: any;
21
+ }
22
+ namespace defaultProps {
23
+ let name_1: string;
24
+ export { name_1 as name };
25
+ let options_1: any[];
26
+ export { options_1 as options };
27
+ let disabled_1: boolean;
28
+ export { disabled_1 as disabled };
29
+ let value_1: any;
30
+ export { value_1 as value };
31
+ let onChange_1: any;
32
+ export { onChange_1 as onChange };
33
+ }
34
+ }
@@ -0,0 +1,61 @@
1
+ export namespace Days {
2
+ let MO: import("rrule").Weekday;
3
+ let TU: import("rrule").Weekday;
4
+ let WE: import("rrule").Weekday;
5
+ let TH: import("rrule").Weekday;
6
+ let FR: import("rrule").Weekday;
7
+ let SA: import("rrule").Weekday;
8
+ let SU: import("rrule").Weekday;
9
+ }
10
+ export const WEEKLY_DAYS: import("rrule").Weekday[];
11
+ export const MONDAYFRIDAY_DAYS: import("rrule").Weekday[];
12
+ export namespace FREQUENCES {
13
+ let DAILY: string;
14
+ let MONDAYFRIDAY: string;
15
+ let WEEKDAYS: string;
16
+ let WEEKLY: string;
17
+ let MONTHLY: string;
18
+ let YEARLY: string;
19
+ }
20
+ export namespace OPTIONS {
21
+ let frequences: {
22
+ [x: string]: {
23
+ rrule: import("rrule").Frequency;
24
+ interval: boolean;
25
+ byday?: undefined;
26
+ bymonth?: undefined;
27
+ byyear?: undefined;
28
+ } | {
29
+ rrule: import("rrule").Frequency;
30
+ interval?: undefined;
31
+ byday?: undefined;
32
+ bymonth?: undefined;
33
+ byyear?: undefined;
34
+ } | {
35
+ rrule: import("rrule").Frequency;
36
+ interval: boolean;
37
+ byday: boolean;
38
+ bymonth?: undefined;
39
+ byyear?: undefined;
40
+ } | {
41
+ rrule: import("rrule").Frequency;
42
+ interval: boolean;
43
+ bymonth: boolean;
44
+ byday?: undefined;
45
+ byyear?: undefined;
46
+ } | {
47
+ rrule: import("rrule").Frequency;
48
+ interval: boolean;
49
+ byyear: boolean;
50
+ byday?: undefined;
51
+ bymonth?: undefined;
52
+ };
53
+ };
54
+ }
55
+ export function toISOString(date: any): any;
56
+ export function rrulei18n(intl: any, moment: any, lang: any): {
57
+ dayNames: any;
58
+ monthNames: any;
59
+ strings: {};
60
+ dateFormatter: (year: any, month: any, day: any) => any;
61
+ };
@@ -0,0 +1,2 @@
1
+ declare const _default: any;
2
+ export default _default;
@@ -0,0 +1,4 @@
1
+ declare const _default: import("react").FC<import("react-intl").WithIntlProps<any>> & {
2
+ WrappedComponent: import("react").ComponentType<any>;
3
+ };
4
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: any;
2
+ export default _default;