@basic-ui/material 0.1.15 → 0.1.16

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.
Files changed (55) hide show
  1. package/build/cjs/index.js +58 -43
  2. package/build/cjs/index.js.map +1 -1
  3. package/build/esm/Combobox/Combobox.d.ts +7 -7
  4. package/build/esm/Combobox/Combobox.js +1 -0
  5. package/build/esm/Combobox/Combobox.js.map +1 -1
  6. package/build/esm/FloatingLabel/FloatingLabel.d.ts +0 -1
  7. package/build/esm/FloatingLabel/FloatingLabel.js +1 -3
  8. package/build/esm/FloatingLabel/FloatingLabel.js.map +1 -1
  9. package/build/esm/Menu/Menu.d.ts +4 -4
  10. package/build/esm/Menu/Menu.js +1 -0
  11. package/build/esm/Menu/Menu.js.map +1 -1
  12. package/build/esm/NotchedOutline/styledComponents.js +2 -2
  13. package/build/esm/NotchedOutline/styledComponents.js.map +1 -1
  14. package/build/esm/Select/Select.d.ts +3 -3
  15. package/build/esm/Select/Select.js +3 -12
  16. package/build/esm/Select/Select.js.map +1 -1
  17. package/build/esm/Select/SelectIcon.d.ts +1 -1
  18. package/build/esm/Select/SelectIcon.js +3 -1
  19. package/build/esm/Select/SelectIcon.js.map +1 -1
  20. package/build/esm/Select/styledComponents.js +9 -5
  21. package/build/esm/Select/styledComponents.js.map +1 -1
  22. package/build/esm/SelectItem/SelectItem.d.ts +1 -1
  23. package/build/esm/TextField/FilledContainer.d.ts +1 -1
  24. package/build/esm/TextField/FilledContainer.js +11 -5
  25. package/build/esm/TextField/FilledContainer.js.map +1 -1
  26. package/build/esm/TextField/IconContainer.d.ts +2 -2
  27. package/build/esm/TextField/IconContainer.js +4 -2
  28. package/build/esm/TextField/IconContainer.js.map +1 -1
  29. package/build/esm/TextField/Input.d.ts +1 -1
  30. package/build/esm/TextField/Input.js +17 -9
  31. package/build/esm/TextField/Input.js.map +1 -1
  32. package/build/esm/TextField/OutlinedContainer.d.ts +1 -1
  33. package/build/esm/TextField/OutlinedContainer.js +7 -4
  34. package/build/esm/TextField/OutlinedContainer.js.map +1 -1
  35. package/build/esm/TextField/TextField.d.ts +1 -1
  36. package/build/esm/TextField/consts.d.ts +5 -0
  37. package/build/esm/TextField/consts.js +6 -0
  38. package/build/esm/TextField/consts.js.map +1 -0
  39. package/build/tsconfig.tsbuildinfo +1 -1
  40. package/package.json +2 -2
  41. package/src/Combobox/Combobox.tsx +1 -0
  42. package/src/FloatingLabel/FloatingLabel.tsx +0 -3
  43. package/src/Menu/Menu.tsx +1 -0
  44. package/src/NotchedOutline/styledComponents.ts +1 -1
  45. package/src/Select/PaymentMethodSelect.story.tsx +321 -0
  46. package/src/Select/Select.story.tsx +26 -1
  47. package/src/Select/Select.tsx +12 -34
  48. package/src/Select/SelectIcon.tsx +2 -1
  49. package/src/Select/styledComponents.tsx +8 -4
  50. package/src/TextField/FilledContainer.tsx +22 -5
  51. package/src/TextField/IconContainer.tsx +5 -4
  52. package/src/TextField/Input.tsx +29 -9
  53. package/src/TextField/OutlinedContainer.tsx +18 -4
  54. package/src/TextField/TextField.story.tsx +14 -1
  55. package/src/TextField/consts.ts +7 -0
@@ -8,16 +8,16 @@ import { TextProps } from '../Text';
8
8
  import { ButtonProps } from '../Button';
9
9
  export { useComboBoxContext } from '@basic-ui/core';
10
10
  export declare type ComboboxProps = Omit<BoxProps<HTMLDivElement, React.HTMLAttributes<HTMLDivElement>>, 'onSelect'> & ComboboxPropsCore;
11
- export declare const Combobox: React.ForwardRefExoticComponent<Pick<ComboboxProps, "children" | "slot" | "style" | "title" | "translate" | "hidden" | keyof import("../Box").BaseProps | keyof import("styled-system").SpaceProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>, string | number | symbol> | keyof import("styled-system").LayoutProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | keyof import("styled-system").TypographyProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | keyof import("styled-system").ColorProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>, string | number | symbol> | keyof import("styled-system").FlexboxProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | keyof import("styled-system").BorderProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>, import("csstype").Property.Border<import("styled-system").TLengthStyledSystem>> | keyof import("styled-system").GridProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | keyof import("styled-system").BackgroundProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>, import("csstype").Property.Background<import("styled-system").TLengthStyledSystem>> | keyof import("styled-system").PositionProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | keyof import("styled-system").ShadowProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "innerAs" | "openOnFocus" | "selectOnBlur"> & React.RefAttributes<HTMLDivElement>>;
11
+ export declare const Combobox: React.ForwardRefExoticComponent<Pick<ComboboxProps, "hidden" | keyof import("../Box").BaseProps | keyof import("styled-system").SpaceProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>, string | number | symbol> | keyof import("styled-system").LayoutProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | keyof import("styled-system").TypographyProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | keyof import("styled-system").ColorProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>, string | number | symbol> | keyof import("styled-system").FlexboxProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | keyof import("styled-system").BorderProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>, import("csstype").Property.Border<import("styled-system").TLengthStyledSystem>> | keyof import("styled-system").GridProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | keyof import("styled-system").BackgroundProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>, import("csstype").Property.Background<import("styled-system").TLengthStyledSystem>> | keyof import("styled-system").PositionProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | keyof import("styled-system").ShadowProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | "className" | "id" | "lang" | "style" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "slot" | "title" | "translate" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "placeholder" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "innerAs" | "openOnFocus" | "selectOnBlur"> & React.RefAttributes<HTMLDivElement>>;
12
12
  export declare type ComboboxInputProps = Omit<ComboboxInputPropsCore & TextFieldProps, 'ref'> & React.RefAttributes<HTMLInputElement>;
13
- export declare const ComboboxInput: React.ForwardRefExoticComponent<Pick<ComboboxInputProps, "label" | "p" | "alignContent" | "alignItems" | "alignSelf" | "backgroundColor" | "backgroundImage" | "backgroundPosition" | "backgroundRepeat" | "backgroundSize" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStyle" | "borderBottomWidth" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStyle" | "borderTopWidth" | "bottom" | "boxShadow" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "order" | "overflowX" | "overflowY" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "textAlign" | "textShadow" | "top" | "verticalAlign" | "zIndex" | "background" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderStyle" | "borderTop" | "borderWidth" | "flex" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "gridColumnGap" | "gridGap" | "gridRowGap" | "bg" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "variant" | "sx" | "__css" | "tx" | "theme" | "borderX" | "borderY" | "key" | "error" | "multiline" | "hasLabel" | "leadingIcon" | "trailingIcon" | "containerProps" | "helperText" | "hideCharacterCounter" | keyof ComboboxInputPropsCore> & React.RefAttributes<HTMLInputElement>>;
13
+ export declare const ComboboxInput: React.ForwardRefExoticComponent<Pick<ComboboxInputProps, "bottom" | "top" | "left" | "right" | "sx" | "__css" | "variant" | "tx" | "theme" | "m" | "margin" | "mt" | "marginTop" | "mr" | "marginRight" | "mb" | "marginBottom" | "ml" | "marginLeft" | "mx" | "marginX" | "my" | "marginY" | "p" | "padding" | "pt" | "paddingTop" | "pr" | "paddingRight" | "pb" | "paddingBottom" | "pl" | "paddingLeft" | "px" | "paddingX" | "py" | "paddingY" | "minWidth" | "minHeight" | "maxWidth" | "maxHeight" | "display" | "verticalAlign" | "overflow" | "overflowX" | "overflowY" | "fontFamily" | "fontSize" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontStyle" | "textAlign" | "bg" | "backgroundColor" | "opacity" | "alignItems" | "alignContent" | "justifyItems" | "justifyContent" | "flexWrap" | "flexDirection" | "flex" | "flexGrow" | "flexShrink" | "flexBasis" | "justifySelf" | "alignSelf" | "order" | "border" | "borderX" | "borderY" | "borderWidth" | "borderTopWidth" | "borderBottomWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStyle" | "borderTopStyle" | "borderBottomStyle" | "borderLeftStyle" | "borderRightStyle" | "borderColor" | "borderTopColor" | "borderBottomColor" | "borderLeftColor" | "borderRightColor" | "borderRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTop" | "borderRight" | "borderBottom" | "borderLeft" | "gridGap" | "gridColumnGap" | "gridRowGap" | "gridColumn" | "gridRow" | "gridAutoFlow" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateColumns" | "gridTemplateRows" | "gridTemplateAreas" | "gridArea" | "background" | "backgroundImage" | "backgroundSize" | "backgroundPosition" | "backgroundRepeat" | "position" | "zIndex" | "boxShadow" | "textShadow" | "key" | "label" | "error" | "leadingIcon" | "helperText" | "hasLabel" | "multiline" | "trailingIcon" | "containerProps" | "hideCharacterCounter" | keyof ComboboxInputPropsCore> & React.RefAttributes<HTMLInputElement>>;
14
14
  export declare type ComboboxListProps = Omit<ComboboxListPropsCore & ListProps, 'ref'> & React.RefAttributes<HTMLUListElement>;
15
- export declare const ComboboxList: React.ForwardRefExoticComponent<Pick<ComboboxListProps, "children" | "p" | "slot" | "style" | "title" | "alignContent" | "alignItems" | "alignSelf" | "backgroundColor" | "backgroundImage" | "backgroundPosition" | "backgroundRepeat" | "backgroundSize" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStyle" | "borderBottomWidth" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStyle" | "borderTopWidth" | "bottom" | "boxShadow" | "color" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "order" | "overflowX" | "overflowY" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "textAlign" | "textShadow" | "top" | "translate" | "verticalAlign" | "width" | "zIndex" | "background" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderStyle" | "borderTop" | "borderWidth" | "flex" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "gridColumnGap" | "gridGap" | "gridRowGap" | "bg" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "variant" | "size" | "elevation" | "hidden" | "as" | "sx" | "__css" | "tx" | "theme" | "borderX" | "borderY" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "outlined" | "backgroundOverlay" | "key" | "innerAs" | "persistSelection"> & React.RefAttributes<HTMLUListElement>>;
15
+ export declare const ComboboxList: React.ForwardRefExoticComponent<Pick<ComboboxListProps, "bottom" | "top" | "hidden" | "left" | "right" | "as" | "sx" | "__css" | "variant" | "tx" | "theme" | "m" | "margin" | "mt" | "marginTop" | "mr" | "marginRight" | "mb" | "marginBottom" | "ml" | "marginLeft" | "mx" | "marginX" | "my" | "marginY" | "p" | "padding" | "pt" | "paddingTop" | "pr" | "paddingRight" | "pb" | "paddingBottom" | "pl" | "paddingLeft" | "px" | "paddingX" | "py" | "paddingY" | "width" | "height" | "minWidth" | "minHeight" | "maxWidth" | "maxHeight" | "display" | "verticalAlign" | "size" | "overflow" | "overflowX" | "overflowY" | "fontFamily" | "fontSize" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontStyle" | "textAlign" | "color" | "bg" | "backgroundColor" | "opacity" | "alignItems" | "alignContent" | "justifyItems" | "justifyContent" | "flexWrap" | "flexDirection" | "flex" | "flexGrow" | "flexShrink" | "flexBasis" | "justifySelf" | "alignSelf" | "order" | "border" | "borderX" | "borderY" | "borderWidth" | "borderTopWidth" | "borderBottomWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStyle" | "borderTopStyle" | "borderBottomStyle" | "borderLeftStyle" | "borderRightStyle" | "borderColor" | "borderTopColor" | "borderBottomColor" | "borderLeftColor" | "borderRightColor" | "borderRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTop" | "borderRight" | "borderBottom" | "borderLeft" | "gridGap" | "gridColumnGap" | "gridRowGap" | "gridColumn" | "gridRow" | "gridAutoFlow" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateColumns" | "gridTemplateRows" | "gridTemplateAreas" | "gridArea" | "background" | "backgroundImage" | "backgroundSize" | "backgroundPosition" | "backgroundRepeat" | "position" | "zIndex" | "boxShadow" | "textShadow" | "className" | "id" | "lang" | "style" | "role" | "tabIndex" | "elevation" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "slot" | "title" | "translate" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "placeholder" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "outlined" | "innerAs" | "backgroundOverlay" | "persistSelection"> & React.RefAttributes<HTMLUListElement>>;
16
16
  export declare type ComboboxPopoverProps = ComboboxPopoverPropsCore & ListProps;
17
- export declare const ComboboxPopover: React.ForwardRefExoticComponent<Pick<ComboboxPopoverProps, "children" | "p" | "slot" | "style" | "title" | "alignContent" | "alignItems" | "alignSelf" | "backgroundColor" | "backgroundImage" | "backgroundPosition" | "backgroundRepeat" | "backgroundSize" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStyle" | "borderBottomWidth" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStyle" | "borderTopWidth" | "bottom" | "boxShadow" | "color" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "order" | "overflowX" | "overflowY" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "textAlign" | "textShadow" | "top" | "translate" | "verticalAlign" | "width" | "zIndex" | "background" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderStyle" | "borderTop" | "borderWidth" | "flex" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "gridColumnGap" | "gridGap" | "gridRowGap" | "bg" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "variant" | "size" | "elevation" | "hidden" | "as" | "sx" | "__css" | "tx" | "theme" | "borderX" | "borderY" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "outlined" | "backgroundOverlay" | "key" | "innerAs"> & React.RefAttributes<HTMLDivElement>>;
17
+ export declare const ComboboxPopover: React.ForwardRefExoticComponent<Pick<ComboboxPopoverProps, "bottom" | "top" | "hidden" | "left" | "right" | "as" | "sx" | "__css" | "variant" | "tx" | "theme" | "m" | "margin" | "mt" | "marginTop" | "mr" | "marginRight" | "mb" | "marginBottom" | "ml" | "marginLeft" | "mx" | "marginX" | "my" | "marginY" | "p" | "padding" | "pt" | "paddingTop" | "pr" | "paddingRight" | "pb" | "paddingBottom" | "pl" | "paddingLeft" | "px" | "paddingX" | "py" | "paddingY" | "width" | "height" | "minWidth" | "minHeight" | "maxWidth" | "maxHeight" | "display" | "verticalAlign" | "size" | "overflow" | "overflowX" | "overflowY" | "fontFamily" | "fontSize" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontStyle" | "textAlign" | "color" | "bg" | "backgroundColor" | "opacity" | "alignItems" | "alignContent" | "justifyItems" | "justifyContent" | "flexWrap" | "flexDirection" | "flex" | "flexGrow" | "flexShrink" | "flexBasis" | "justifySelf" | "alignSelf" | "order" | "border" | "borderX" | "borderY" | "borderWidth" | "borderTopWidth" | "borderBottomWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStyle" | "borderTopStyle" | "borderBottomStyle" | "borderLeftStyle" | "borderRightStyle" | "borderColor" | "borderTopColor" | "borderBottomColor" | "borderLeftColor" | "borderRightColor" | "borderRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTop" | "borderRight" | "borderBottom" | "borderLeft" | "gridGap" | "gridColumnGap" | "gridRowGap" | "gridColumn" | "gridRow" | "gridAutoFlow" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateColumns" | "gridTemplateRows" | "gridTemplateAreas" | "gridArea" | "background" | "backgroundImage" | "backgroundSize" | "backgroundPosition" | "backgroundRepeat" | "position" | "zIndex" | "boxShadow" | "textShadow" | "className" | "id" | "lang" | "style" | "role" | "tabIndex" | "elevation" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "slot" | "title" | "translate" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "placeholder" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "outlined" | "innerAs" | "backgroundOverlay"> & React.RefAttributes<HTMLDivElement>>;
18
18
  export declare type ComboboxOptionProps = Omit<ComboboxOptionPropsCore & ListItemProps, 'ref'> & React.RefAttributes<HTMLLIElement>;
19
- export declare const ComboboxOption: React.ForwardRefExoticComponent<Pick<ComboboxOptionProps, "value" | "children" | "p" | "slot" | "style" | "title" | "text" | "alignContent" | "alignItems" | "alignSelf" | "backgroundColor" | "backgroundImage" | "backgroundPosition" | "backgroundRepeat" | "backgroundSize" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStyle" | "borderBottomWidth" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStyle" | "borderTopWidth" | "bottom" | "boxShadow" | "color" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "order" | "overflowX" | "overflowY" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "textAlign" | "textShadow" | "top" | "translate" | "verticalAlign" | "width" | "zIndex" | "background" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderStyle" | "borderTop" | "borderWidth" | "flex" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "gridColumnGap" | "gridGap" | "gridRowGap" | "bg" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "variant" | "size" | "hidden" | "as" | "sx" | "__css" | "tx" | "theme" | "borderX" | "borderY" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "disabled" | "rippleColor" | "innerAs" | "selected"> & React.RefAttributes<HTMLLIElement>>;
19
+ export declare const ComboboxOption: React.ForwardRefExoticComponent<Pick<ComboboxOptionProps, "bottom" | "top" | "hidden" | "left" | "right" | "as" | "sx" | "__css" | "variant" | "tx" | "theme" | "m" | "margin" | "mt" | "marginTop" | "mr" | "marginRight" | "mb" | "marginBottom" | "ml" | "marginLeft" | "mx" | "marginX" | "my" | "marginY" | "p" | "padding" | "pt" | "paddingTop" | "pr" | "paddingRight" | "pb" | "paddingBottom" | "pl" | "paddingLeft" | "px" | "paddingX" | "py" | "paddingY" | "width" | "height" | "minWidth" | "minHeight" | "maxWidth" | "maxHeight" | "display" | "verticalAlign" | "size" | "overflow" | "overflowX" | "overflowY" | "fontFamily" | "fontSize" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontStyle" | "textAlign" | "color" | "bg" | "backgroundColor" | "opacity" | "alignItems" | "alignContent" | "justifyItems" | "justifyContent" | "flexWrap" | "flexDirection" | "flex" | "flexGrow" | "flexShrink" | "flexBasis" | "justifySelf" | "alignSelf" | "order" | "border" | "borderX" | "borderY" | "borderWidth" | "borderTopWidth" | "borderBottomWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStyle" | "borderTopStyle" | "borderBottomStyle" | "borderLeftStyle" | "borderRightStyle" | "borderColor" | "borderTopColor" | "borderBottomColor" | "borderLeftColor" | "borderRightColor" | "borderRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTop" | "borderRight" | "borderBottom" | "borderLeft" | "gridGap" | "gridColumnGap" | "gridRowGap" | "gridColumn" | "gridRow" | "gridAutoFlow" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateColumns" | "gridTemplateRows" | "gridTemplateAreas" | "gridArea" | "background" | "backgroundImage" | "backgroundSize" | "backgroundPosition" | "backgroundRepeat" | "position" | "zIndex" | "boxShadow" | "textShadow" | "className" | "id" | "lang" | "style" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "slot" | "title" | "text" | "translate" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "placeholder" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "disabled" | "value" | "innerAs" | "selected" | "rippleColor"> & React.RefAttributes<HTMLLIElement>>;
20
20
  export declare type ComboboxLabelProps = Omit<ComboboxLabelPropsCore & TextProps, 'ref'> & React.RefAttributes<HTMLLabelElement>;
21
- export declare const ComboboxLabel: React.ForwardRefExoticComponent<Pick<ComboboxLabelProps, "children" | "form" | "p" | "slot" | "style" | "title" | "alignContent" | "alignItems" | "alignSelf" | "backgroundColor" | "backgroundImage" | "backgroundPosition" | "backgroundRepeat" | "backgroundSize" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStyle" | "borderBottomWidth" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStyle" | "borderTopWidth" | "bottom" | "boxShadow" | "color" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "order" | "overflowX" | "overflowY" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "textAlign" | "textShadow" | "top" | "translate" | "verticalAlign" | "width" | "zIndex" | "background" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderStyle" | "borderTop" | "borderWidth" | "flex" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "gridColumnGap" | "gridGap" | "gridRowGap" | "bg" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "variant" | "size" | "hidden" | "as" | "sx" | "__css" | "tx" | "theme" | "borderX" | "borderY" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "innerAs" | "htmlFor"> & React.RefAttributes<HTMLLabelElement>>;
21
+ export declare const ComboboxLabel: React.ForwardRefExoticComponent<Pick<ComboboxLabelProps, "bottom" | "top" | "hidden" | "left" | "right" | "as" | "sx" | "__css" | "variant" | "tx" | "theme" | "m" | "margin" | "mt" | "marginTop" | "mr" | "marginRight" | "mb" | "marginBottom" | "ml" | "marginLeft" | "mx" | "marginX" | "my" | "marginY" | "p" | "padding" | "pt" | "paddingTop" | "pr" | "paddingRight" | "pb" | "paddingBottom" | "pl" | "paddingLeft" | "px" | "paddingX" | "py" | "paddingY" | "width" | "height" | "minWidth" | "minHeight" | "maxWidth" | "maxHeight" | "display" | "verticalAlign" | "size" | "overflow" | "overflowX" | "overflowY" | "fontFamily" | "fontSize" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontStyle" | "textAlign" | "color" | "bg" | "backgroundColor" | "opacity" | "alignItems" | "alignContent" | "justifyItems" | "justifyContent" | "flexWrap" | "flexDirection" | "flex" | "flexGrow" | "flexShrink" | "flexBasis" | "justifySelf" | "alignSelf" | "order" | "border" | "borderX" | "borderY" | "borderWidth" | "borderTopWidth" | "borderBottomWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStyle" | "borderTopStyle" | "borderBottomStyle" | "borderLeftStyle" | "borderRightStyle" | "borderColor" | "borderTopColor" | "borderBottomColor" | "borderLeftColor" | "borderRightColor" | "borderRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTop" | "borderRight" | "borderBottom" | "borderLeft" | "gridGap" | "gridColumnGap" | "gridRowGap" | "gridColumn" | "gridRow" | "gridAutoFlow" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateColumns" | "gridTemplateRows" | "gridTemplateAreas" | "gridArea" | "background" | "backgroundImage" | "backgroundSize" | "backgroundPosition" | "backgroundRepeat" | "position" | "zIndex" | "boxShadow" | "textShadow" | "className" | "id" | "lang" | "style" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "form" | "key" | "slot" | "title" | "translate" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "placeholder" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "innerAs" | "htmlFor"> & React.RefAttributes<HTMLLabelElement>>;
22
22
  export declare type ComboboxButtonProps = ComboboxButtonPropsCore & ButtonProps;
23
- export declare const ComboboxButton: React.ForwardRefExoticComponent<Pick<ComboboxButtonProps, "value" | "children" | "form" | "p" | "slot" | "style" | "title" | "alignContent" | "alignItems" | "alignSelf" | "backgroundColor" | "backgroundImage" | "backgroundPosition" | "backgroundRepeat" | "backgroundSize" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStyle" | "borderBottomWidth" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStyle" | "borderTopWidth" | "bottom" | "boxShadow" | "color" | "display" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "justifyContent" | "justifyItems" | "justifySelf" | "left" | "letterSpacing" | "lineHeight" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "order" | "overflowX" | "overflowY" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "position" | "right" | "textAlign" | "textShadow" | "top" | "translate" | "verticalAlign" | "width" | "zIndex" | "background" | "border" | "borderBottom" | "borderColor" | "borderLeft" | "borderRadius" | "borderRight" | "borderStyle" | "borderTop" | "borderWidth" | "flex" | "gridArea" | "gridColumn" | "gridRow" | "margin" | "overflow" | "padding" | "gridColumnGap" | "gridGap" | "gridRowGap" | "bg" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "variant" | "size" | "elevation" | "hidden" | "as" | "sx" | "__css" | "tx" | "theme" | "borderX" | "borderY" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "type" | "innerAs"> & React.RefAttributes<HTMLButtonElement>>;
23
+ export declare const ComboboxButton: React.ForwardRefExoticComponent<Pick<ComboboxButtonProps, "bottom" | "top" | "hidden" | "left" | "right" | "as" | "sx" | "__css" | "variant" | "tx" | "theme" | "m" | "margin" | "mt" | "marginTop" | "mr" | "marginRight" | "mb" | "marginBottom" | "ml" | "marginLeft" | "mx" | "marginX" | "my" | "marginY" | "p" | "padding" | "pt" | "paddingTop" | "pr" | "paddingRight" | "pb" | "paddingBottom" | "pl" | "paddingLeft" | "px" | "paddingX" | "py" | "paddingY" | "width" | "height" | "minWidth" | "minHeight" | "maxWidth" | "maxHeight" | "display" | "verticalAlign" | "size" | "overflow" | "overflowX" | "overflowY" | "fontFamily" | "fontSize" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontStyle" | "textAlign" | "color" | "bg" | "backgroundColor" | "opacity" | "alignItems" | "alignContent" | "justifyItems" | "justifyContent" | "flexWrap" | "flexDirection" | "flex" | "flexGrow" | "flexShrink" | "flexBasis" | "justifySelf" | "alignSelf" | "order" | "border" | "borderX" | "borderY" | "borderWidth" | "borderTopWidth" | "borderBottomWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStyle" | "borderTopStyle" | "borderBottomStyle" | "borderLeftStyle" | "borderRightStyle" | "borderColor" | "borderTopColor" | "borderBottomColor" | "borderLeftColor" | "borderRightColor" | "borderRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderTop" | "borderRight" | "borderBottom" | "borderLeft" | "gridGap" | "gridColumnGap" | "gridRowGap" | "gridColumn" | "gridRow" | "gridAutoFlow" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateColumns" | "gridTemplateRows" | "gridTemplateAreas" | "gridArea" | "background" | "backgroundImage" | "backgroundSize" | "backgroundPosition" | "backgroundRepeat" | "position" | "zIndex" | "boxShadow" | "textShadow" | "className" | "id" | "lang" | "name" | "style" | "type" | "role" | "tabIndex" | "elevation" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "form" | "key" | "slot" | "title" | "translate" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "placeholder" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "disabled" | "autoFocus" | "value" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "innerAs"> & React.RefAttributes<HTMLButtonElement>>;
@@ -64,6 +64,7 @@ export const ComboboxList = /*#__PURE__*/forwardRef((props, forwardedRef) => {
64
64
  __css: _extends({
65
65
  maxHeight: "18.75rem",
66
66
  overflowY: 'auto',
67
+ borderRadius: 'default',
67
68
  '[data-popper-placement="top"] &': {
68
69
  transformOrigin: 'bottom center'
69
70
  },
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/Combobox/Combobox.tsx"],"names":["forwardRef","Combobox","_ComboboxCore","ComboboxInput","_ComboboxInputCore","ComboboxLabel","_ComboboxLabelCore","ComboboxList","_ComboboxListCore","ComboboxOption","_ComboboxOptionCore","ComboboxPopover","_ComboboxPopoverCore","ComboboxButton","_ComboboxButtonCore","Popper","_PopperCore","useComboBoxContext","Box","TextField","List","ListItem","Text","Button","alpha","ComboboxCore","props","forwardedRef","as","__css","otherProps","position","ComboboxInputCore","ComboboxListCore","maxHeight","overflowY","transformOrigin","PopperCore","ComboboxPopperBox","anchorEl","ctx","inputRef","zIndex","width","ComboboxPopoverCore","ComboboxOptionCore","ComboboxLabelCore","ComboboxButtonCore","children","height","px","transition","color","transform"],"mappings":"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","sourcesContent":["import { FC, forwardRef } from 'react';\nimport type * as React from 'react';\nimport {\n Combobox as _ComboboxCore,\n ComboboxProps as ComboboxPropsCore,\n ComboboxInput as _ComboboxInputCore,\n ComboboxInputProps as ComboboxInputPropsCore,\n ComboboxLabel as _ComboboxLabelCore,\n ComboboxLabelProps as ComboboxLabelPropsCore,\n ComboboxList as _ComboboxListCore,\n ComboboxListProps as ComboboxListPropsCore,\n ComboboxOption as _ComboboxOptionCore,\n ComboboxOptionProps as ComboboxOptionPropsCore,\n ComboboxPopover as _ComboboxPopoverCore,\n ComboboxPopoverProps as ComboboxPopoverPropsCore,\n ComboboxButton as _ComboboxButtonCore,\n ComboboxButtonProps as ComboboxButtonPropsCore,\n Popper as _PopperCore,\n PopperProps as PopperCoreProps,\n useComboBoxContext,\n} from '@basic-ui/core';\nimport { Box, BoxProps } from '../Box';\nimport { TextField, TextFieldProps } from '../TextField';\nimport { List, ListProps } from '../List';\nimport { ListItem, ListItemProps } from '../ListItem';\nimport { Text, TextProps } from '../Text';\nimport { Button, ButtonProps } from '../Button';\nimport { rem } from 'polished';\nimport { alpha } from '../color';\n\nexport { useComboBoxContext } from '@basic-ui/core';\n\n/////////////////////////////////////////////////////\n// Combobox\n\nexport type ComboboxProps = Omit<\n BoxProps<HTMLDivElement, React.HTMLAttributes<HTMLDivElement>>,\n 'onSelect'\n> &\n ComboboxPropsCore;\n\nconst ComboboxCore: FC<ComboboxProps> = _ComboboxCore as any;\n\nexport const Combobox = forwardRef<HTMLDivElement, ComboboxProps>(\n (props, forwardedRef) => {\n const { as = 'div', __css, ...otherProps } = props;\n return (\n <ComboboxCore\n as={Box}\n ref={forwardedRef}\n innerAs={as}\n __css={{ position: 'relative', ...__css }}\n {...otherProps}\n />\n );\n }\n);\n\n/////////////////////////////////////////////////////\n// ComboboxInput\n\nexport type ComboboxInputProps = Omit<\n ComboboxInputPropsCore & TextFieldProps,\n 'ref'\n> &\n React.RefAttributes<HTMLInputElement>;\n\nconst ComboboxInputCore: FC<ComboboxInputProps> = _ComboboxInputCore as any;\n\nexport const ComboboxInput = forwardRef<HTMLInputElement, ComboboxInputProps>(\n (props, forwardedRef) => {\n const { as = 'input', ...otherProps } = props;\n return (\n <ComboboxInputCore\n as={TextField as any}\n ref={forwardedRef}\n innerAs={as}\n {...otherProps}\n />\n );\n }\n);\n\n/////////////////////////////////////////////////////\n// ComboboxList\n\nexport type ComboboxListProps = Omit<ComboboxListPropsCore & ListProps, 'ref'> &\n React.RefAttributes<HTMLUListElement>;\n\nconst ComboboxListCore: FC<ComboboxListProps> = _ComboboxListCore as any;\n\nexport const ComboboxList = forwardRef<HTMLUListElement, ComboboxListProps>(\n (props, forwardedRef) => {\n const { as = 'ul', __css, ...otherProps } = props;\n return (\n <ComboboxListCore\n as={List}\n ref={forwardedRef}\n innerAs={as}\n outlined={false}\n elevation={8}\n __css={{\n maxHeight: rem(300),\n overflowY: 'auto',\n '[data-popper-placement=\"top\"] &': {\n transformOrigin: 'bottom center',\n },\n '[data-popper-placement=\"bottom\"] &': {\n transformOrigin: 'top center',\n },\n ...__css,\n }}\n {...otherProps}\n />\n );\n }\n);\n\n/////////////////////////////////////////////////////\n// ComboboxPopperBox\n\ntype PopperProps = BoxProps & PopperCoreProps;\n\nconst PopperCore: FC<PopperProps> = _PopperCore as any;\n\nconst ComboboxPopperBox = forwardRef<HTMLDivElement, PopperProps>(\n ({ __css, anchorEl, as = 'div', ...props }, forwardedRef) => {\n const ctx = useComboBoxContext();\n return (\n <PopperCore\n as={Box}\n innerAs={as}\n ref={forwardedRef}\n anchorEl={anchorEl || ctx.inputRef}\n __css={{ zIndex: 1, width: '100%', ...__css }}\n {...props}\n />\n );\n }\n);\n\n/////////////////////////////////////////////////////\n// ComboboxPopover\n\nexport type ComboboxPopoverProps = ComboboxPopoverPropsCore & ListProps;\n\nconst ComboboxPopoverCore: FC<ComboboxPopoverProps> = _ComboboxPopoverCore as any;\n\nexport const ComboboxPopover = forwardRef<HTMLDivElement, ComboboxPopoverProps>(\n (props, forwardedRef) => {\n const { as = 'div', ...otherProps } = props;\n return (\n <ComboboxPopoverCore\n as={ComboboxPopperBox}\n ref={forwardedRef}\n innerAs={as}\n {...otherProps}\n />\n );\n }\n);\n\n/////////////////////////////////////////////////////\n// ComboboxOption\n\nexport type ComboboxOptionProps = Omit<\n ComboboxOptionPropsCore & ListItemProps,\n 'ref'\n> &\n React.RefAttributes<HTMLLIElement>;\n\nconst ComboboxOptionCore: FC<ComboboxOptionProps> = _ComboboxOptionCore as any;\n\nexport const ComboboxOption = forwardRef<HTMLLIElement, ComboboxOptionProps>(\n (props, forwardedRef) => {\n const { as = 'li', ...otherProps } = props;\n return (\n <ComboboxOptionCore\n as={ListItem}\n ref={forwardedRef}\n innerAs={as}\n {...otherProps}\n />\n );\n }\n);\n\n/////////////////////////////////////////////////////\n// ComboboxLabel\n\nexport type ComboboxLabelProps = Omit<\n ComboboxLabelPropsCore & TextProps,\n 'ref'\n> &\n React.RefAttributes<HTMLLabelElement>;\n\nconst ComboboxLabelCore: FC<ComboboxLabelProps> = _ComboboxLabelCore as any;\n\nexport const ComboboxLabel = forwardRef<HTMLLabelElement, ComboboxLabelProps>(\n (props, forwardedRef) => {\n const { as = 'label', ...otherProps } = props;\n return (\n <ComboboxLabelCore\n as={Text}\n ref={forwardedRef}\n innerAs={as}\n {...otherProps}\n />\n );\n }\n);\n\n/////////////////////////////////////////////////////\n// ComboboxButton\n\nexport type ComboboxButtonProps = ComboboxButtonPropsCore & ButtonProps;\n\nconst ComboboxButtonCore: FC<ComboboxButtonProps> = _ComboboxButtonCore as any;\n\nexport const ComboboxButton = forwardRef<\n HTMLButtonElement,\n ComboboxButtonProps\n>((props, forwardedRef) => {\n const { as = 'button', __css, children, ...otherProps } = props;\n return (\n <ComboboxButtonCore\n as={Button}\n ref={forwardedRef}\n innerAs={as}\n tabIndex={-1}\n variant=\"icon\"\n __css={{\n zIndex: 1,\n width: rem(40),\n height: rem(40),\n px: 0,\n '& > svg': {\n transition:\n 'transform .15s cubic-bezier(.4,0,.2,1), color .15s cubic-bezier(.4,0,.2,1)',\n },\n '&[aria-expanded=\"false\"] > svg': {\n color: alpha('on.surface', 0.54),\n },\n '&[aria-expanded=\"true\"] > svg': {\n transform: 'rotate(180deg)',\n color: 'currentColor',\n },\n ...__css,\n }}\n {...otherProps}\n >\n {children || (\n <svg aria-hidden={true} viewBox=\"0 0 24 24\" width={24}>\n <path fill=\"currentColor\" d=\"M7 10l5 5 5-5z\" />\n </svg>\n )}\n </ComboboxButtonCore>\n );\n});\n"],"file":"Combobox.js"}
1
+ {"version":3,"sources":["../../../src/Combobox/Combobox.tsx"],"names":["forwardRef","Combobox","_ComboboxCore","ComboboxInput","_ComboboxInputCore","ComboboxLabel","_ComboboxLabelCore","ComboboxList","_ComboboxListCore","ComboboxOption","_ComboboxOptionCore","ComboboxPopover","_ComboboxPopoverCore","ComboboxButton","_ComboboxButtonCore","Popper","_PopperCore","useComboBoxContext","Box","TextField","List","ListItem","Text","Button","alpha","ComboboxCore","props","forwardedRef","as","__css","otherProps","position","ComboboxInputCore","ComboboxListCore","maxHeight","overflowY","borderRadius","transformOrigin","PopperCore","ComboboxPopperBox","anchorEl","ctx","inputRef","zIndex","width","ComboboxPopoverCore","ComboboxOptionCore","ComboboxLabelCore","ComboboxButtonCore","children","height","px","transition","color","transform"],"mappings":"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","sourcesContent":["import { FC, forwardRef } from 'react';\nimport type * as React from 'react';\nimport {\n Combobox as _ComboboxCore,\n ComboboxProps as ComboboxPropsCore,\n ComboboxInput as _ComboboxInputCore,\n ComboboxInputProps as ComboboxInputPropsCore,\n ComboboxLabel as _ComboboxLabelCore,\n ComboboxLabelProps as ComboboxLabelPropsCore,\n ComboboxList as _ComboboxListCore,\n ComboboxListProps as ComboboxListPropsCore,\n ComboboxOption as _ComboboxOptionCore,\n ComboboxOptionProps as ComboboxOptionPropsCore,\n ComboboxPopover as _ComboboxPopoverCore,\n ComboboxPopoverProps as ComboboxPopoverPropsCore,\n ComboboxButton as _ComboboxButtonCore,\n ComboboxButtonProps as ComboboxButtonPropsCore,\n Popper as _PopperCore,\n PopperProps as PopperCoreProps,\n useComboBoxContext,\n} from '@basic-ui/core';\nimport { Box, BoxProps } from '../Box';\nimport { TextField, TextFieldProps } from '../TextField';\nimport { List, ListProps } from '../List';\nimport { ListItem, ListItemProps } from '../ListItem';\nimport { Text, TextProps } from '../Text';\nimport { Button, ButtonProps } from '../Button';\nimport { rem } from 'polished';\nimport { alpha } from '../color';\n\nexport { useComboBoxContext } from '@basic-ui/core';\n\n/////////////////////////////////////////////////////\n// Combobox\n\nexport type ComboboxProps = Omit<\n BoxProps<HTMLDivElement, React.HTMLAttributes<HTMLDivElement>>,\n 'onSelect'\n> &\n ComboboxPropsCore;\n\nconst ComboboxCore: FC<ComboboxProps> = _ComboboxCore as any;\n\nexport const Combobox = forwardRef<HTMLDivElement, ComboboxProps>(\n (props, forwardedRef) => {\n const { as = 'div', __css, ...otherProps } = props;\n return (\n <ComboboxCore\n as={Box}\n ref={forwardedRef}\n innerAs={as}\n __css={{ position: 'relative', ...__css }}\n {...otherProps}\n />\n );\n }\n);\n\n/////////////////////////////////////////////////////\n// ComboboxInput\n\nexport type ComboboxInputProps = Omit<\n ComboboxInputPropsCore & TextFieldProps,\n 'ref'\n> &\n React.RefAttributes<HTMLInputElement>;\n\nconst ComboboxInputCore: FC<ComboboxInputProps> = _ComboboxInputCore as any;\n\nexport const ComboboxInput = forwardRef<HTMLInputElement, ComboboxInputProps>(\n (props, forwardedRef) => {\n const { as = 'input', ...otherProps } = props;\n return (\n <ComboboxInputCore\n as={TextField as any}\n ref={forwardedRef}\n innerAs={as}\n {...otherProps}\n />\n );\n }\n);\n\n/////////////////////////////////////////////////////\n// ComboboxList\n\nexport type ComboboxListProps = Omit<ComboboxListPropsCore & ListProps, 'ref'> &\n React.RefAttributes<HTMLUListElement>;\n\nconst ComboboxListCore: FC<ComboboxListProps> = _ComboboxListCore as any;\n\nexport const ComboboxList = forwardRef<HTMLUListElement, ComboboxListProps>(\n (props, forwardedRef) => {\n const { as = 'ul', __css, ...otherProps } = props;\n return (\n <ComboboxListCore\n as={List}\n ref={forwardedRef}\n innerAs={as}\n outlined={false}\n elevation={8}\n __css={{\n maxHeight: rem(300),\n overflowY: 'auto',\n borderRadius: 'default',\n '[data-popper-placement=\"top\"] &': {\n transformOrigin: 'bottom center',\n },\n '[data-popper-placement=\"bottom\"] &': {\n transformOrigin: 'top center',\n },\n ...__css,\n }}\n {...otherProps}\n />\n );\n }\n);\n\n/////////////////////////////////////////////////////\n// ComboboxPopperBox\n\ntype PopperProps = BoxProps & PopperCoreProps;\n\nconst PopperCore: FC<PopperProps> = _PopperCore as any;\n\nconst ComboboxPopperBox = forwardRef<HTMLDivElement, PopperProps>(\n ({ __css, anchorEl, as = 'div', ...props }, forwardedRef) => {\n const ctx = useComboBoxContext();\n return (\n <PopperCore\n as={Box}\n innerAs={as}\n ref={forwardedRef}\n anchorEl={anchorEl || ctx.inputRef}\n __css={{ zIndex: 1, width: '100%', ...__css }}\n {...props}\n />\n );\n }\n);\n\n/////////////////////////////////////////////////////\n// ComboboxPopover\n\nexport type ComboboxPopoverProps = ComboboxPopoverPropsCore & ListProps;\n\nconst ComboboxPopoverCore: FC<ComboboxPopoverProps> = _ComboboxPopoverCore as any;\n\nexport const ComboboxPopover = forwardRef<HTMLDivElement, ComboboxPopoverProps>(\n (props, forwardedRef) => {\n const { as = 'div', ...otherProps } = props;\n return (\n <ComboboxPopoverCore\n as={ComboboxPopperBox}\n ref={forwardedRef}\n innerAs={as}\n {...otherProps}\n />\n );\n }\n);\n\n/////////////////////////////////////////////////////\n// ComboboxOption\n\nexport type ComboboxOptionProps = Omit<\n ComboboxOptionPropsCore & ListItemProps,\n 'ref'\n> &\n React.RefAttributes<HTMLLIElement>;\n\nconst ComboboxOptionCore: FC<ComboboxOptionProps> = _ComboboxOptionCore as any;\n\nexport const ComboboxOption = forwardRef<HTMLLIElement, ComboboxOptionProps>(\n (props, forwardedRef) => {\n const { as = 'li', ...otherProps } = props;\n return (\n <ComboboxOptionCore\n as={ListItem}\n ref={forwardedRef}\n innerAs={as}\n {...otherProps}\n />\n );\n }\n);\n\n/////////////////////////////////////////////////////\n// ComboboxLabel\n\nexport type ComboboxLabelProps = Omit<\n ComboboxLabelPropsCore & TextProps,\n 'ref'\n> &\n React.RefAttributes<HTMLLabelElement>;\n\nconst ComboboxLabelCore: FC<ComboboxLabelProps> = _ComboboxLabelCore as any;\n\nexport const ComboboxLabel = forwardRef<HTMLLabelElement, ComboboxLabelProps>(\n (props, forwardedRef) => {\n const { as = 'label', ...otherProps } = props;\n return (\n <ComboboxLabelCore\n as={Text}\n ref={forwardedRef}\n innerAs={as}\n {...otherProps}\n />\n );\n }\n);\n\n/////////////////////////////////////////////////////\n// ComboboxButton\n\nexport type ComboboxButtonProps = ComboboxButtonPropsCore & ButtonProps;\n\nconst ComboboxButtonCore: FC<ComboboxButtonProps> = _ComboboxButtonCore as any;\n\nexport const ComboboxButton = forwardRef<\n HTMLButtonElement,\n ComboboxButtonProps\n>((props, forwardedRef) => {\n const { as = 'button', __css, children, ...otherProps } = props;\n return (\n <ComboboxButtonCore\n as={Button}\n ref={forwardedRef}\n innerAs={as}\n tabIndex={-1}\n variant=\"icon\"\n __css={{\n zIndex: 1,\n width: rem(40),\n height: rem(40),\n px: 0,\n '& > svg': {\n transition:\n 'transform .15s cubic-bezier(.4,0,.2,1), color .15s cubic-bezier(.4,0,.2,1)',\n },\n '&[aria-expanded=\"false\"] > svg': {\n color: alpha('on.surface', 0.54),\n },\n '&[aria-expanded=\"true\"] > svg': {\n transform: 'rotate(180deg)',\n color: 'currentColor',\n },\n ...__css,\n }}\n {...otherProps}\n >\n {children || (\n <svg aria-hidden={true} viewBox=\"0 0 24 24\" width={24}>\n <path fill=\"currentColor\" d=\"M7 10l5 5 5-5z\" />\n </svg>\n )}\n </ComboboxButtonCore>\n );\n});\n"],"file":"Combobox.js"}
@@ -5,7 +5,6 @@ export interface FloatingLabelProps extends React.LabelHTMLAttributes<HTMLLabelE
5
5
  offsetX?: number;
6
6
  height?: number;
7
7
  scale?: number;
8
- top?: number;
9
8
  px?: number;
10
9
  translateX?: number;
11
10
  translateY?: number;
@@ -15,10 +15,9 @@ export const FloatingLabel = /*#__PURE__*/forwardRef(function FloatingLabel(prop
15
15
  style = {},
16
16
  translateX: translateXProp,
17
17
  translateY: translateYProp,
18
- top = 0,
19
18
  children
20
19
  } = props,
21
- otherProps = _objectWithoutPropertiesLoose(props, ["offsetX", "scale", "height", "active", "transitionTime", "style", "translateX", "translateY", "top", "children"]);
20
+ otherProps = _objectWithoutPropertiesLoose(props, ["offsetX", "scale", "height", "active", "transitionTime", "style", "translateX", "translateY", "children"]);
22
21
 
23
22
  const ctx = useNotchedOutlineContext();
24
23
  const notchStart = ctx ? ctx.notchStart : 0;
@@ -35,7 +34,6 @@ export const FloatingLabel = /*#__PURE__*/forwardRef(function FloatingLabel(prop
35
34
  fontWeight: 'regular',
36
35
  display: 'inline-flex',
37
36
  alignItems: 'center',
38
- top: rem(top),
39
37
  left: rem(offsetX),
40
38
  height: typeof height === 'number' ? rem(height) : height,
41
39
  transformOrigin: 'left center',
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/FloatingLabel/FloatingLabel.tsx"],"names":["forwardRef","Text","_Text","rem","useNotchedOutlineContext","FloatingLabel","props","forwardedRef","offsetX","scale","height","active","transitionTime","style","translateX","translateXProp","translateY","translateYProp","top","children","otherProps","ctx","notchStart","undefined","transform","position","fontWeight","display","alignItems","left","transformOrigin","transition","pointerEvents"],"mappings":";;AAAA,SAASA,UAAT,QAA2B,OAA3B;AAEA,SAASC,IAAI,IAAIC,KAAjB,QAA8B,SAA9B;AACA,SAASC,GAAT,QAAoB,UAApB;AACA,SAASC,wBAAT,QAAyC,2BAAzC;;AAgBA,OAAO,MAAMC,aAAa,gBAAGL,UAAU,CACrC,SAASK,aAAT,CAAuBC,KAAvB,EAA8BC,YAA9B,EAA4C;AAC1C,QAAM;AACJC,IAAAA,OAAO,GAAG,CADN;AAEJC,IAAAA,KAAK,GAAG,IAFJ;AAGJC,IAAAA,MAAM,GAAG,EAHL;AAIJC,IAAAA,MAJI;AAKJC,IAAAA,cAAc,GAAG,GALb;AAMJC,IAAAA,KAAK,GAAG,EANJ;AAOJC,IAAAA,UAAU,EAAEC,cAPR;AAQJC,IAAAA,UAAU,EAAEC,cARR;AASJC,IAAAA,GAAG,GAAG,CATF;AAUJC,IAAAA;AAVI,MAYFb,KAZJ;AAAA,QAWKc,UAXL,iCAYId,KAZJ;;AAcA,QAAMe,GAAG,GAAGjB,wBAAwB,EAApC;AACA,QAAMkB,UAAU,GAAGD,GAAG,GAAGA,GAAG,CAACC,UAAP,GAAoB,CAA1C;AAEA,QAAMrB,IAA8B,GAAGC,KAAvC;AAEA,QAAMY,UAAU,GACdC,cAAc,KAAKQ,SAAnB,GAA+BR,cAA/B,GAAgDO,UAAU,GAAGd,OAD/D;AAEA,QAAMQ,UAAU,GACdC,cAAc,KAAKM,SAAnB,GAA+BN,cAA/B,GAAgD,CAACP,MAAD,GAAU,CAD5D;AAGA,QAAMc,SAAS,GAAGb,MAAM,uBACPR,GAAG,CAACW,UAAD,CADI,eACaX,GAAG,CAACa,UAAD,CADhB,qBACuCP,KADvC,SAEpBc,SAFJ;AAIA,sBACE,KAAC,IAAD;AACE,IAAA,EAAE,EAAC,OADL;AAEE,IAAA,OAAO,EAAC,WAFV;AAGE,IAAA,GAAG,EAAEhB,YAHP;AAIE,IAAA,KAAK,EAAE;AACLkB,MAAAA,QAAQ,EAAE,UADL;AAELC,MAAAA,UAAU,EAAE,SAFP;AAGLC,MAAAA,OAAO,EAAE,aAHJ;AAILC,MAAAA,UAAU,EAAE,QAJP;AAKLV,MAAAA,GAAG,EAAEf,GAAG,CAACe,GAAD,CALH;AAMLW,MAAAA,IAAI,EAAE1B,GAAG,CAACK,OAAD,CANJ;AAOLE,MAAAA,MAAM,EAAE,OAAOA,MAAP,KAAkB,QAAlB,GAA6BP,GAAG,CAACO,MAAD,CAAhC,GAA2CA,MAP9C;AAQLoB,MAAAA,eAAe,EAAE,aARZ;AASLC,MAAAA,UAAU,sBAAenB,cAAf,+CAAkEA,cAAlE,+BATL;AAULoB,MAAAA,aAAa,EAAE;AAVV,KAJT;AAgBE,IAAA,KAAK;AACHR,MAAAA;AADG,OAEAX,KAFA;AAhBP,KAoBMO,UApBN;AAAA,cAsBGD;AAtBH,KADF;AA0BD,CAxDoC,CAAhC","sourcesContent":["import { forwardRef } from 'react';\nimport type * as React from 'react';\nimport { Text as _Text } from '../Text';\nimport { rem } from 'polished';\nimport { useNotchedOutlineContext } from '../NotchedOutline/context';\n\nexport interface FloatingLabelProps\n extends React.LabelHTMLAttributes<HTMLLabelElement> {\n children?: React.ReactNode;\n active?: boolean;\n offsetX?: number;\n height?: number;\n scale?: number;\n top?: number;\n px?: number;\n translateX?: number;\n translateY?: number;\n transitionTime?: number;\n}\n\nexport const FloatingLabel = forwardRef<HTMLLabelElement, FloatingLabelProps>(\n function FloatingLabel(props, forwardedRef) {\n const {\n offsetX = 0,\n scale = 0.75,\n height = 56,\n active,\n transitionTime = 150,\n style = {},\n translateX: translateXProp,\n translateY: translateYProp,\n top = 0,\n children,\n ...otherProps\n } = props;\n\n const ctx = useNotchedOutlineContext();\n const notchStart = ctx ? ctx.notchStart : 0;\n\n const Text: React.ComponentType<any> = _Text;\n\n const translateX =\n translateXProp !== undefined ? translateXProp : notchStart - offsetX;\n const translateY =\n translateYProp !== undefined ? translateYProp : -height / 2;\n\n const transform = active\n ? `translate(${rem(translateX)}, ${rem(translateY)}) scale(${scale})`\n : undefined;\n\n return (\n <Text\n as=\"label\"\n variant=\"subtitle1\"\n ref={forwardedRef}\n __css={{\n position: 'absolute',\n fontWeight: 'regular',\n display: 'inline-flex',\n alignItems: 'center',\n top: rem(top),\n left: rem(offsetX),\n height: typeof height === 'number' ? rem(height) : height,\n transformOrigin: 'left center',\n transition: `transform ${transitionTime}ms cubic-bezier(.4,0,.2,1), color ${transitionTime}ms cubic-bezier(.4,0,.2,1)`,\n pointerEvents: 'none',\n }}\n style={{\n transform,\n ...style,\n }}\n {...otherProps}\n >\n {children}\n </Text>\n );\n }\n);\n"],"file":"FloatingLabel.js"}
1
+ {"version":3,"sources":["../../../src/FloatingLabel/FloatingLabel.tsx"],"names":["forwardRef","Text","_Text","rem","useNotchedOutlineContext","FloatingLabel","props","forwardedRef","offsetX","scale","height","active","transitionTime","style","translateX","translateXProp","translateY","translateYProp","children","otherProps","ctx","notchStart","undefined","transform","position","fontWeight","display","alignItems","left","transformOrigin","transition","pointerEvents"],"mappings":";;AAAA,SAASA,UAAT,QAA2B,OAA3B;AAEA,SAASC,IAAI,IAAIC,KAAjB,QAA8B,SAA9B;AACA,SAASC,GAAT,QAAoB,UAApB;AACA,SAASC,wBAAT,QAAyC,2BAAzC;;AAeA,OAAO,MAAMC,aAAa,gBAAGL,UAAU,CACrC,SAASK,aAAT,CAAuBC,KAAvB,EAA8BC,YAA9B,EAA4C;AAC1C,QAAM;AACJC,IAAAA,OAAO,GAAG,CADN;AAEJC,IAAAA,KAAK,GAAG,IAFJ;AAGJC,IAAAA,MAAM,GAAG,EAHL;AAIJC,IAAAA,MAJI;AAKJC,IAAAA,cAAc,GAAG,GALb;AAMJC,IAAAA,KAAK,GAAG,EANJ;AAOJC,IAAAA,UAAU,EAAEC,cAPR;AAQJC,IAAAA,UAAU,EAAEC,cARR;AASJC,IAAAA;AATI,MAWFZ,KAXJ;AAAA,QAUKa,UAVL,iCAWIb,KAXJ;;AAaA,QAAMc,GAAG,GAAGhB,wBAAwB,EAApC;AACA,QAAMiB,UAAU,GAAGD,GAAG,GAAGA,GAAG,CAACC,UAAP,GAAoB,CAA1C;AAEA,QAAMpB,IAA8B,GAAGC,KAAvC;AAEA,QAAMY,UAAU,GACdC,cAAc,KAAKO,SAAnB,GAA+BP,cAA/B,GAAgDM,UAAU,GAAGb,OAD/D;AAEA,QAAMQ,UAAU,GACdC,cAAc,KAAKK,SAAnB,GAA+BL,cAA/B,GAAgD,CAACP,MAAD,GAAU,CAD5D;AAGA,QAAMa,SAAS,GAAGZ,MAAM,uBACPR,GAAG,CAACW,UAAD,CADI,eACaX,GAAG,CAACa,UAAD,CADhB,qBACuCP,KADvC,SAEpBa,SAFJ;AAIA,sBACE,KAAC,IAAD;AACE,IAAA,EAAE,EAAC,OADL;AAEE,IAAA,OAAO,EAAC,WAFV;AAGE,IAAA,GAAG,EAAEf,YAHP;AAIE,IAAA,KAAK,EAAE;AACLiB,MAAAA,QAAQ,EAAE,UADL;AAELC,MAAAA,UAAU,EAAE,SAFP;AAGLC,MAAAA,OAAO,EAAE,aAHJ;AAILC,MAAAA,UAAU,EAAE,QAJP;AAKLC,MAAAA,IAAI,EAAEzB,GAAG,CAACK,OAAD,CALJ;AAMLE,MAAAA,MAAM,EAAE,OAAOA,MAAP,KAAkB,QAAlB,GAA6BP,GAAG,CAACO,MAAD,CAAhC,GAA2CA,MAN9C;AAOLmB,MAAAA,eAAe,EAAE,aAPZ;AAQLC,MAAAA,UAAU,sBAAelB,cAAf,+CAAkEA,cAAlE,+BARL;AASLmB,MAAAA,aAAa,EAAE;AATV,KAJT;AAeE,IAAA,KAAK;AACHR,MAAAA;AADG,OAEAV,KAFA;AAfP,KAmBMM,UAnBN;AAAA,cAqBGD;AArBH,KADF;AAyBD,CAtDoC,CAAhC","sourcesContent":["import { forwardRef } from 'react';\nimport type * as React from 'react';\nimport { Text as _Text } from '../Text';\nimport { rem } from 'polished';\nimport { useNotchedOutlineContext } from '../NotchedOutline/context';\n\nexport interface FloatingLabelProps\n extends React.LabelHTMLAttributes<HTMLLabelElement> {\n children?: React.ReactNode;\n active?: boolean;\n offsetX?: number;\n height?: number;\n scale?: number;\n px?: number;\n translateX?: number;\n translateY?: number;\n transitionTime?: number;\n}\n\nexport const FloatingLabel = forwardRef<HTMLLabelElement, FloatingLabelProps>(\n function FloatingLabel(props, forwardedRef) {\n const {\n offsetX = 0,\n scale = 0.75,\n height = 56,\n active,\n transitionTime = 150,\n style = {},\n translateX: translateXProp,\n translateY: translateYProp,\n children,\n ...otherProps\n } = props;\n\n const ctx = useNotchedOutlineContext();\n const notchStart = ctx ? ctx.notchStart : 0;\n\n const Text: React.ComponentType<any> = _Text;\n\n const translateX =\n translateXProp !== undefined ? translateXProp : notchStart - offsetX;\n const translateY =\n translateYProp !== undefined ? translateYProp : -height / 2;\n\n const transform = active\n ? `translate(${rem(translateX)}, ${rem(translateY)}) scale(${scale})`\n : undefined;\n\n return (\n <Text\n as=\"label\"\n variant=\"subtitle1\"\n ref={forwardedRef}\n __css={{\n position: 'absolute',\n fontWeight: 'regular',\n display: 'inline-flex',\n alignItems: 'center',\n left: rem(offsetX),\n height: typeof height === 'number' ? rem(height) : height,\n transformOrigin: 'left center',\n transition: `transform ${transitionTime}ms cubic-bezier(.4,0,.2,1), color ${transitionTime}ms cubic-bezier(.4,0,.2,1)`,\n pointerEvents: 'none',\n }}\n style={{\n transform,\n ...style,\n }}\n {...otherProps}\n >\n {children}\n </Text>\n );\n }\n);\n"],"file":"FloatingLabel.js"}