@contentful/field-editor-rich-text 2.0.0-next.41 → 2.0.0-next.44
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/dist/field-editor-rich-text.cjs.development.js +113 -68
- package/dist/field-editor-rich-text.cjs.development.js.map +1 -1
- package/dist/field-editor-rich-text.cjs.production.min.js +1 -1
- package/dist/field-editor-rich-text.cjs.production.min.js.map +1 -1
- package/dist/field-editor-rich-text.esm.js +114 -69
- package/dist/field-editor-rich-text.esm.js.map +1 -1
- package/dist/helpers/environment.d.ts +1 -1
- package/dist/plugins/shared/FetchingWrappedEntryCard.d.ts +1 -1
- package/dist/plugins/shared/useFetchedEntity.d.ts +8 -0
- package/dist/test-utils/jsx.d.ts +1 -1
- package/package.json +6 -5
|
@@ -9,5 +9,5 @@ interface FetchingWrappedEntryCardProps {
|
|
|
9
9
|
onEdit?: VoidFunction;
|
|
10
10
|
onRemove?: VoidFunction;
|
|
11
11
|
}
|
|
12
|
-
export declare
|
|
12
|
+
export declare const FetchingWrappedEntryCard: (props: FetchingWrappedEntryCardProps) => JSX.Element;
|
|
13
13
|
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Entry, Asset } from '@contentful/app-sdk';
|
|
2
|
+
interface FetchedEntityProps {
|
|
3
|
+
type: 'Entry' | 'Asset';
|
|
4
|
+
id: string;
|
|
5
|
+
onEntityFetchComplete?: VoidFunction;
|
|
6
|
+
}
|
|
7
|
+
export declare function useFetchedEntity({ type, id, onEntityFetchComplete }: FetchedEntityProps): Entry<Record<string, any>> | Asset | "failed" | undefined;
|
|
8
|
+
export {};
|
package/dist/test-utils/jsx.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Add items as needed. Don't forget to adjust hyperscript.d.ts
|
|
5
5
|
*/
|
|
6
|
-
export declare const jsx: <S extends "
|
|
6
|
+
export declare const jsx: <S extends "selection" | "text" | "element" | "editor" | "focus" | "anchor" | "cursor" | "fragment">(tagName: S, attributes?: Object | undefined, ...children: any[]) => ReturnType<({
|
|
7
7
|
anchor: typeof import("slate-hyperscript/dist/creators").createAnchor;
|
|
8
8
|
cursor: typeof import("slate-hyperscript/dist/creators").createCursor;
|
|
9
9
|
editor: (tagName: string, attributes: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentful/field-editor-rich-text",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.44",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"tag": "next"
|
|
6
6
|
},
|
|
@@ -27,11 +27,12 @@
|
|
|
27
27
|
"prepublishOnly": "yarn build"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@contentful/
|
|
30
|
+
"@contentful/app-sdk": "^4.6.0",
|
|
31
|
+
"@contentful/contentful-slatejs-adapter": "^15.13.1",
|
|
31
32
|
"@contentful/f36-components": "^4.0.33",
|
|
32
33
|
"@contentful/f36-icons": "^4.1.1",
|
|
33
34
|
"@contentful/f36-tokens": "^4.0.0",
|
|
34
|
-
"@contentful/field-editor-reference": "^4.3.
|
|
35
|
+
"@contentful/field-editor-reference": "^4.3.7",
|
|
35
36
|
"@contentful/field-editor-shared": "^1.0.3",
|
|
36
37
|
"@contentful/rich-text-plain-text-renderer": "^15.11.1",
|
|
37
38
|
"@contentful/rich-text-types": "^15.11.1",
|
|
@@ -48,10 +49,10 @@
|
|
|
48
49
|
"fast-deep-equal": "^3.1.3",
|
|
49
50
|
"is-hotkey": "^0.2.0",
|
|
50
51
|
"is-plain-obj": "^3.0.0",
|
|
51
|
-
"slate": "^0.
|
|
52
|
+
"slate": "^0.80.0",
|
|
52
53
|
"slate-history": "^0.66.0",
|
|
53
54
|
"slate-hyperscript": "^0.67.0",
|
|
54
|
-
"slate-react": "^0.
|
|
55
|
+
"slate-react": "^0.80.0"
|
|
55
56
|
},
|
|
56
57
|
"peerDependencies": {
|
|
57
58
|
"react": ">=16.14.0",
|