@jsenv/navi 0.17.1 → 0.17.2
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/jsenv_navi.js +5 -3
- package/dist/jsenv_navi.js.map +4 -4
- package/package.json +1 -1
package/dist/jsenv_navi.js
CHANGED
|
@@ -22241,7 +22241,7 @@ installImportMetaCss(import.meta);import.meta.css = /* css */`
|
|
|
22241
22241
|
|
|
22242
22242
|
position: relative;
|
|
22243
22243
|
box-sizing: border-box;
|
|
22244
|
-
width:
|
|
22244
|
+
width: fit-content;
|
|
22245
22245
|
height: var(--height);
|
|
22246
22246
|
margin: 2px;
|
|
22247
22247
|
flex-direction: inherit;
|
|
@@ -22253,8 +22253,6 @@ installImportMetaCss(import.meta);import.meta.css = /* css */`
|
|
|
22253
22253
|
outline-offset: 2px;
|
|
22254
22254
|
|
|
22255
22255
|
.navi_native_input {
|
|
22256
|
-
position: absolute;
|
|
22257
|
-
inset: 0;
|
|
22258
22256
|
margin: 0;
|
|
22259
22257
|
opacity: 0;
|
|
22260
22258
|
--webkit-appearance: none;
|
|
@@ -22560,6 +22558,8 @@ const InputRangeWithAction = props => {
|
|
|
22560
22558
|
const uiState = useContext(UIStateContext);
|
|
22561
22559
|
const {
|
|
22562
22560
|
action,
|
|
22561
|
+
actionDebounce,
|
|
22562
|
+
actionAfterChange,
|
|
22563
22563
|
loading,
|
|
22564
22564
|
onCancel,
|
|
22565
22565
|
onActionPrevented,
|
|
@@ -22614,6 +22614,8 @@ const InputRangeWithAction = props => {
|
|
|
22614
22614
|
});
|
|
22615
22615
|
return jsx(InputRangeBasic, {
|
|
22616
22616
|
"data-action": boundAction.name,
|
|
22617
|
+
"data-action-debounce": actionDebounce,
|
|
22618
|
+
"data-action-after-change": actionAfterChange ? "" : undefined,
|
|
22617
22619
|
...rest,
|
|
22618
22620
|
ref: ref,
|
|
22619
22621
|
loading: loading || actionLoading
|