@tridion-sites/extensions 2.0.0 → 3.0.0
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 +55 -0
- package/dist/index.d.ts +481 -86
- package/dist/index.js +126 -23
- package/package.json +26 -27
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,60 @@
|
|
|
1
1
|
# @tridion-sites/extensions
|
|
2
2
|
|
|
3
|
+
## 3.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- f0e6de6: Update TinyMCE to version 7.3.0
|
|
8
|
+
- [BREAKING!] Models: map `Link`s inside content and metadata
|
|
9
|
+
- 458cdf6: [BREAKING!] Make `useEditor().schema` property optional
|
|
10
|
+
- 1de8ac4: react-query@5.0.0 upgrade
|
|
11
|
+
- 4fe96e1: Remove deprecated `containerId` property of mutations
|
|
12
|
+
- 2a39e32: Remove callbacks no longer supported in react-query@5.0.0
|
|
13
|
+
- 23bcf5a: Align API of `useModal()`, `useConfirmation()` and the rest of the hooks
|
|
14
|
+
- e21ab79: `userProfile` returned by `useUserProfile()` can be `undefined`
|
|
15
|
+
- 7cf79a9: OpenAPI v3 update
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- f220975: Add `isDisabled` prop to field extensions
|
|
20
|
+
- 083504a: Add `demote` action
|
|
21
|
+
- a273c4e: Add `newChildPublication` action
|
|
22
|
+
- 75944cc: Add `removeParentPublication` action
|
|
23
|
+
- ce528c5: Add `promote` action
|
|
24
|
+
- e733693: Add `pasteInContainer` action
|
|
25
|
+
- fed1499: Add optional `boolean` parameters for filtering the `/uses` and `/usedBy` requests
|
|
26
|
+
- 774d7e3: Add `yellow10` to color palette
|
|
27
|
+
- 458cdf6: Add `onUpdate` callback to `useEditor()` hook
|
|
28
|
+
- 8562ee8: Add `Modal` components and `useModal()` hook
|
|
29
|
+
- c3ba102: Add `primaryItem` to `ItemBlueprintHierarchy`
|
|
30
|
+
- e514a9a: Add new OpenAPI v3 error type `ValidationApiError`
|
|
31
|
+
- 928cab3: Add `useContainerItemsQuery()` query
|
|
32
|
+
- 37b7603: Add `includeLocalCopies` parameter for `/usedBy` list
|
|
33
|
+
- 191f8b8: Add required for some item types parameter of `useItemDefaultDataQuery()`
|
|
34
|
+
- 457e67a: Align `containerItem` api across mutations
|
|
35
|
+
- 1cf9db9: Allow control of a failure trigger for demote mutation
|
|
36
|
+
- 527c39f: Make `fieldDefinition` type more specific for `useRichTextField()` hook
|
|
37
|
+
- 871a645: Update major `styled-components`
|
|
38
|
+
- 051b91a: Extensions: Add custom content editor endpoint `ExtensionBuilder.contentEditor.addItemEditor()`
|
|
39
|
+
- 6ff5e58: Models: add generic `ListInfo` type to `IdentifiableObject`
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- c7a65bc: Models: Update model mapper to fallback to regular component when it can not be distinguished by `ComponentType`
|
|
44
|
+
Update Extensions API to make new option queries available
|
|
45
|
+
- 82f1c93: Add non localizable fields schema sync api support
|
|
46
|
+
- 2532518: Models: Fix default value for `ItemFieldDefinition.isLocalizable`
|
|
47
|
+
- 1b0165e: Update axios to avoid vulnerability
|
|
48
|
+
- b4d732a: Update to @tridion/graphene@2.6.0
|
|
49
|
+
- ee208c1: Update 3rd party dependencies
|
|
50
|
+
|
|
51
|
+
## 2.0.1
|
|
52
|
+
|
|
53
|
+
### Patch Changes
|
|
54
|
+
|
|
55
|
+
- Updated dependencies [c78d191530]
|
|
56
|
+
- @tridion-sites/models@1.1.1
|
|
57
|
+
|
|
3
58
|
## 2.0.0
|
|
4
59
|
|
|
5
60
|
### Minor Changes
|