@jsenv/navi 0.12.39 → 0.12.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 +6 -5
- package/dist/jsenv_navi.js.map +5 -5
- package/package.json +1 -1
package/dist/jsenv_navi.js
CHANGED
|
@@ -16176,7 +16176,7 @@ const InputCheckboxBasic = props => {
|
|
|
16176
16176
|
...rest
|
|
16177
16177
|
} = props;
|
|
16178
16178
|
const defaultRef = useRef();
|
|
16179
|
-
const ref =
|
|
16179
|
+
const ref = rest.ref || defaultRef;
|
|
16180
16180
|
const innerName = name || contextFieldName;
|
|
16181
16181
|
const innerDisabled = disabled || contextDisabled;
|
|
16182
16182
|
const innerRequired = required || contextRequired;
|
|
@@ -16233,7 +16233,7 @@ const InputCheckboxBasic = props => {
|
|
|
16233
16233
|
return jsxs(Box, {
|
|
16234
16234
|
as: "span",
|
|
16235
16235
|
...rest,
|
|
16236
|
-
ref:
|
|
16236
|
+
ref: undefined,
|
|
16237
16237
|
baseClassName: "navi_checkbox",
|
|
16238
16238
|
pseudoStateSelector: ".navi_native_field",
|
|
16239
16239
|
styleCSSVars: CheckboxStyleCSSVars,
|
|
@@ -16582,7 +16582,7 @@ const InputRadioBasic = props => {
|
|
|
16582
16582
|
...rest
|
|
16583
16583
|
} = props;
|
|
16584
16584
|
const defaultRef = useRef();
|
|
16585
|
-
const ref =
|
|
16585
|
+
const ref = rest.ref || defaultRef;
|
|
16586
16586
|
const innerName = name || contextName;
|
|
16587
16587
|
const innerDisabled = disabled || contextDisabled;
|
|
16588
16588
|
const innerRequired = required || contextRequired;
|
|
@@ -16666,7 +16666,7 @@ const InputRadioBasic = props => {
|
|
|
16666
16666
|
return jsxs(Box, {
|
|
16667
16667
|
as: "span",
|
|
16668
16668
|
...rest,
|
|
16669
|
-
ref:
|
|
16669
|
+
ref: undefined,
|
|
16670
16670
|
baseClassName: "navi_radio",
|
|
16671
16671
|
pseudoStateSelector: ".navi_native_field",
|
|
16672
16672
|
styleCSSVars: RadioStyleCSSVars,
|
|
@@ -16907,7 +16907,7 @@ const InputTextualBasic = props => {
|
|
|
16907
16907
|
...rest
|
|
16908
16908
|
} = props;
|
|
16909
16909
|
const defaultRef = useRef();
|
|
16910
|
-
const ref =
|
|
16910
|
+
const ref = rest.ref || defaultRef;
|
|
16911
16911
|
const innerValue = type === "datetime-local" ? convertToLocalTimezone(uiState) : uiState;
|
|
16912
16912
|
const innerLoading = loading || contextLoading && contextLoadingElement === ref.current;
|
|
16913
16913
|
const innerReadOnly = readOnly || contextReadOnly || innerLoading || uiStateController.readOnly;
|
|
@@ -16968,6 +16968,7 @@ const InputTextualBasic = props => {
|
|
|
16968
16968
|
pseudoElements: InputPseudoElements,
|
|
16969
16969
|
hasChildFunction: true,
|
|
16970
16970
|
...rest,
|
|
16971
|
+
ref: undefined,
|
|
16971
16972
|
children: [jsx(LoaderBackground, {
|
|
16972
16973
|
loading: innerLoading,
|
|
16973
16974
|
color: "var(--loader-color)",
|