@jsenv/navi 0.27.39 → 0.27.40
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 +4 -5
- package/dist/jsenv_navi.js.map +5 -5
- package/package.json +1 -1
package/dist/jsenv_navi.js
CHANGED
|
@@ -36942,6 +36942,7 @@ installImportMetaCssBuild(import.meta);const css$n = /* css */`
|
|
|
36942
36942
|
position: relative;
|
|
36943
36943
|
font-size: var(--navi-control-font-size);
|
|
36944
36944
|
font-family: var(--navi-control-font-family);
|
|
36945
|
+
-webkit-tap-highlight-color: var(--navi-control-tap-highlight-color);
|
|
36945
36946
|
}
|
|
36946
36947
|
}
|
|
36947
36948
|
|
|
@@ -40114,13 +40115,11 @@ const isWithinPickerContent = (el, pickerEl) => {
|
|
|
40114
40115
|
};
|
|
40115
40116
|
const PickerInput = props => {
|
|
40116
40117
|
return jsx(Box, {
|
|
40117
|
-
as: "input"
|
|
40118
|
-
// readOnly because user MUST use the picker to change the value
|
|
40119
|
-
,
|
|
40120
|
-
|
|
40121
|
-
readOnly: true,
|
|
40118
|
+
as: "input",
|
|
40122
40119
|
"data-readonly-forced": props.readOnly ? undefined : "",
|
|
40123
40120
|
...props,
|
|
40121
|
+
// must be readOnly to prevent opening keyboard on mobile (and direct update via keyboard too, we want people to use the picker)
|
|
40122
|
+
readOnly: true,
|
|
40124
40123
|
className: "navi_picker_input",
|
|
40125
40124
|
pseudoClasses: PickerInputPseudoClasses,
|
|
40126
40125
|
onKeyDown: e => {
|