Unify the /plan claimed hint with the plan placeholder through a locale namespace, localize slash menu group titles, replace the PermissionSelect native select with the Menu primitive, add a goal pause verb chain, clamp anchored popups to the viewport with scroll-into-view and outside-dismiss, and fix onPasteUpgrade insertedRange to account for the chip trailing gap.
26 lines
1.1 KiB
TypeScript
26 lines
1.1 KiB
TypeScript
/**
|
|
* Cordis-free React primitives styled only through `--dsw-*` tokens.
|
|
*/
|
|
|
|
export { StateDot } from './StateDot.tsx'
|
|
export type { StateDotState } from './StateDot.tsx'
|
|
export { Button } from './Button.tsx'
|
|
export type { ButtonVariant } from './Button.tsx'
|
|
export { Pill } from './Pill.tsx'
|
|
export { Input } from './Input.tsx'
|
|
export { Menu } from './Menu.tsx'
|
|
export type { MenuEntry, MenuItem, MenuSeparator, MenuLabel } from './Menu.tsx'
|
|
export { useAnchoredMaxHeight } from './useAnchoredMaxHeight.ts'
|
|
export { HoverCard } from './HoverCard.tsx'
|
|
export { Modal } from './Modal.tsx'
|
|
export { ConnectionBanner } from './ConnectionBanner.tsx'
|
|
export { FishLogo } from './FishLogo.tsx'
|
|
export { BrandWordmark } from './BrandWordmark.tsx'
|
|
export { Tooltip } from './Tooltip.tsx'
|
|
export type { TooltipSide } from './Tooltip.tsx'
|
|
export { CodeBlock } from './markdown/CodeBlock.tsx'
|
|
export { JsonBlock } from './markdown/JsonBlock.tsx'
|
|
export { MarkdownText } from './markdown/MarkdownText.tsx'
|
|
export { MessageText } from './markdown/MessageText.tsx'
|
|
export * from './icons/index.tsx'
|