@linzjs/lui 21.53.1 → 21.53.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/dist/index.js +2 -3
- package/dist/index.js.map +1 -1
- package/dist/lui.esm.js +2 -3
- package/dist/lui.esm.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [21.53.3](https://github.com/linz/lui/compare/v21.53.2...v21.53.3) (2024-11-20)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* stop enter reaction when input is empty ([#1172](https://github.com/linz/lui/issues/1172)) ([1d00718](https://github.com/linz/lui/commit/1d00718bd29a81a9043768bf63d4d5926e3f9f59))
|
|
7
|
+
|
|
8
|
+
## [21.53.2](https://github.com/linz/lui/compare/v21.53.1...v21.53.2) (2024-11-17)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* compatibility with latest edge version ([#1171](https://github.com/linz/lui/issues/1171)) ([2615911](https://github.com/linz/lui/commit/26159117dcc6efe1b3d0be21255211adfc602166))
|
|
14
|
+
|
|
1
15
|
## [21.53.1](https://github.com/linz/lui/compare/v21.53.0...v21.53.1) (2024-11-11)
|
|
2
16
|
|
|
3
17
|
|
package/dist/index.js
CHANGED
|
@@ -42510,8 +42510,7 @@ var ControlledPassiveSearchInputComponent = function (props) {
|
|
|
42510
42510
|
function handleKeyDown(event) {
|
|
42511
42511
|
switch (event.key) {
|
|
42512
42512
|
case 'Enter':
|
|
42513
|
-
if (inputValidationResult
|
|
42514
|
-
inputValidationResult.stopProgress === true)
|
|
42513
|
+
if (typedValue === '' || (inputValidationResult === null || inputValidationResult === void 0 ? void 0 : inputValidationResult.stopProgress) === true)
|
|
42515
42514
|
return;
|
|
42516
42515
|
props.onSearch(typedValue);
|
|
42517
42516
|
}
|
|
@@ -54770,7 +54769,7 @@ var LuiAccordicardStatic = function (props) {
|
|
|
54770
54769
|
React__default["default"].createElement(LuiIcon, { className: clsx('LuiAccordicardStatic-chevron', isOpen ? 'LuiAccordicardStatic-chevron--isOpen' : null), name: 'ic_expand_more', alt: "expand", title: "Expand and collapse panel", size: "md" }))));
|
|
54771
54770
|
};
|
|
54772
54771
|
|
|
54773
|
-
var css_248z$g = "/**\n @deprecated\n */\n/**\n @deprecated\n */\n/**\n @deprecated\n */\n.lui-accordion {\n padding: 8px;\n
|
|
54772
|
+
var css_248z$g = "/**\n @deprecated\n */\n/**\n @deprecated\n */\n/**\n @deprecated\n */\n.lui-accordion {\n padding: 8px;\n border-radius: 5px;\n box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2509803922), 0px 0px 3px 0px rgba(0, 0, 0, 0.1490196078);\n}\n.lui-accordion .chevron {\n transition: all 0.3s ease-in-out;\n transform: rotate(0);\n}\n.lui-accordion .chevron--isOpen {\n transform: rotate(180deg);\n}\n.lui-accordion .accordion-heading {\n padding: 4px;\n}\n.lui-accordion h4 {\n padding: 4px;\n}\n.lui-accordion > summary {\n display: flex;\n align-items: center;\n cursor: pointer;\n}\n.lui-accordion > summary h4 {\n margin-top: 0;\n display: inline-block;\n}\n.lui-accordion > summary::marker, .lui-accordion > summary::-webkit-details-marker {\n display: none;\n}";
|
|
54774
54773
|
styleInject(css_248z$g);
|
|
54775
54774
|
|
|
54776
54775
|
var LuiAccordion = function (props) {
|