@@ -21294,7 +21294,7 @@ const isAncestorOpen = (ancestor) => {
2129421294 * the browser's built-in scroll-into-view that accompanies focus.
2129521295 * @param {boolean} [options.focusVisible]
2129621296 * Passed as `focusVisible` to `element.focus()`.
21297- * @param {boolean} [options.autoSelect ]
21297+ * @param {boolean} [options.autoFocusSelect ]
2129821298 * When true, also calls `element.select()` after focusing (useful for text inputs).
2129921299 * @returns {Function} triggerAutofocus — can be called manually with a synthetic
2130021300 * event to re-run the focus logic outside of the layout-effect lifecycle.
@@ -21407,7 +21407,7 @@ const useAutoFocus = (
2140721407 ? ""
2140821408 : autoFocus
2140921409 : undefined,
21410- "navi-autofocus-select": autoFocus && autoSelect ? "" : undefined,
21410+ "navi-autofocus-select": autoSelect ? "" : undefined,
2141121411 };
2141221412};
2141321413
@@ -21924,7 +21924,7 @@ const CONTROL_PROP_SET = new Set([
2192421924
2192521925 "autoFocus",
2192621926 "autoFocusVisible",
21927- "autoSelect ",
21927+ "autoFocusSelect ",
2192821928
2192921929 "onMouseDown",
2193021930 "onClick",
@@ -24588,11 +24588,11 @@ const useInteractiveProps = (props, {
2458824588 const {
2458924589 autoFocus,
2459024590 autoFocusVisible,
24591- autoSelect
24591+ autoFocusSelect
2459224592 } = props;
2459324593 const autoFocusProps = useAutoFocus(ref, autoFocus, {
2459424594 focusVisible: autoFocusVisible,
24595- autoSelect
24595+ autoSelect: autoFocusSelect
2459624596 });
2459724597 Object.assign(controlHostProps, autoFocusProps);
2459824598 }
@@ -33885,7 +33885,7 @@ const Editable = props => {
3388533885 maxLength,
3388633886 pattern,
3388733887 wrapperProps,
33888- autoSelect = true,
33888+ autoFocusSelect = true,
3388933889 width,
3389033890 height,
3389133891 ...rest
@@ -33930,7 +33930,7 @@ const Editable = props => {
3393033930 valueSignal: valueSignal,
3393133931 autoFocus: editing,
3393233932 autoFocusVisible: true,
33933- autoSelect: autoSelect ,
33933+ autoFocusSelect: autoFocusSelect ,
3393433934 cancelOnEscape: true,
3393533935 cancelOnBlurInvalid: true,
3393633936 constraints: constraints,
@@ -35123,7 +35123,7 @@ const InputDurationPart = ({
3512335123 // When autofocused this field should be selected
3512435124 // this help to modify the value on mobile
3512535125 , {
35126- autoSelect : true,
35126+ autoFocusSelect : true,
3512735127 type: "navi_number",
3512835128 "navi-input-type": unit,
3512935129 name: unit,
0 commit comments