@dotcms/react 1.1.1 → 1.2.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.
- package/README.md +7 -7
- package/index.esm.js +958 -334
- package/package.json +1 -1
- package/src/index.d.ts +1 -1
- package/src/lib/next/components/DotCMSBlockEditorRenderer/DotCMSBlockEditorRenderer.d.ts +32 -5
- package/src/lib/next/components/DotCMSBlockEditorRenderer/components/blocks/DotContent.d.ts +1 -1
- package/src/lib/next/hooks/useIsAnalyticsActive.d.ts +27 -0
package/README.md
CHANGED
|
@@ -26,9 +26,9 @@ The `@dotcms/react` SDK is the DotCMS official React library. It empowers React
|
|
|
26
26
|
- [Version Compatibility](#version-compatibility)
|
|
27
27
|
- [Still Having Issues?](#still-having-issues)
|
|
28
28
|
- [Migration from Alpha to 1.0.X](./MIGRATION.md)
|
|
29
|
-
- [
|
|
30
|
-
- [
|
|
31
|
-
- [Licensing
|
|
29
|
+
- [Support](#support)
|
|
30
|
+
- [Contributing](#contributing)
|
|
31
|
+
- [Licensing](#licensing)
|
|
32
32
|
|
|
33
33
|
## Prerequisites & Setup
|
|
34
34
|
|
|
@@ -579,7 +579,7 @@ If you're still experiencing problems after trying these solutions:
|
|
|
579
579
|
- Error messages
|
|
580
580
|
- Code samples
|
|
581
581
|
|
|
582
|
-
##
|
|
582
|
+
## Support
|
|
583
583
|
|
|
584
584
|
We offer multiple channels to get help with the dotCMS React SDK:
|
|
585
585
|
|
|
@@ -595,9 +595,9 @@ When reporting issues, please include:
|
|
|
595
595
|
- Minimal reproduction steps
|
|
596
596
|
- Expected vs. actual behavior
|
|
597
597
|
|
|
598
|
-
##
|
|
598
|
+
## Contributing
|
|
599
599
|
|
|
600
|
-
GitHub pull requests are the preferred method to contribute code to dotCMS. We welcome contributions to the
|
|
600
|
+
GitHub pull requests are the preferred method to contribute code to dotCMS. We welcome contributions to the dotCMS React SDK! If you'd like to contribute, please follow these steps:
|
|
601
601
|
|
|
602
602
|
1. Fork the repository [dotCMS/core](https://github.com/dotCMS/core)
|
|
603
603
|
2. Create a feature branch (`git checkout -b feature/amazing-feature`)
|
|
@@ -607,7 +607,7 @@ GitHub pull requests are the preferred method to contribute code to dotCMS. We w
|
|
|
607
607
|
|
|
608
608
|
Please ensure your code follows the existing style and includes appropriate tests.
|
|
609
609
|
|
|
610
|
-
## Licensing
|
|
610
|
+
## Licensing
|
|
611
611
|
|
|
612
612
|
dotCMS comes in multiple editions and as such is dual-licensed. The dotCMS Community Edition is licensed under the GPL 3.0 and is freely available for download, customization, and deployment for use within organizations of all stripes. dotCMS Enterprise Editions (EE) adds several enterprise features and is available via a supported, indemnified commercial license from dotCMS. For the differences between the editions, see [the feature page](http://www.dotcms.com/cms-platform/features).
|
|
613
613
|
|