@react-spot/ui-components 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +91 -0
- package/dist/index.cjs +853 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +313 -0
- package/dist/index.d.cts.map +1 -0
- package/dist/index.d.ts +313 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +825 -0
- package/dist/index.js.map +1 -0
- package/dist/index.prod.cjs +105 -0
- package/dist/index.prod.cjs.map +1 -0
- package/dist/index.prod.d.cts +106 -0
- package/dist/index.prod.d.cts.map +1 -0
- package/dist/index.prod.d.ts +106 -0
- package/dist/index.prod.d.ts.map +1 -0
- package/dist/index.prod.js +77 -0
- package/dist/index.prod.js.map +1 -0
- package/package.json +80 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.cjs","names":["TooltipPrimitive","baseStyle","ButtonPrimitive","Button","Button","SeparatorPrimitive","Settings","Clipboard","X","ChevronLeft","ChevronRight","ExternalLink","MessageSquare","Trash2","Save","Maximize2","Minimize2","Folder","StyledPopup","PopoverPrimitive","StyledTrigger","ComboboxPrimitive","ChevronDown","StyledPositioner","StyledPopup","StyledList","StyledItem","StyledPopup","Menu","StyledItem","SelectPrimitive","ChevronDown"],"sources":["../src/Kbd.tsx","../src/Tooltip.tsx","../src/Button.tsx","../src/IconButton.tsx","../src/ToolbarButton.tsx","../src/PanelHeader.tsx","../src/Textarea.tsx","../src/Separator.tsx","../src/icons.tsx","../src/Popover.tsx","../src/Combobox.tsx","../src/DropdownMenu.tsx","../src/Select.tsx","../src/Logo.tsx"],"sourcesContent":["import type { ComponentProps, CSSProperties } from 'react'\n\nconst kbdStyle: CSSProperties = {\n display: 'inline-flex',\n alignItems: 'center',\n justifyContent: 'center',\n height: 20,\n minWidth: 20,\n padding: '0 4px',\n gap: 4,\n borderRadius: 4,\n background: '#27272a',\n border: '1px solid #52525b',\n fontFamily: 'system-ui, sans-serif',\n fontSize: 11,\n fontWeight: 500,\n color: '#a1a1aa',\n pointerEvents: 'none',\n userSelect: 'none',\n whiteSpace: 'nowrap',\n}\n\nconst kbdGroupStyle: CSSProperties = {\n display: 'inline-flex',\n alignItems: 'center',\n gap: 4,\n}\n\nexport function Kbd({ style, ...props }: ComponentProps<'kbd'>) {\n return <kbd style={{ ...kbdStyle, ...style }} {...props} />\n}\n\nexport function KbdGroup({ style, ...props }: ComponentProps<'div'>) {\n return <div style={{ ...kbdGroupStyle, ...style }} {...props} />\n}\n","import { Tooltip as TooltipPrimitive } from '@base-ui/react/tooltip'\nimport type {\n ButtonHTMLAttributes,\n CSSProperties,\n ReactElement,\n ReactNode,\n} from 'react'\n\nimport { Kbd } from './Kbd'\n\nexport interface TooltipProps extends ButtonHTMLAttributes<HTMLButtonElement> {\n label: ReactNode\n shortcut?: string\n container: TooltipPrimitive.Portal.Props['container']\n render?: ReactElement\n children: ReactNode\n}\n\nconst popupStyle: CSSProperties = {\n display: 'flex',\n alignItems: 'center',\n gap: 6,\n background: '#09090b',\n border: '1px solid #3f3f46',\n borderRadius: 6,\n padding: '5px 8px',\n boxShadow: '0 4px 12px rgba(0,0,0,0.5)',\n whiteSpace: 'nowrap',\n fontFamily: 'system-ui, sans-serif',\n fontSize: 12,\n color: '#d4d4d8',\n pointerEvents: 'none',\n zIndex: 9999999,\n}\n\nexport function Tooltip({\n label,\n shortcut,\n container,\n render,\n children,\n ...triggerProps\n}: TooltipProps) {\n return (\n <TooltipPrimitive.Root>\n <TooltipPrimitive.Trigger render={render} {...triggerProps}>\n {children}\n </TooltipPrimitive.Trigger>\n <TooltipPrimitive.Portal container={container}>\n <TooltipPrimitive.Positioner sideOffset={10}>\n <TooltipPrimitive.Popup style={popupStyle}>\n {label}\n {shortcut && <Kbd>{shortcut}</Kbd>}\n </TooltipPrimitive.Popup>\n </TooltipPrimitive.Positioner>\n </TooltipPrimitive.Portal>\n </TooltipPrimitive.Root>\n )\n}\n\nTooltip.Provider = TooltipPrimitive.Provider\n","import { Button as ButtonPrimitive } from '@base-ui/react/button'\nimport type { CSSProperties } from 'react'\n\nexport interface ButtonProps extends Omit<\n React.ButtonHTMLAttributes<HTMLButtonElement>,\n 'style'\n> {\n variant: 'primary' | 'secondary' | 'accent'\n style?: CSSProperties\n render?: React.ReactElement\n}\n\nconst baseStyle: CSSProperties = {\n display: 'inline-flex',\n alignItems: 'center',\n justifyContent: 'center',\n gap: 4,\n height: 28,\n padding: '0 8px',\n borderRadius: 6,\n fontSize: 12,\n fontFamily: 'system-ui, sans-serif',\n fontWeight: 500,\n transition: 'opacity 0.15s',\n cursor: 'pointer',\n whiteSpace: 'nowrap',\n}\n\nconst variantStyles: Record<'primary' | 'secondary' | 'accent', CSSProperties> =\n {\n primary: {\n background: '#fafafa',\n border: 'none',\n color: '#18181b',\n },\n secondary: {\n background: 'transparent',\n border: '1px solid #3f3f46',\n color: '#d4d4d8',\n },\n accent: {\n background: 'rgba(59,130,246,0.15)',\n border: '1px solid rgba(59,130,246,0.3)',\n color: '#93c5fd',\n },\n }\n\nexport function Button({ variant, style, render, ...props }: ButtonProps) {\n return (\n <ButtonPrimitive\n render={render}\n style={(state) => ({\n ...baseStyle,\n ...variantStyles[variant],\n opacity: state.disabled ? 0.5 : 1,\n cursor: state.disabled ? 'not-allowed' : 'pointer',\n ...style,\n })}\n {...props}\n />\n )\n}\n","import { Button } from '@base-ui/react/button'\nimport type { ButtonHTMLAttributes, CSSProperties, ReactElement } from 'react'\n\nexport interface IconButtonProps extends Omit<\n ButtonHTMLAttributes<HTMLButtonElement>,\n 'style'\n> {\n style?: CSSProperties\n render?: ReactElement\n}\n\nconst iconButtonStyle: CSSProperties = {\n display: 'inline-flex',\n alignItems: 'center',\n justifyContent: 'center',\n background: 'transparent',\n border: 'none',\n color: '#52525b',\n padding: 4,\n borderRadius: 4,\n lineHeight: 1,\n transition: 'color 0.1s, opacity 0.15s',\n}\n\nexport function IconButton({ style, render, ...props }: IconButtonProps) {\n return (\n <Button\n render={render}\n style={(state) => ({\n ...iconButtonStyle,\n opacity: state.disabled ? 0.4 : 1,\n cursor: state.disabled ? 'not-allowed' : 'pointer',\n ...style,\n })}\n {...props}\n />\n )\n}\n","import { Button } from '@base-ui/react/button'\nimport type { ButtonHTMLAttributes, CSSProperties, ReactElement } from 'react'\nimport { forwardRef } from 'react'\n\nexport interface ToolbarButtonProps extends Omit<\n ButtonHTMLAttributes<HTMLButtonElement>,\n 'style'\n> {\n style?: CSSProperties\n render?: ReactElement\n}\n\nconst toolbarButtonStyle: CSSProperties = {\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'center',\n width: 32,\n height: 32,\n borderRadius: 7,\n cursor: 'pointer',\n padding: 0,\n background: 'transparent',\n border: 0,\n outline: 'none',\n color: '#fafafa',\n fontSize: 14,\n transition: 'background 0.15s, border-color 0.15s',\n}\n\nexport const ToolbarButton = forwardRef<HTMLButtonElement, ToolbarButtonProps>(\n function ToolbarButton({ style, render, type = 'button', ...props }, ref) {\n return (\n <Button\n ref={ref}\n type={type}\n render={render}\n style={(state) => ({\n ...toolbarButtonStyle,\n cursor: state.disabled ? 'not-allowed' : 'pointer',\n opacity: state.disabled ? 0.4 : 1,\n ...style,\n })}\n {...props}\n />\n )\n },\n)\n","import type { CSSProperties, ReactNode } from 'react'\n\nexport interface PanelHeaderProps {\n title: ReactNode\n actionsRender?: ReactNode\n style?: CSSProperties\n titleStyle?: CSSProperties\n}\n\nconst headerStyle: CSSProperties = {\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'space-between',\n padding: '10px 12px 8px',\n borderBottom: '1px solid #27272a',\n}\n\nconst titleBaseStyle: CSSProperties = {\n color: '#fafafa',\n fontSize: 13,\n fontWeight: 600,\n fontFamily: 'system-ui, sans-serif',\n}\n\nexport function PanelHeader({\n title,\n actionsRender,\n style,\n titleStyle,\n}: PanelHeaderProps) {\n return (\n <div style={{ ...headerStyle, ...style }}>\n <span style={{ ...titleBaseStyle, ...titleStyle }}>{title}</span>\n {actionsRender}\n </div>\n )\n}\n","import type { CSSProperties } from 'react'\nimport { forwardRef, useState } from 'react'\n\nexport interface TextareaProps extends Omit<\n React.TextareaHTMLAttributes<HTMLTextAreaElement>,\n 'style'\n> {\n style?: CSSProperties\n}\n\nconst baseStyle: CSSProperties = {\n width: '100%',\n background: '#0f0f11',\n borderRadius: 4,\n outline: 'none',\n resize: 'vertical',\n color: '#fafafa',\n fontSize: 12,\n fontFamily: 'system-ui, sans-serif',\n lineHeight: 1.4,\n padding: '4px 6px',\n boxSizing: 'border-box',\n caretColor: '#3b82f6',\n}\n\nexport const Textarea = forwardRef<HTMLTextAreaElement, TextareaProps>(\n function Textarea({ style, onFocus, onBlur, ...props }, ref) {\n const [focused, setFocused] = useState(false)\n\n return (\n <textarea\n ref={ref}\n style={{\n ...baseStyle,\n border: `1px solid ${focused ? '#3b82f6' : '#3f3f46'}`,\n ...style,\n }}\n onFocus={(e) => {\n setFocused(true)\n onFocus?.(e)\n }}\n onBlur={(e) => {\n setFocused(false)\n onBlur?.(e)\n }}\n {...props}\n />\n )\n },\n)\n","import { Separator as SeparatorPrimitive } from '@base-ui/react/separator'\nimport type { CSSProperties } from 'react'\n\nexport interface SeparatorProps {\n style?: CSSProperties\n}\n\nexport function Separator({ style }: SeparatorProps) {\n return (\n <SeparatorPrimitive\n style={{ borderTop: '1px solid #27272a', margin: '2px 0', ...style }}\n />\n )\n}\n","import {\n ChevronLeft,\n ChevronRight,\n Clipboard,\n ExternalLink,\n Folder,\n Maximize2,\n MessageSquare,\n Minimize2,\n Save,\n Settings,\n Trash2,\n X,\n} from 'lucide-react'\n\nconst DEFAULT_STROKE_WIDTH = 2\nconst DEFAULT_SIZE = 16\n\nexport function SettingsIcon({ size = DEFAULT_SIZE }: { size?: number }) {\n return <Settings size={size} strokeWidth={DEFAULT_STROKE_WIDTH} aria-hidden />\n}\n\nexport function ClipboardIcon({ size = DEFAULT_SIZE }: { size?: number }) {\n return (\n <Clipboard size={size} strokeWidth={DEFAULT_STROKE_WIDTH} aria-hidden />\n )\n}\n\nexport function XIcon({ size = DEFAULT_SIZE }: { size?: number }) {\n return <X size={size} strokeWidth={DEFAULT_STROKE_WIDTH} aria-hidden />\n}\n\nexport function ChevronLeftIcon({ size = DEFAULT_SIZE }: { size?: number }) {\n return (\n <ChevronLeft size={size} strokeWidth={DEFAULT_STROKE_WIDTH} aria-hidden />\n )\n}\n\nexport function ChevronRightIcon({ size = DEFAULT_SIZE }: { size?: number }) {\n return (\n <ChevronRight size={size} strokeWidth={DEFAULT_STROKE_WIDTH} aria-hidden />\n )\n}\n\nexport function OpenInEditorIcon({ size = DEFAULT_SIZE }: { size?: number }) {\n return (\n <ExternalLink size={size} strokeWidth={DEFAULT_STROKE_WIDTH} aria-hidden />\n )\n}\n\nexport function ChatBubbleIcon({ size = DEFAULT_SIZE }: { size?: number }) {\n return (\n <MessageSquare size={size} strokeWidth={DEFAULT_STROKE_WIDTH} aria-hidden />\n )\n}\n\nexport function TrashIcon({ size = DEFAULT_SIZE }: { size?: number }) {\n return <Trash2 size={size} strokeWidth={DEFAULT_STROKE_WIDTH} aria-hidden />\n}\n\nexport function SaveIcon({ size = DEFAULT_SIZE }: { size?: number }) {\n return <Save size={size} strokeWidth={DEFAULT_STROKE_WIDTH} aria-hidden />\n}\n\nexport function ExpandIcon({ size = DEFAULT_SIZE }: { size?: number }) {\n return (\n <Maximize2 size={size} strokeWidth={DEFAULT_STROKE_WIDTH} aria-hidden />\n )\n}\n\nexport function CollapseIcon({ size = DEFAULT_SIZE }: { size?: number }) {\n return (\n <Minimize2 size={size} strokeWidth={DEFAULT_STROKE_WIDTH} aria-hidden />\n )\n}\n\nexport function FolderIcon({ size = DEFAULT_SIZE }: { size?: number }) {\n return <Folder size={size} strokeWidth={DEFAULT_STROKE_WIDTH} aria-hidden />\n}\n\n// OpenCode brand icon — not available in Lucide\nexport function OpencodeIcon({ size = 13 }: { size?: number }) {\n return (\n <svg\n width={size}\n height={size}\n viewBox=\"0 0 512 512\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n aria-hidden=\"true\"\n >\n <path fill=\"#131010\" d=\"M0 0h512v512H0z\" />\n <path d=\"M320 224v128H192V224h128z\" fill=\"#5A5858\" />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M384 416H128V96h256v320zm-64-256H192v192h128V160z\"\n fill=\"#fff\"\n />\n </svg>\n )\n}\n","import { Popover as PopoverPrimitive } from '@base-ui/react/popover'\nimport type { ComponentProps, CSSProperties } from 'react'\n\n/**\n * Shared panel popup style (exported for callers that extend it)\n */\nexport const panelPopupStyle: CSSProperties = {\n background: '#18181b',\n border: '1px solid #27272a',\n borderRadius: 8,\n boxShadow: '0 8px 24px rgba(0,0,0,0.6)',\n}\n\nfunction StyledPopup({\n style,\n ...props\n}: ComponentProps<typeof PopoverPrimitive.Popup>) {\n return (\n <PopoverPrimitive.Popup\n style={{ ...panelPopupStyle, ...style }}\n {...props}\n />\n )\n}\n\nexport const Popover = {\n Root: PopoverPrimitive.Root,\n Trigger: PopoverPrimitive.Trigger,\n Portal: PopoverPrimitive.Portal,\n Positioner: PopoverPrimitive.Positioner,\n Close: PopoverPrimitive.Close,\n Popup: StyledPopup,\n}\n","import { Combobox as ComboboxPrimitive } from '@base-ui/react/combobox'\nimport { ChevronDown } from 'lucide-react'\nimport type { ComponentProps, CSSProperties } from 'react'\n\nimport { panelPopupStyle } from './Popover'\n\nfunction StyledTrigger({\n style,\n children,\n ...props\n}: ComponentProps<typeof ComboboxPrimitive.Trigger>) {\n return (\n <ComboboxPrimitive.Trigger\n style={(state) => ({\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'space-between',\n gap: 4,\n width: '100%',\n background: '#0f0f11',\n border: '1px solid #3f3f46',\n borderRadius: 5,\n color: '#fafafa',\n fontSize: 12,\n fontFamily: 'system-ui, sans-serif',\n padding: '5px 8px',\n cursor: state.disabled ? 'not-allowed' : 'pointer',\n opacity: state.disabled ? 0.5 : 1,\n boxSizing: 'border-box',\n ...(typeof style === 'function' ? style(state) : style),\n })}\n {...props}\n >\n {children}\n <ChevronDown size={12} strokeWidth={1.75} aria-hidden />\n </ComboboxPrimitive.Trigger>\n )\n}\n\nfunction StyledInput() {\n return (\n <ComboboxPrimitive.Input\n style={{\n background: '#0f0f11',\n color: '#fafafa',\n border: 'none',\n outline: 'none',\n fontSize: 12,\n fontFamily: 'system-ui, sans-serif',\n width: '100%',\n }}\n />\n )\n}\n\nfunction StyledPositioner({\n ...props\n}: ComponentProps<typeof ComboboxPrimitive.Positioner>) {\n return (\n <ComboboxPrimitive.Positioner\n align=\"start\"\n side=\"top\"\n sideOffset={8}\n {...props}\n />\n )\n}\n\nfunction StyledPopup({\n style,\n ...props\n}: ComponentProps<typeof ComboboxPrimitive.Popup>) {\n return (\n <ComboboxPrimitive.Popup\n style={{ ...panelPopupStyle, paddingBlock: 4, ...style }}\n {...props}\n />\n )\n}\n\nfunction StyledList({\n style,\n ...props\n}: ComponentProps<typeof ComboboxPrimitive.List>) {\n return (\n <ComboboxPrimitive.List\n style={{\n ...style,\n width: 'var(--anchor-width)',\n }}\n {...props}\n />\n )\n}\n\ninterface StyledItemProps extends Omit<\n ComponentProps<typeof ComboboxPrimitive.Item>,\n 'style'\n> {\n style?: CSSProperties\n}\n\nfunction StyledItem({ style: callerStyle, ...props }: StyledItemProps) {\n return (\n <ComboboxPrimitive.Item\n style={(state) => ({\n display: 'flex',\n alignItems: 'center',\n gap: 6,\n padding: '7px 12px',\n cursor: state.disabled ? 'not-allowed' : 'pointer',\n userSelect: 'none',\n outline: 'none',\n fontSize: 12,\n fontFamily: 'system-ui, sans-serif',\n color: state.selected ? '#fafafa' : '#d4d4d8',\n background: state.highlighted ? 'rgba(59,130,246,0.2)' : 'transparent',\n transition: 'background 0.1s',\n ...callerStyle,\n })}\n {...props}\n />\n )\n}\n\nexport const Combobox = {\n Root: ComboboxPrimitive.Root,\n Trigger: StyledTrigger,\n Value: ComboboxPrimitive.Value,\n Portal: ComboboxPrimitive.Portal,\n Positioner: StyledPositioner,\n Popup: StyledPopup,\n List: StyledList,\n Empty: ComboboxPrimitive.Empty,\n Item: StyledItem,\n Input: StyledInput,\n ItemIndicator: ComboboxPrimitive.ItemIndicator,\n Group: ComboboxPrimitive.Group,\n GroupLabel: ComboboxPrimitive.GroupLabel,\n Separator: ComboboxPrimitive.Separator,\n}\n","import type {\n MenuItemState,\n MenuSubmenuTriggerState,\n} from '@base-ui/react/menu'\nimport { Menu } from '@base-ui/react/menu'\nimport type { ComponentProps, CSSProperties } from 'react'\n\nimport { panelPopupStyle } from './Popover'\n\nfunction StyledPopup({ style, ...props }: ComponentProps<typeof Menu.Popup>) {\n return <Menu.Popup style={{ ...panelPopupStyle, ...style }} {...props} />\n}\n\ninterface StyledItemProps extends Omit<\n ComponentProps<typeof Menu.Item>,\n 'style'\n> {\n style?: CSSProperties | ((state: MenuItemState) => CSSProperties)\n}\n\nfunction StyledItem({ style: callerStyle, ...props }: StyledItemProps) {\n return (\n <Menu.Item\n style={(state) => ({\n display: 'flex',\n alignItems: 'center',\n gap: 6,\n padding: '7px 12px',\n cursor: 'pointer',\n userSelect: 'none',\n outline: 'none',\n fontSize: 12,\n color: '#d4d4d8',\n fontFamily: 'system-ui, sans-serif',\n background: state.highlighted ? 'rgba(59,130,246,0.2)' : 'transparent',\n transition: 'background 0.1s',\n ...(typeof callerStyle === 'function'\n ? callerStyle(state)\n : callerStyle),\n })}\n {...props}\n />\n )\n}\n\nfunction StyledSeparator({ style }: { style?: CSSProperties }) {\n return (\n <div\n style={{ borderTop: '1px solid #27272a', margin: '2px 0', ...style }}\n />\n )\n}\n\ninterface StyledSubmenuTriggerProps extends Omit<\n ComponentProps<typeof Menu.SubmenuTrigger>,\n 'style'\n> {\n style?: CSSProperties | ((state: MenuSubmenuTriggerState) => CSSProperties)\n}\n\nfunction StyledSubmenuTrigger({\n style: callerStyle,\n ...props\n}: StyledSubmenuTriggerProps) {\n return (\n <Menu.SubmenuTrigger\n style={(state) => ({\n display: 'flex',\n alignItems: 'center',\n gap: 8,\n padding: '7px 12px',\n cursor: 'pointer',\n userSelect: 'none',\n outline: 'none',\n width: '100%',\n boxSizing: 'border-box',\n border: 'none',\n textAlign: 'left',\n background:\n state.highlighted || state.open\n ? 'rgba(59,130,246,0.2)'\n : 'transparent',\n transition: 'background 0.1s',\n ...(typeof callerStyle === 'function'\n ? callerStyle(state)\n : callerStyle),\n })}\n {...props}\n />\n )\n}\n\nexport const DropdownMenu = {\n Root: Menu.Root,\n Trigger: Menu.Trigger,\n Portal: Menu.Portal,\n Positioner: Menu.Positioner,\n Popup: StyledPopup,\n Item: StyledItem,\n Separator: StyledSeparator,\n SubmenuRoot: Menu.SubmenuRoot,\n SubmenuTrigger: StyledSubmenuTrigger,\n}\n\nexport type {\n MenuRootProps as DropdownMenuRootProps,\n MenuItemState as DropdownMenuItemState,\n MenuSubmenuRootProps as DropdownMenuSubmenuRootProps,\n MenuSubmenuTriggerState as DropdownMenuSubmenuTriggerState,\n} from '@base-ui/react/menu'\nexport { StyledItemProps as DropdownMenuItemProps }\nexport type { StyledSubmenuTriggerProps as DropdownMenuSubmenuTriggerProps }\n","import { Select as SelectPrimitive } from '@base-ui/react/select'\nimport { ChevronDown } from 'lucide-react'\nimport type { ComponentProps, CSSProperties } from 'react'\n\nimport { panelPopupStyle } from './Popover'\n\nfunction StyledTrigger({\n style,\n children,\n ...props\n}: ComponentProps<typeof SelectPrimitive.Trigger>) {\n return (\n <SelectPrimitive.Trigger\n style={(state) => ({\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'space-between',\n gap: 4,\n width: '100%',\n background: '#0f0f11',\n border: '1px solid #3f3f46',\n borderRadius: 5,\n color: '#fafafa',\n fontSize: 12,\n fontFamily: 'system-ui, sans-serif',\n padding: '5px 8px',\n cursor: state.disabled ? 'not-allowed' : 'pointer',\n opacity: state.disabled ? 0.5 : 1,\n boxSizing: 'border-box',\n ...(typeof style === 'function' ? style(state) : style),\n })}\n {...props}\n >\n {children}\n <ChevronDown size={12} strokeWidth={1.75} aria-hidden />\n </SelectPrimitive.Trigger>\n )\n}\n\nfunction StyledPositioner({\n ...props\n}: ComponentProps<typeof SelectPrimitive.Positioner>) {\n return (\n <SelectPrimitive.Positioner\n align=\"start\"\n side=\"top\"\n sideOffset={4}\n alignItemWithTrigger={false}\n {...props}\n />\n )\n}\n\nfunction StyledPopup({\n style,\n ...props\n}: ComponentProps<typeof SelectPrimitive.Popup>) {\n return (\n <SelectPrimitive.Popup\n style={{ ...panelPopupStyle, paddingBlock: 4, ...style }}\n {...props}\n />\n )\n}\n\nfunction StyledList({\n style,\n ...props\n}: ComponentProps<typeof SelectPrimitive.List>) {\n return (\n <SelectPrimitive.List\n style={{\n ...style,\n width: 'var(--anchor-width)',\n }}\n {...props}\n />\n )\n}\n\ninterface StyledItemProps extends Omit<\n ComponentProps<typeof SelectPrimitive.Item>,\n 'style'\n> {\n style?: CSSProperties\n}\n\nfunction StyledItem({ style: callerStyle, ...props }: StyledItemProps) {\n return (\n <SelectPrimitive.Item\n style={(state) => ({\n display: 'flex',\n alignItems: 'center',\n gap: 6,\n padding: '7px 12px',\n cursor: state.disabled ? 'not-allowed' : 'pointer',\n userSelect: 'none',\n outline: 'none',\n fontSize: 12,\n fontFamily: 'system-ui, sans-serif',\n color: state.selected ? '#fafafa' : '#d4d4d8',\n background: state.highlighted ? 'rgba(59,130,246,0.2)' : 'transparent',\n transition: 'background 0.1s',\n ...callerStyle,\n })}\n {...props}\n />\n )\n}\n\nexport const Select = {\n Root: SelectPrimitive.Root,\n Trigger: StyledTrigger,\n Value: SelectPrimitive.Value,\n Portal: SelectPrimitive.Portal,\n Positioner: StyledPositioner,\n Popup: StyledPopup,\n List: StyledList,\n Item: StyledItem,\n ItemText: SelectPrimitive.ItemText,\n ItemIndicator: SelectPrimitive.ItemIndicator,\n Group: SelectPrimitive.Group,\n GroupLabel: SelectPrimitive.GroupLabel,\n Separator: SelectPrimitive.Separator,\n}\n","import { useId } from 'react'\n\nexport function Logo({\n bgColor,\n size = 16,\n}: {\n bgColor?: string\n size?: number\n}) {\n const linear1 = useId()\n const linear2 = useId()\n const linear3 = useId()\n\n return (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"12 16 132 130\"\n fill=\"none\"\n width={size}\n height={size}\n >\n <defs>\n <linearGradient id={linear1} x1=\"0%\" y1=\"0%\" x2=\"100%\" y2=\"100%\">\n <stop offset=\"0%\" stopColor=\"#2196f3\" />\n <stop offset=\"100%\" stopColor=\"#345580\" />\n </linearGradient>\n <linearGradient\n id={linear2}\n href={`#${linear1}`}\n x1=\"100%\"\n y1=\"0%\"\n x2=\"0%\"\n y2=\"0%\"\n />\n <linearGradient id={linear3} x1=\"0%\" y1=\"0%\" x2=\"100%\" y2=\"100%\">\n <stop offset=\"0%\" stopColor=\"#4dabf5\" />\n <stop offset=\"50%\" stopColor=\"#58a0c3\" />\n <stop offset=\"100%\" stopColor=\"#4dabf5\" />\n </linearGradient>\n </defs>\n <g\n transform=\"matrix(5.5 0 0 5.5 75 75)\"\n stroke={`url(#${linear3})`}\n strokeWidth=\"1.5\"\n >\n <circle r=\"2\" fill={`url(#${linear3})`} />\n <ellipse rx=\"10\" ry=\"4.5\" />\n <ellipse rx=\"10\" ry=\"4.5\" transform=\"rotate(60)\" />\n <ellipse rx=\"10\" ry=\"4.5\" transform=\"rotate(120)\" />\n </g>\n <circle cx=\"95\" cy=\"95\" r=\"38\" fill={bgColor || '#18181b'} />\n <g transform=\"matrix(3.2 0 0 3.2 70 70)\">\n <circle cx=\"8\" cy=\"8\" r=\"8\" fill=\"#fff\" />\n <circle cx=\"8\" cy=\"8\" r=\"8\" fill={`url(#${linear1})`} opacity=\".8\" />\n <path\n stroke={`url(#${linear2})`}\n strokeWidth=\"4\"\n strokeLinecap=\"round\"\n d=\"M14 14l6 6\"\n />\n <circle\n cx=\"8\"\n cy=\"8\"\n r=\"8\"\n stroke={`url(#${linear1})`}\n strokeWidth=\"3\"\n />\n <path\n d=\"M6 5.5L4 8l2 2.5M10 10.5L12 8l-2-2.5\"\n stroke=\"#fff\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </g>\n </svg>\n )\n}\n"],"mappings":"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"}
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,313 @@
|
|
|
1
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
|
+
import * as react from "react";
|
|
3
|
+
import { ButtonHTMLAttributes, CSSProperties, ComponentProps, ReactElement, ReactNode } from "react";
|
|
4
|
+
import * as _base_ui_react0 from "@base-ui/react";
|
|
5
|
+
import { Tooltip as Tooltip$1 } from "@base-ui/react/tooltip";
|
|
6
|
+
import { Popover as Popover$1 } from "@base-ui/react/popover";
|
|
7
|
+
import { Combobox as Combobox$1 } from "@base-ui/react/combobox";
|
|
8
|
+
import { Menu, MenuItemState, MenuItemState as DropdownMenuItemState, MenuRootProps as DropdownMenuRootProps, MenuSubmenuTriggerState } from "@base-ui/react/menu";
|
|
9
|
+
import { Select as Select$1 } from "@base-ui/react/select";
|
|
10
|
+
|
|
11
|
+
//#region src/Kbd.d.ts
|
|
12
|
+
declare function Kbd({
|
|
13
|
+
style,
|
|
14
|
+
...props
|
|
15
|
+
}: ComponentProps<'kbd'>): react_jsx_runtime0.JSX.Element;
|
|
16
|
+
declare function KbdGroup({
|
|
17
|
+
style,
|
|
18
|
+
...props
|
|
19
|
+
}: ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
20
|
+
//#endregion
|
|
21
|
+
//#region src/Tooltip.d.ts
|
|
22
|
+
interface TooltipProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
23
|
+
label: ReactNode;
|
|
24
|
+
shortcut?: string;
|
|
25
|
+
container: Tooltip$1.Portal.Props['container'];
|
|
26
|
+
render?: ReactElement;
|
|
27
|
+
children: ReactNode;
|
|
28
|
+
}
|
|
29
|
+
declare function Tooltip({
|
|
30
|
+
label,
|
|
31
|
+
shortcut,
|
|
32
|
+
container,
|
|
33
|
+
render,
|
|
34
|
+
children,
|
|
35
|
+
...triggerProps
|
|
36
|
+
}: TooltipProps): react_jsx_runtime0.JSX.Element;
|
|
37
|
+
declare namespace Tooltip {
|
|
38
|
+
var Provider: react.FC<_base_ui_react0.TooltipProviderProps>;
|
|
39
|
+
}
|
|
40
|
+
//#endregion
|
|
41
|
+
//#region src/Button.d.ts
|
|
42
|
+
interface ButtonProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, 'style'> {
|
|
43
|
+
variant: 'primary' | 'secondary' | 'accent';
|
|
44
|
+
style?: CSSProperties;
|
|
45
|
+
render?: React.ReactElement;
|
|
46
|
+
}
|
|
47
|
+
declare function Button({
|
|
48
|
+
variant,
|
|
49
|
+
style,
|
|
50
|
+
render,
|
|
51
|
+
...props
|
|
52
|
+
}: ButtonProps): react_jsx_runtime0.JSX.Element;
|
|
53
|
+
//#endregion
|
|
54
|
+
//#region src/IconButton.d.ts
|
|
55
|
+
interface IconButtonProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'style'> {
|
|
56
|
+
style?: CSSProperties;
|
|
57
|
+
render?: ReactElement;
|
|
58
|
+
}
|
|
59
|
+
declare function IconButton({
|
|
60
|
+
style,
|
|
61
|
+
render,
|
|
62
|
+
...props
|
|
63
|
+
}: IconButtonProps): react_jsx_runtime0.JSX.Element;
|
|
64
|
+
//#endregion
|
|
65
|
+
//#region src/ToolbarButton.d.ts
|
|
66
|
+
interface ToolbarButtonProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'style'> {
|
|
67
|
+
style?: CSSProperties;
|
|
68
|
+
render?: ReactElement;
|
|
69
|
+
}
|
|
70
|
+
declare const ToolbarButton: react.ForwardRefExoticComponent<ToolbarButtonProps & react.RefAttributes<HTMLButtonElement>>;
|
|
71
|
+
//#endregion
|
|
72
|
+
//#region src/PanelHeader.d.ts
|
|
73
|
+
interface PanelHeaderProps {
|
|
74
|
+
title: ReactNode;
|
|
75
|
+
actionsRender?: ReactNode;
|
|
76
|
+
style?: CSSProperties;
|
|
77
|
+
titleStyle?: CSSProperties;
|
|
78
|
+
}
|
|
79
|
+
declare function PanelHeader({
|
|
80
|
+
title,
|
|
81
|
+
actionsRender,
|
|
82
|
+
style,
|
|
83
|
+
titleStyle
|
|
84
|
+
}: PanelHeaderProps): react_jsx_runtime0.JSX.Element;
|
|
85
|
+
//#endregion
|
|
86
|
+
//#region src/Textarea.d.ts
|
|
87
|
+
interface TextareaProps extends Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, 'style'> {
|
|
88
|
+
style?: CSSProperties;
|
|
89
|
+
}
|
|
90
|
+
declare const Textarea: react.ForwardRefExoticComponent<TextareaProps & react.RefAttributes<HTMLTextAreaElement>>;
|
|
91
|
+
//#endregion
|
|
92
|
+
//#region src/Separator.d.ts
|
|
93
|
+
interface SeparatorProps {
|
|
94
|
+
style?: CSSProperties;
|
|
95
|
+
}
|
|
96
|
+
declare function Separator({
|
|
97
|
+
style
|
|
98
|
+
}: SeparatorProps): react_jsx_runtime0.JSX.Element;
|
|
99
|
+
//#endregion
|
|
100
|
+
//#region src/icons.d.ts
|
|
101
|
+
declare function SettingsIcon({
|
|
102
|
+
size
|
|
103
|
+
}: {
|
|
104
|
+
size?: number;
|
|
105
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
106
|
+
declare function ClipboardIcon({
|
|
107
|
+
size
|
|
108
|
+
}: {
|
|
109
|
+
size?: number;
|
|
110
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
111
|
+
declare function XIcon({
|
|
112
|
+
size
|
|
113
|
+
}: {
|
|
114
|
+
size?: number;
|
|
115
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
116
|
+
declare function ChevronLeftIcon({
|
|
117
|
+
size
|
|
118
|
+
}: {
|
|
119
|
+
size?: number;
|
|
120
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
121
|
+
declare function ChevronRightIcon({
|
|
122
|
+
size
|
|
123
|
+
}: {
|
|
124
|
+
size?: number;
|
|
125
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
126
|
+
declare function OpenInEditorIcon({
|
|
127
|
+
size
|
|
128
|
+
}: {
|
|
129
|
+
size?: number;
|
|
130
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
131
|
+
declare function ChatBubbleIcon({
|
|
132
|
+
size
|
|
133
|
+
}: {
|
|
134
|
+
size?: number;
|
|
135
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
136
|
+
declare function TrashIcon({
|
|
137
|
+
size
|
|
138
|
+
}: {
|
|
139
|
+
size?: number;
|
|
140
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
141
|
+
declare function SaveIcon({
|
|
142
|
+
size
|
|
143
|
+
}: {
|
|
144
|
+
size?: number;
|
|
145
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
146
|
+
declare function ExpandIcon({
|
|
147
|
+
size
|
|
148
|
+
}: {
|
|
149
|
+
size?: number;
|
|
150
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
151
|
+
declare function CollapseIcon({
|
|
152
|
+
size
|
|
153
|
+
}: {
|
|
154
|
+
size?: number;
|
|
155
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
156
|
+
declare function FolderIcon({
|
|
157
|
+
size
|
|
158
|
+
}: {
|
|
159
|
+
size?: number;
|
|
160
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
161
|
+
declare function OpencodeIcon({
|
|
162
|
+
size
|
|
163
|
+
}: {
|
|
164
|
+
size?: number;
|
|
165
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
166
|
+
//#endregion
|
|
167
|
+
//#region src/Popover.d.ts
|
|
168
|
+
/**
|
|
169
|
+
* Shared panel popup style (exported for callers that extend it)
|
|
170
|
+
*/
|
|
171
|
+
declare const panelPopupStyle: CSSProperties;
|
|
172
|
+
declare function StyledPopup$3({
|
|
173
|
+
style,
|
|
174
|
+
...props
|
|
175
|
+
}: ComponentProps<typeof Popover$1.Popup>): react_jsx_runtime0.JSX.Element;
|
|
176
|
+
declare const Popover: {
|
|
177
|
+
Root: typeof Popover$1.Root;
|
|
178
|
+
Trigger: Popover$1.Trigger;
|
|
179
|
+
Portal: react.ForwardRefExoticComponent<Omit<_base_ui_react0.PopoverPortalProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
180
|
+
Positioner: react.ForwardRefExoticComponent<Omit<_base_ui_react0.PopoverPositionerProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
181
|
+
Close: react.ForwardRefExoticComponent<Omit<_base_ui_react0.PopoverCloseProps, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
182
|
+
Popup: typeof StyledPopup$3;
|
|
183
|
+
};
|
|
184
|
+
//#endregion
|
|
185
|
+
//#region src/Combobox.d.ts
|
|
186
|
+
declare function StyledTrigger$1({
|
|
187
|
+
style,
|
|
188
|
+
children,
|
|
189
|
+
...props
|
|
190
|
+
}: ComponentProps<typeof Combobox$1.Trigger>): react_jsx_runtime0.JSX.Element;
|
|
191
|
+
declare function StyledInput(): react_jsx_runtime0.JSX.Element;
|
|
192
|
+
declare function StyledPositioner$1({
|
|
193
|
+
...props
|
|
194
|
+
}: ComponentProps<typeof Combobox$1.Positioner>): react_jsx_runtime0.JSX.Element;
|
|
195
|
+
declare function StyledPopup$2({
|
|
196
|
+
style,
|
|
197
|
+
...props
|
|
198
|
+
}: ComponentProps<typeof Combobox$1.Popup>): react_jsx_runtime0.JSX.Element;
|
|
199
|
+
declare function StyledList$1({
|
|
200
|
+
style,
|
|
201
|
+
...props
|
|
202
|
+
}: ComponentProps<typeof Combobox$1.List>): react_jsx_runtime0.JSX.Element;
|
|
203
|
+
interface StyledItemProps$2 extends Omit<ComponentProps<typeof Combobox$1.Item>, 'style'> {
|
|
204
|
+
style?: CSSProperties;
|
|
205
|
+
}
|
|
206
|
+
declare function StyledItem$2({
|
|
207
|
+
style: callerStyle,
|
|
208
|
+
...props
|
|
209
|
+
}: StyledItemProps$2): react_jsx_runtime0.JSX.Element;
|
|
210
|
+
declare const Combobox: {
|
|
211
|
+
Root: typeof Combobox$1.Root;
|
|
212
|
+
Trigger: typeof StyledTrigger$1;
|
|
213
|
+
Value: typeof Combobox$1.Value;
|
|
214
|
+
Portal: react.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompletePortalProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
215
|
+
Positioner: typeof StyledPositioner$1;
|
|
216
|
+
Popup: typeof StyledPopup$2;
|
|
217
|
+
List: typeof StyledList$1;
|
|
218
|
+
Empty: react.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompleteEmptyProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
219
|
+
Item: typeof StyledItem$2;
|
|
220
|
+
Input: typeof StyledInput;
|
|
221
|
+
ItemIndicator: react.ForwardRefExoticComponent<Omit<_base_ui_react0.ComboboxItemIndicatorProps, "ref"> & react.RefAttributes<HTMLSpanElement>>;
|
|
222
|
+
Group: react.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompleteGroupProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
223
|
+
GroupLabel: react.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompleteGroupLabelProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
224
|
+
Separator: react.ForwardRefExoticComponent<Omit<_base_ui_react0.SeparatorProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
225
|
+
};
|
|
226
|
+
//#endregion
|
|
227
|
+
//#region src/DropdownMenu.d.ts
|
|
228
|
+
declare function StyledPopup$1({
|
|
229
|
+
style,
|
|
230
|
+
...props
|
|
231
|
+
}: ComponentProps<typeof Menu.Popup>): react_jsx_runtime0.JSX.Element;
|
|
232
|
+
interface StyledItemProps extends Omit<ComponentProps<typeof Menu.Item>, 'style'> {
|
|
233
|
+
style?: CSSProperties | ((state: MenuItemState) => CSSProperties);
|
|
234
|
+
}
|
|
235
|
+
declare function StyledItem$1({
|
|
236
|
+
style: callerStyle,
|
|
237
|
+
...props
|
|
238
|
+
}: StyledItemProps): react_jsx_runtime0.JSX.Element;
|
|
239
|
+
declare function StyledSeparator({
|
|
240
|
+
style
|
|
241
|
+
}: {
|
|
242
|
+
style?: CSSProperties;
|
|
243
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
244
|
+
interface StyledSubmenuTriggerProps extends Omit<ComponentProps<typeof Menu.SubmenuTrigger>, 'style'> {
|
|
245
|
+
style?: CSSProperties | ((state: MenuSubmenuTriggerState) => CSSProperties);
|
|
246
|
+
}
|
|
247
|
+
declare function StyledSubmenuTrigger({
|
|
248
|
+
style: callerStyle,
|
|
249
|
+
...props
|
|
250
|
+
}: StyledSubmenuTriggerProps): react_jsx_runtime0.JSX.Element;
|
|
251
|
+
declare const DropdownMenu: {
|
|
252
|
+
Root: <Payload>(props: Menu.Root.Props<Payload>) => react_jsx_runtime0.JSX.Element;
|
|
253
|
+
Trigger: Menu.Trigger;
|
|
254
|
+
Portal: react.ForwardRefExoticComponent<Omit<_base_ui_react0.ContextMenuPortalProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
255
|
+
Positioner: react.ForwardRefExoticComponent<Omit<_base_ui_react0.ContextMenuPositionerProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
256
|
+
Popup: typeof StyledPopup$1;
|
|
257
|
+
Item: typeof StyledItem$1;
|
|
258
|
+
Separator: typeof StyledSeparator;
|
|
259
|
+
SubmenuRoot: typeof Menu.SubmenuRoot;
|
|
260
|
+
SubmenuTrigger: typeof StyledSubmenuTrigger;
|
|
261
|
+
};
|
|
262
|
+
//#endregion
|
|
263
|
+
//#region src/Select.d.ts
|
|
264
|
+
declare function StyledTrigger({
|
|
265
|
+
style,
|
|
266
|
+
children,
|
|
267
|
+
...props
|
|
268
|
+
}: ComponentProps<typeof Select$1.Trigger>): react_jsx_runtime0.JSX.Element;
|
|
269
|
+
declare function StyledPositioner({
|
|
270
|
+
...props
|
|
271
|
+
}: ComponentProps<typeof Select$1.Positioner>): react_jsx_runtime0.JSX.Element;
|
|
272
|
+
declare function StyledPopup({
|
|
273
|
+
style,
|
|
274
|
+
...props
|
|
275
|
+
}: ComponentProps<typeof Select$1.Popup>): react_jsx_runtime0.JSX.Element;
|
|
276
|
+
declare function StyledList({
|
|
277
|
+
style,
|
|
278
|
+
...props
|
|
279
|
+
}: ComponentProps<typeof Select$1.List>): react_jsx_runtime0.JSX.Element;
|
|
280
|
+
interface StyledItemProps$1 extends Omit<ComponentProps<typeof Select$1.Item>, 'style'> {
|
|
281
|
+
style?: CSSProperties;
|
|
282
|
+
}
|
|
283
|
+
declare function StyledItem({
|
|
284
|
+
style: callerStyle,
|
|
285
|
+
...props
|
|
286
|
+
}: StyledItemProps$1): react_jsx_runtime0.JSX.Element;
|
|
287
|
+
declare const Select: {
|
|
288
|
+
Root: typeof Select$1.Root;
|
|
289
|
+
Trigger: typeof StyledTrigger;
|
|
290
|
+
Value: react.ForwardRefExoticComponent<Omit<_base_ui_react0.SelectValueProps, "ref"> & react.RefAttributes<HTMLSpanElement>>;
|
|
291
|
+
Portal: react.ForwardRefExoticComponent<Omit<_base_ui_react0.SelectPortalProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
292
|
+
Positioner: typeof StyledPositioner;
|
|
293
|
+
Popup: typeof StyledPopup;
|
|
294
|
+
List: typeof StyledList;
|
|
295
|
+
Item: typeof StyledItem;
|
|
296
|
+
ItemText: react.NamedExoticComponent<Omit<_base_ui_react0.SelectItemTextProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
297
|
+
ItemIndicator: react.ForwardRefExoticComponent<Omit<_base_ui_react0.SelectItemIndicatorProps, "ref"> & react.RefAttributes<HTMLSpanElement>>;
|
|
298
|
+
Group: react.ForwardRefExoticComponent<Omit<_base_ui_react0.SelectGroupProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
299
|
+
GroupLabel: react.ForwardRefExoticComponent<Omit<_base_ui_react0.SelectGroupLabelProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
300
|
+
Separator: react.ForwardRefExoticComponent<Omit<_base_ui_react0.SeparatorProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
301
|
+
};
|
|
302
|
+
//#endregion
|
|
303
|
+
//#region src/Logo.d.ts
|
|
304
|
+
declare function Logo({
|
|
305
|
+
bgColor,
|
|
306
|
+
size
|
|
307
|
+
}: {
|
|
308
|
+
bgColor?: string;
|
|
309
|
+
size?: number;
|
|
310
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
311
|
+
//#endregion
|
|
312
|
+
export { Button, type ButtonProps, ChatBubbleIcon, ChevronLeftIcon, ChevronRightIcon, ClipboardIcon, CollapseIcon, Combobox, DropdownMenu, type StyledItemProps as DropdownMenuItemProps, type DropdownMenuItemState, type DropdownMenuRootProps, ExpandIcon, FolderIcon, IconButton, type IconButtonProps, Kbd, KbdGroup, Logo, OpenInEditorIcon, OpencodeIcon, PanelHeader, type PanelHeaderProps, Popover, SaveIcon, Select, Separator, type SeparatorProps, SettingsIcon, Textarea, type TextareaProps, ToolbarButton, type ToolbarButtonProps, Tooltip, type TooltipProps, TrashIcon, XIcon, panelPopupStyle };
|
|
313
|
+
//# sourceMappingURL=index.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/Kbd.tsx","../src/Tooltip.tsx","../src/Button.tsx","../src/IconButton.tsx","../src/ToolbarButton.tsx","../src/PanelHeader.tsx","../src/Textarea.tsx","../src/Separator.tsx","../src/icons.tsx","../src/Popover.tsx","../src/Combobox.tsx","../src/DropdownMenu.tsx","../src/Select.tsx","../src/Logo.tsx"],"mappings":"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"}
|