Skip to content

Commit f7d2e9c

Browse files
authored
Merge pull request #325 from eccenca/maintain/mergeReleaseTag-v24.4.1
Release process changes from v24.4.1
2 parents 9f106d9 + ab58289 commit f7d2e9c

4 files changed

Lines changed: 12 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
66

77
## [Unreleased]
88

9+
## [24.4.1] - 2025-08-25
10+
911
### Fixed
1012

1113
- React flow v12:
@@ -17,6 +19,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
1719

1820
- `<IconButton/>`
1921
- increase the default delay before swapping the tooltip placeholder of the icon, reducing unwanted swaps because of mouseovers that were not intended
22+
- `IntentBaseTypes` now available via root export
23+
- some `intent` properties support less or more intent types, in case you need to test supported types before, then you can use it directly from the component interface, e.g. `TextFieldProps["intent"]`
24+
25+
### Added
26+
27+
- `application-colors` and `data-color` icons, both represented by the Carbon `ColorPalette` icon
2028

2129
## [24.3.1] - 2025-08-21
2230

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@eccenca/gui-elements",
33
"description": "GUI elements based on other libraries, usable in React application, written in Typescript.",
4-
"version": "24.4.0",
4+
"version": "24.4.1",
55
"license": "Apache-2.0",
66
"homepage": "https://github.com/eccenca/gui-elements",
77
"bugs": "https://github.com/eccenca/gui-elements/issues",

src/common/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import getColorConfiguration from "./utils/getColorConfiguration";
44
import { getScrollParent } from "./utils/getScrollParent";
55
import { getGlobalVar, setGlobalVar } from "./utils/globalVars";
66
import { openInNewTab } from "./utils/openInNewTab";
7+
export type { IntentTypes as IntentBaseTypes } from "./Intent";
78

89
export const utils = {
910
openInNewTab,

src/components/Icon/canonicalIconNames.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const canonicalIcons = {
88
"application-homepage": icons.Workspace,
99
"application-legacygui": icons.ResetAlt,
1010
"application-mapping": icons.ModelBuilder,
11+
"application-colors": icons.ColorPalette,
1112
"application-queries": icons.DataView,
1213
"application-useraccount": icons.UserAvatar,
1314
"application-vocabularies": icons.Catalog,
@@ -50,6 +51,7 @@ const canonicalIcons = {
5051
"artefact-workflow": icons.ModelBuilder,
5152

5253
"data-boolean": icons.Boolean,
54+
"data-color": icons.ColorPalette,
5355
"data-sourcepath": icons.Data_2,
5456
"data-targetpath": icons.Data_1,
5557
"data-string": icons.StringText,

0 commit comments

Comments
 (0)