Skip to content
Draft
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- `<MultiSuggestField />`
- `onSelection` now sets `newlySelected` only for add actions and no longer sets it to the last element
- border of the BlueprintJS `Tag` elements were fixed
- `<Modal />`
- fix specificity for pointer-events rules on SVG
- Focus outlines
- we use again bold focus outlines for input elements
- they are also used for clickable elements that are focused via keyboard (tab navigation)
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": "25.0.0",
"version": "25.1.0",
"license": "Apache-2.0",
"homepage": "https://github.com/eccenca/gui-elements",
"bugs": "https://github.com/eccenca/gui-elements/issues",
Expand Down
4 changes: 2 additions & 2 deletions src/components/Dialog/dialog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ $eccgui-color-modal-backdrop: eccgui-color-rgba(
max-width: calc(100vw - 4rem);
max-height: calc(100vh - 4rem);
margin: 2rem;
pointer-events: all;
pointer-events: auto;
user-select: text;

& > * {
Expand All @@ -50,7 +50,7 @@ $eccgui-color-modal-backdrop: eccgui-color-rgba(
max-width: 100%;
}

* {
*:has(> svg) {
pointer-events: all;
}

Expand Down
Loading