@contentful/field-editor-reference 6.4.3 → 6.4.5
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.
|
@@ -10,13 +10,13 @@ function _export(target, all) {
|
|
|
10
10
|
}
|
|
11
11
|
_export(exports, {
|
|
12
12
|
assets: function() {
|
|
13
|
-
return
|
|
13
|
+
return assets;
|
|
14
14
|
},
|
|
15
15
|
contentTypes: function() {
|
|
16
16
|
return _contenttype;
|
|
17
17
|
},
|
|
18
18
|
entries: function() {
|
|
19
|
-
return
|
|
19
|
+
return entries;
|
|
20
20
|
},
|
|
21
21
|
locales: function() {
|
|
22
22
|
return _locale;
|
|
@@ -71,3 +71,5 @@ function _interop_require_wildcard(obj, nodeInterop) {
|
|
|
71
71
|
}
|
|
72
72
|
return newObj;
|
|
73
73
|
}
|
|
74
|
+
const assets = _asset;
|
|
75
|
+
const entries = _entry;
|
package/dist/cjs/index.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as assetsFixtures from './asset';
|
|
2
2
|
import * as contentTypes from './content-type';
|
|
3
|
-
import * as
|
|
3
|
+
import * as entriesFixtures from './entry';
|
|
4
4
|
import * as locales from './locale';
|
|
5
5
|
import * as spaces from './space';
|
|
6
|
-
export
|
|
6
|
+
export const assets = assetsFixtures;
|
|
7
|
+
export const entries = entriesFixtures;
|
|
8
|
+
export { contentTypes, locales, spaces };
|
package/dist/esm/index.js
CHANGED
|
@@ -3,6 +3,6 @@ export { SingleEntryReferenceEditor, MultipleEntryReferenceEditor, WrappedEntryC
|
|
|
3
3
|
export { SingleMediaEditor, MultipleMediaEditor, WrappedAssetCard } from './assets';
|
|
4
4
|
export { SortableLinkList } from './common/SortableLinkList';
|
|
5
5
|
export { EntityProvider, useEntityLoader, useEntity, useResource } from './common/EntityStore';
|
|
6
|
-
export { SharedQueryClientProvider as EntityCacheProvider } from './common/queryClient';
|
|
6
|
+
export { SharedQueryClientProvider as EntityCacheProvider, useQueryClient as useEntityQueryClient } from './common/queryClient';
|
|
7
7
|
export { SingleResourceReferenceEditor, MultipleResourceReferenceEditor, ExternalResourceCard } from './resources';
|
|
8
8
|
export * from './types';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { AssetProps, EntryProps } from 'contentful-management/types';
|
|
2
2
|
import * as contentTypes from './content-type';
|
|
3
|
-
import * as entries from './entry';
|
|
4
3
|
import * as locales from './locale';
|
|
5
4
|
import * as spaces from './space';
|
|
6
|
-
export
|
|
5
|
+
export declare const assets: Record<string, AssetProps>;
|
|
6
|
+
export declare const entries: Record<string, EntryProps>;
|
|
7
|
+
export { contentTypes, locales, spaces };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export type { CustomActionProps } from './common/ReferenceEditor';
|
|
|
5
5
|
export type { CustomEntityCardProps, DefaultCardRenderer, MissingEntityCardProps, RenderCustomMissingEntityCard, } from './common/customCardTypes';
|
|
6
6
|
export { SortableLinkList } from './common/SortableLinkList';
|
|
7
7
|
export { EntityProvider, useEntityLoader, useEntity, useResource } from './common/EntityStore';
|
|
8
|
-
export { SharedQueryClientProvider as EntityCacheProvider } from './common/queryClient';
|
|
8
|
+
export { SharedQueryClientProvider as EntityCacheProvider, useQueryClient as useEntityQueryClient, } from './common/queryClient';
|
|
9
9
|
export type { ResourceInfo } from './common/EntityStore';
|
|
10
10
|
export { SingleResourceReferenceEditor, MultipleResourceReferenceEditor, ExternalResourceCard, } from './resources';
|
|
11
11
|
export * from './types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentful/field-editor-reference",
|
|
3
|
-
"version": "6.4.
|
|
3
|
+
"version": "6.4.5",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
@@ -38,14 +38,14 @@
|
|
|
38
38
|
"@contentful/f36-components": "^4.70.0",
|
|
39
39
|
"@contentful/f36-icons": "^4.29.0",
|
|
40
40
|
"@contentful/f36-tokens": "^4.0.5",
|
|
41
|
-
"@contentful/field-editor-shared": "^2.3.
|
|
41
|
+
"@contentful/field-editor-shared": "^2.3.2",
|
|
42
42
|
"@contentful/mimetype": "^2.2.29",
|
|
43
43
|
"@dnd-kit/core": "^6.0.8",
|
|
44
44
|
"@dnd-kit/modifiers": "^7.0.0",
|
|
45
45
|
"@dnd-kit/sortable": "^8.0.0",
|
|
46
46
|
"@tanstack/react-query": "^4.3.9",
|
|
47
47
|
"constate": "^3.3.2",
|
|
48
|
-
"contentful-management": "^11.
|
|
48
|
+
"contentful-management": "^11.45.1",
|
|
49
49
|
"emotion": "^10.0.17",
|
|
50
50
|
"lodash": "^4.17.15",
|
|
51
51
|
"moment": "^2.20.0",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"publishConfig": {
|
|
65
65
|
"registry": "https://npm.pkg.github.com/"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "818d5f85db9f0d8db39fc41a6019efb958c7b513"
|
|
68
68
|
}
|