@contentful/field-editor-list 1.4.1 → 1.4.4

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.
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ /// <reference types="react" />
2
2
  import { FieldAPI, LocalesAPI } from '@contentful/field-editor-shared';
3
3
  export interface ListEditorProps {
4
4
  /**
@@ -14,7 +14,7 @@ export interface ListEditorProps {
14
14
  */
15
15
  locales: LocalesAPI;
16
16
  }
17
- export declare function ListEditor(props: ListEditorProps): React.JSX.Element;
17
+ export declare function ListEditor(props: ListEditorProps): JSX.Element;
18
18
  export declare namespace ListEditor {
19
19
  var defaultProps: {
20
20
  isInitiallyDisabled: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contentful/field-editor-list",
3
- "version": "1.4.1",
3
+ "version": "1.4.4",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/types/index.d.ts",
@@ -37,15 +37,18 @@
37
37
  "dependencies": {
38
38
  "@contentful/f36-components": "^4.0.27",
39
39
  "@contentful/f36-tokens": "^4.0.0",
40
- "@contentful/field-editor-shared": "^1.4.1",
40
+ "@contentful/field-editor-shared": "^1.4.4",
41
41
  "emotion": "^10.0.17",
42
42
  "lodash": "^4.17.15"
43
43
  },
44
44
  "devDependencies": {
45
- "@contentful/field-editor-test-utils": "^1.4.2"
45
+ "@contentful/field-editor-test-utils": "^1.4.5"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "react": ">=16.8.0"
49
49
  },
50
- "gitHead": "0fc8da4aa8ad8603c3adf4bd77b26ba46de11e33"
50
+ "publishConfig": {
51
+ "registry": "https://npm.pkg.github.com/"
52
+ },
53
+ "gitHead": "b1f62d6b934520b6d4dc328921dd500381d1e22c"
51
54
  }