@contentful/field-editor-reference 6.4.4 → 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;
|
|
@@ -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 };
|
|
@@ -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/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
|
}
|