Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

## [Unreleased]

## [24.4.1] - 2025-08-25

### Fixed

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

- `<IconButton/>`
- increase the default delay before swapping the tooltip placeholder of the icon, reducing unwanted swaps because of mouseovers that were not intended
- `IntentBaseTypes` now available via root export
- 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"]`

### Added

- `application-colors` and `data-color` icons, both represented by the Carbon `ColorPalette` icon

## [24.3.1] - 2025-08-21

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@eccenca/gui-elements",
"description": "GUI elements based on other libraries, usable in React application, written in Typescript.",
"version": "24.4.0",
"version": "24.4.1",
"license": "Apache-2.0",
"homepage": "https://github.com/eccenca/gui-elements",
"bugs": "https://github.com/eccenca/gui-elements/issues",
Expand Down
1 change: 1 addition & 0 deletions src/common/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import getColorConfiguration from "./utils/getColorConfiguration";
import { getScrollParent } from "./utils/getScrollParent";
import { getGlobalVar, setGlobalVar } from "./utils/globalVars";
import { openInNewTab } from "./utils/openInNewTab";
export type { IntentTypes as IntentBaseTypes } from "./Intent";

export const utils = {
openInNewTab,
Expand Down
2 changes: 2 additions & 0 deletions src/components/Icon/canonicalIconNames.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const canonicalIcons = {
"application-homepage": icons.Workspace,
"application-legacygui": icons.ResetAlt,
"application-mapping": icons.ModelBuilder,
"application-colors": icons.ColorPalette,
"application-queries": icons.DataView,
"application-useraccount": icons.UserAvatar,
"application-vocabularies": icons.Catalog,
Expand Down Expand Up @@ -50,6 +51,7 @@ const canonicalIcons = {
"artefact-workflow": icons.ModelBuilder,

"data-boolean": icons.Boolean,
"data-color": icons.ColorPalette,
"data-sourcepath": icons.Data_2,
"data-targetpath": icons.Data_1,
"data-string": icons.StringText,
Expand Down