You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
6
6
7
7
## [Unreleased]
8
8
9
+
This is a major release, and it might be not compatible with your current usage of our library. Please read about the necessary changes in the section about how to migrate.
10
+
9
11
### Added
10
12
11
13
- Extended existing height and readOnly props from `CodeEditorProps` to `AutoSuggestionProps` & `ExtendedCodeEditorProps` to be configurable from `<CodeAutocompleteField />`
14
+
- `<CodeAutocompleteField />:
15
+
- outerDivAttributes parameter: Allows to set parameter of the container div element of the code complete field.
12
16
13
17
## [24.3.0] - 2025-06-05
14
18
@@ -58,6 +62,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
58
62
59
63
### Changed
60
64
65
+
-`eslint` libraries were upgraded to v9, so `node` v18.18 or higher is required
66
+
- react flow integration by renaming their resources from `legacy` and `next` to more precise `v9` and `v10`:
67
+
-`HandleProps`: renamed to `HandleV9Props`
68
+
-`HandleNextProps`: renamed to `HandleV10Props`
69
+
- if provided then the `flowVersion` property do not accept `legacy` and `next` as values anymore, use `v9` and `v10`
61
70
- some more interfaces are exposed:
62
71
-`IntentBlueprint`: BlueprintJS intent types, also available by `DefinitionsBlueprint`
63
72
-`TableDataContainerProps`, `TableSimpleContainerProps`, `TableHeadProps`, `TableBodyProps`, `TableExpandedRowProps`, `TableHeaderProps` and `DataTableRenderProps` as interfaces for diverse table components
@@ -80,6 +89,18 @@ Old bundlers like webpack4 do not support the `exports` field from `package.json
80
89
81
90
If you use Jest then you can use the same aliases for the `moduleNameMapper` config, if necessary.
82
91
92
+
### Deprecated
93
+
94
+
-`HandleV9Props` and `HandleV10Props` export will be removed, use only `HandleDefaultProps`
95
+
-`<NodeContent />`
96
+
-`businessDate`: will be removed because it is already not used
97
+
-`<ReactFlow />`: use `<ReactFlowExtended />`
98
+
99
+
### Migration from v24 to v25
100
+
101
+
- remove deprecated components, properties and imports from your project, if the info cannot be found here then it was already mentioned in **Deprecated** sections of the v24.* changelogs.
102
+
- we changed the integration of the supported react flow versions, formerly names `legacy` and `next` resources were renamed to more precise `v9` and `v10`, please see all info in the section about changes
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -125,7 +125,7 @@ After you tested the GUI elements package locally you can Clean up your applicat
125
125
3. Pull request from release branch into `main` need to be approved
126
126
- then ["Publish: final release "](https://github.com/eccenca/gui-elements/actions/workflows/publish-final-release.yml) can be used on `main` (or `next` and `legacy`) to publish final release packages
127
127
- another PR is automatically created for changes done during publishing process
0 commit comments