@luomus/laji-form 15.1.28 → 15.1.29
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/dist/styles.css
CHANGED
|
@@ -2077,7 +2077,7 @@ body .laji-form {
|
|
|
2077
2077
|
border-radius: 2px;
|
|
2078
2078
|
line-height: 12.5px;
|
|
2079
2079
|
}
|
|
2080
|
-
.laji-form .form-control:not(textarea), .laji-form .rw-widget-picker.rw-widget-container, .laji-form .rw-combobox > .rw-widget-container, .laji-form .
|
|
2080
|
+
.laji-form .form-control:not(textarea), .laji-form .rw-widget-picker.rw-widget-container, .laji-form .rw-combobox > .rw-widget-container, .laji-form .rw-datetimepicker, .laji-form .tristate-buttons .btn {
|
|
2081
2081
|
height: 25px;
|
|
2082
2082
|
}
|
|
2083
2083
|
.laji-form .form-control-feedback {
|
|
@@ -288,9 +288,9 @@ function SearchableMultiDrowndown(props) {
|
|
|
288
288
|
}
|
|
289
289
|
(_a = inputRef.current) === null || _a === void 0 ? void 0 : _a.focus();
|
|
290
290
|
}, [inputRef]);
|
|
291
|
-
const wrapperClassNames = utils_1.classNames("laji-form-multiselect-input-wrapper", isOpen && "laji-form-multiselect-input-wrapper-focus", (readonly || disabled) && "laji-form-multiselect-input-wrapper-readonly");
|
|
291
|
+
const wrapperClassNames = utils_1.classNames("laji-form-multiselect-input-wrapper", isOpen && "laji-form-multiselect-input-wrapper-focus", isOpen && "input-highlight", (readonly || disabled) && "laji-form-multiselect-input-wrapper-readonly");
|
|
292
292
|
return (React.createElement("div", { onBlur: onBlur, onKeyDown: onKeyDown, ref: containerRef, className: "laji-form-multiselect", style: { position: "relative" } },
|
|
293
|
-
React.createElement("div", { className: wrapperClassNames, tabIndex: -1, onFocus: redirectFocusToInput },
|
|
293
|
+
React.createElement("div", { className: wrapperClassNames, tabIndex: -1, onFocus: redirectFocusToInput, style: { cursor: "text" } },
|
|
294
294
|
React.createElement("ul", { style: { listStyle: "none", display: "inline-block" } }, value && enumOptions && value.map(v => enumOptions.find(({ value: _value }) => v === _value) || ({ value: v, label: v }))
|
|
295
295
|
.map(enu => React.createElement(SelectedMultiValue, { key: enu.value, onDelete: onDelete, readonly: readonly || disabled }, enu))),
|
|
296
296
|
React.createElement("input", { disabled: disabled || readonly, id: id, onFocus: onFocus, value: inputValue, onChange: onInputChange, autoComplete: "off", ref: inputRef }),
|