@dotcms/react 0.0.1-beta.24 → 0.0.1-beta.26
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 +1 -1
- package/index.esm.js +2 -2218
- package/next.esm.js +180 -6
- package/package.json +6 -3
- package/src/lib/next/__test__/mock.d.ts +2 -1
- package/src/lib/next/components/Column/Column.d.ts +1 -1
- package/src/lib/next/components/Container/Container.d.ts +1 -1
- package/src/lib/next/components/Container/ContainerFallbacks.d.ts +1 -1
- package/src/lib/next/components/Contentlet/Contentlet.d.ts +2 -2
- package/src/lib/next/components/DotCMSEditableText/DotCMSEditableText.d.ts +30 -0
- package/src/lib/next/components/DotCMSEditableText/utils.d.ts +36 -0
- package/src/lib/next/components/DotCMSLayoutBody/DotCMSLayoutBody.d.ts +5 -3
- package/src/lib/next/components/DotCMSShow/DotCMSShow.d.ts +1 -1
- package/src/lib/next/components/FallbackComponent/FallbackComponent.d.ts +6 -6
- package/src/lib/next/components/Row/Row.d.ts +1 -1
- package/src/lib/next/contexts/DotCMSPageContext.d.ts +2 -2
- package/src/lib/next/hooks/useDotCMSShowWhen.d.ts +1 -1
- package/src/lib/next/hooks/useEditableDotCMSPage.d.ts +1 -1
- package/src/next.d.ts +1 -0
- package/web.url-search-params.size.esm.js +4037 -0
- package/es.json.stringify.esm.js +0 -1821
package/README.md
CHANGED
|
@@ -201,7 +201,7 @@ A custom hook that handles the communication with the Universal View Editor (UVE
|
|
|
201
201
|
import { useEffect, useState } from 'react';
|
|
202
202
|
|
|
203
203
|
import { getUVEState, sendMessageToEditor, createUVESubscription} from '@dotcms/uve';
|
|
204
|
-
import { DotCMSUVEAction, UVEEventType} from '@dotcms/
|
|
204
|
+
import { DotCMSUVEAction, UVEEventType} from '@dotcms/types';
|
|
205
205
|
|
|
206
206
|
export const usePageAsset = (currentPageAsset) => {
|
|
207
207
|
const [pageAsset, setPageAsset] = useState(null);
|