@dotcms/react 0.0.1-alpha.6 → 0.0.1-alpha.60

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 (30) hide show
  1. package/README.md +0 -1
  2. package/index.esm.js +4376 -2040
  3. package/package.json +10 -8
  4. package/src/index.d.ts +3 -1
  5. package/src/lib/components/BlockEditorRenderer/BlockEditorRenderer.d.ts +37 -0
  6. package/src/lib/components/BlockEditorRenderer/blocks/Code.d.ts +17 -0
  7. package/src/lib/components/BlockEditorRenderer/blocks/Contentlet.d.ts +41 -0
  8. package/src/lib/components/BlockEditorRenderer/blocks/Image.d.ts +8 -0
  9. package/src/lib/components/BlockEditorRenderer/blocks/Lists.d.ts +22 -0
  10. package/src/lib/components/BlockEditorRenderer/blocks/Table.d.ts +16 -0
  11. package/src/lib/components/BlockEditorRenderer/blocks/Texts.d.ts +71 -0
  12. package/src/lib/components/BlockEditorRenderer/blocks/Video.d.ts +8 -0
  13. package/src/lib/components/BlockEditorRenderer/item/BlockEditorBlock.d.ts +12 -0
  14. package/src/lib/components/Column/Column.d.ts +16 -2
  15. package/src/lib/components/Container/Container.d.ts +16 -2
  16. package/src/lib/components/DotEditableText/DotEditableText.d.ts +30 -0
  17. package/src/lib/components/DotEditableText/utils.d.ts +36 -0
  18. package/src/lib/components/DotcmsLayout/DotcmsLayout.d.ts +9 -8
  19. package/src/lib/components/PageProvider/PageProvider.d.ts +1 -69
  20. package/src/lib/components/Row/Row.d.ts +6 -5
  21. package/src/lib/contexts/PageContext.d.ts +7 -2
  22. package/src/lib/hooks/useCheckHaveContent.d.ts +5 -0
  23. package/src/lib/hooks/useDotcmsEditor.d.ts +13 -0
  24. package/src/lib/hooks/useDotcmsPageContext.d.ts +3 -3
  25. package/src/lib/mocks/mockPageContext.d.ts +4 -4
  26. package/src/lib/models/blocks.interface.d.ts +78 -0
  27. package/src/lib/models/content-node.interface.d.ts +82 -0
  28. package/src/lib/models/index.d.ts +127 -0
  29. package/src/lib/utils/utils.d.ts +26 -38
  30. package/src/lib/hooks/usePageEditor.d.ts +0 -50
package/README.md CHANGED
@@ -130,7 +130,6 @@ Always refer to the official [DotCMS documentation](https://www.dotcms.com/docs/
130
130
  | Installation | [Installation](https://dotcms.com/docs/latest/installation) |
131
131
  | Documentation | [Documentation](https://dotcms.com/docs/latest/table-of-contents) |
132
132
  | Videos | [Helpful Videos](http://dotcms.com/videos/) |
133
- | Code Examples | [Codeshare](https://dotcms.com/codeshare/) |
134
133
  | Forums/Listserv | [via Google Groups](https://groups.google.com/forum/#!forum/dotCMS) |
135
134
  | Twitter | @dotCMS |
136
135
  | Main Site | [dotCMS.com](https://dotcms.com/) |