@homebound/beam 3.59.0 → 3.59.1
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/index.cjs +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +6 -3
package/dist/index.d.cts
CHANGED
|
@@ -8051,11 +8051,11 @@ declare const switchSelectedHoverStyles: Pick<Properties, never> & {
|
|
|
8051
8051
|
readonly __kind: "buildtime";
|
|
8052
8052
|
};
|
|
8053
8053
|
|
|
8054
|
-
|
|
8054
|
+
type TextAreaFieldProps<X> = {
|
|
8055
8055
|
preventNewLines?: boolean;
|
|
8056
8056
|
onEnter?: VoidFunction;
|
|
8057
8057
|
maxLines?: number;
|
|
8058
|
-
}
|
|
8058
|
+
} & BeamTextFieldProps<X>;
|
|
8059
8059
|
/** Returns a <textarea /> element that auto-adjusts height based on the field's value */
|
|
8060
8060
|
declare function TextAreaField<X extends Only<TextFieldXss, X>>(props: TextAreaFieldProps<X>): JSX.Element;
|
|
8061
8061
|
|
package/dist/index.d.ts
CHANGED
|
@@ -8051,11 +8051,11 @@ declare const switchSelectedHoverStyles: Pick<Properties, never> & {
|
|
|
8051
8051
|
readonly __kind: "buildtime";
|
|
8052
8052
|
};
|
|
8053
8053
|
|
|
8054
|
-
|
|
8054
|
+
type TextAreaFieldProps<X> = {
|
|
8055
8055
|
preventNewLines?: boolean;
|
|
8056
8056
|
onEnter?: VoidFunction;
|
|
8057
8057
|
maxLines?: number;
|
|
8058
|
-
}
|
|
8058
|
+
} & BeamTextFieldProps<X>;
|
|
8059
8059
|
/** Returns a <textarea /> element that auto-adjusts height based on the field's value */
|
|
8060
8060
|
declare function TextAreaField<X extends Only<TextFieldXss, X>>(props: TextAreaFieldProps<X>): JSX.Element;
|
|
8061
8061
|
|
package/dist/index.js
CHANGED
|
@@ -14434,7 +14434,8 @@ function SelectCardShell(props) {
|
|
|
14434
14434
|
pressProps,
|
|
14435
14435
|
isPressed: isPressedFromEvents
|
|
14436
14436
|
} = usePress({
|
|
14437
|
-
isDisabled
|
|
14437
|
+
isDisabled,
|
|
14438
|
+
preventFocusOnPress: true
|
|
14438
14439
|
});
|
|
14439
14440
|
const isHovered = __storyState?.hovered ?? isHoveredFromEvents;
|
|
14440
14441
|
const isFocusVisible = __storyState?.focusVisible ?? isFocusVisibleFromEvents;
|