@contentful/field-editor-reference 4.1.1 → 4.1.2

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/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [4.1.2](https://github.com/contentful/field-editors/compare/@contentful/field-editor-reference@4.1.1...@contentful/field-editor-reference@4.1.2) (2022-02-15)
7
+
8
+ ### Bug Fixes
9
+
10
+ - bump f36 packages ([#1025](https://github.com/contentful/field-editors/issues/1025)) ([ec37a40](https://github.com/contentful/field-editors/commit/ec37a4000db7cd75c66dd9621136b2272c9feeea))
11
+
6
12
  ## [4.1.1](https://github.com/contentful/field-editors/compare/@contentful/field-editor-reference@4.1.0...@contentful/field-editor-reference@4.1.1) (2022-02-14)
7
13
 
8
14
  **Note:** Version bump only for package @contentful/field-editor-reference
@@ -190,7 +190,7 @@ export declare function newReferenceEditorFakeSdk(): (import("mitt").Emitter | {
190
190
  getEditorInterfaces: () => Promise<import("@contentful/app-sdk").CollectionResponse<import("@contentful/app-sdk").EditorInterface>>;
191
191
  getAllScheduledActions: () => Promise<import("@contentful/app-sdk").ScheduledAction[]>;
192
192
  signRequest: (request: import("@contentful/app-sdk").CanonicalRequest) => Promise<Record<string, string>>;
193
- createTag: (id: string, name: string, visibility?: any) => Promise<import("@contentful/app-sdk").Tag>;
193
+ createTag: (id: string, name: string, visibility?: "private" | "public" | undefined) => Promise<import("@contentful/app-sdk").Tag>;
194
194
  readTags: (skip: number, limit: number) => Promise<import("@contentful/app-sdk").CollectionResponse<import("@contentful/app-sdk").Tag>>;
195
195
  updateTag: (id: string, name: string, version: number) => Promise<import("@contentful/app-sdk").Tag>;
196
196
  deleteTag: (id: string, version: number) => Promise<boolean>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contentful/field-editor-reference",
3
- "version": "4.1.1",
3
+ "version": "4.1.2",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/field-editor-reference.esm.js",
6
6
  "typings": "dist/index.d.ts",
@@ -21,10 +21,10 @@
21
21
  "tsc": "tsc -p ./ --noEmit"
22
22
  },
23
23
  "dependencies": {
24
- "@contentful/f36-components": "^4.0.1",
25
- "@contentful/f36-icons": "^4.0.1",
24
+ "@contentful/f36-components": "^4.0.27",
25
+ "@contentful/f36-icons": "^4.1.0",
26
26
  "@contentful/f36-tokens": "^4.0.0",
27
- "@contentful/field-editor-shared": "^1.1.1",
27
+ "@contentful/field-editor-shared": "^1.1.2",
28
28
  "@contentful/mimetype": "^1.4.0",
29
29
  "@types/deep-equal": "^1.0.1",
30
30
  "array-move": "^3.0.0",
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "devDependencies": {
40
40
  "@contentful/app-sdk": "^4.2.0",
41
- "@contentful/field-editor-test-utils": "^1.1.1",
41
+ "@contentful/field-editor-test-utils": "^1.1.2",
42
42
  "@testing-library/react-hooks": "^5.0.3"
43
43
  },
44
44
  "peerDependencies": {
@@ -55,5 +55,5 @@
55
55
  }
56
56
  }
57
57
  },
58
- "gitHead": "391dd70cdc8aeb7aa7e214149c89c07176ba860d"
58
+ "gitHead": "de8be92c698f4fd7348e79325f39ea1525439b1e"
59
59
  }