Skip to content

Commit 38ea077

Browse files
committed
fix: events in footer element not directly triggered
1 parent bd49b44 commit 38ea077

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

packages/pluggableWidgets/combobox-web/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
### Fixed
10+
11+
- We fixed an issue where events from element in footer not directly triggered when input being focused.
12+
913
## [2.4.0] - 2025-05-19
1014

1115
### Fixed

packages/pluggableWidgets/combobox-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mendix/combobox-web",
33
"widgetName": "Combobox",
4-
"version": "2.4.0",
4+
"version": "2.4.1",
55
"description": "Configurable Combo box widget with suggestions and autocomplete.",
66
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
77
"license": "Apache-2.0",

packages/pluggableWidgets/combobox-web/src/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<package xmlns="http://www.mendix.com/package/1.0/">
3-
<clientModule name="Combobox" version="2.4.0" xmlns="http://www.mendix.com/clientModule/1.0/">
3+
<clientModule name="Combobox" version="2.4.1" xmlns="http://www.mendix.com/clientModule/1.0/">
44
<widgetFiles>
55
<widgetFile path="Combobox.xml" />
66
</widgetFiles>

packages/pluggableWidgets/combobox-web/src/ui/Combobox.scss

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,12 @@ $cb-skeleton-dark: #d2d2d2;
150150
background-color: transparent;
151151
}
152152
}
153+
154+
&:not(.widget-combobox-input-container-active) {
155+
.widget-combobox-input {
156+
width: 1px;
157+
}
158+
}
153159
}
154160

155161
&-input {
@@ -276,8 +282,7 @@ $cb-skeleton-dark: #d2d2d2;
276282
&.widget-combobox-boxes {
277283
margin: -2px 0;
278284
.widget-combobox-input {
279-
&-nofilter,
280-
&:not(:focus) {
285+
&-nofilter {
281286
width: 1px;
282287
}
283288
}

0 commit comments

Comments
 (0)