@lateralus-ai/shipping-ui 2.0.0-dev.17 → 2.0.0-dev.19

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.
@@ -0,0 +1,22 @@
1
+ import { ComponentPropsWithoutRef } from 'react';
2
+ export type ScrollableListProps = ComponentPropsWithoutRef<"div">;
3
+ export type ScrollableListHeaderProps = ComponentPropsWithoutRef<"div">;
4
+ export type ScrollableListBodyProps = ComponentPropsWithoutRef<"div">;
5
+ /**
6
+ * Fill-height list chrome — Figma `Table` (6154:152285).
7
+ * Outer grey-100 frame + header slot + internally scrolling grey-50 body.
8
+ * Column layout and rows are caller-owned children.
9
+ */
10
+ declare function ScrollableListRoot({ className, ...props }: ScrollableListProps): import("react/jsx-runtime").JSX.Element;
11
+ /**
12
+ * Column title bar. Default left padding aligns with a 24px leading icon +
13
+ * 8px gap + 8px row padding (Figma). Override `className` when rows have no icon.
14
+ */
15
+ declare function ScrollableListHeader({ className, ...props }: ScrollableListHeaderProps): import("react/jsx-runtime").JSX.Element;
16
+ /** Internally scrolling row region. */
17
+ declare function ScrollableListBody({ className, ...props }: ScrollableListBodyProps): import("react/jsx-runtime").JSX.Element;
18
+ export declare const ScrollableList: typeof ScrollableListRoot & {
19
+ Header: typeof ScrollableListHeader;
20
+ Body: typeof ScrollableListBody;
21
+ };
22
+ export {};
@@ -7,6 +7,7 @@ export { Tab, type TabProps, type TabState } from './Tab';
7
7
  export { Tabs, TabsList, TabsTrigger, TabsContent, type TabsProps, type TabsListProps, type TabsTriggerProps, type TabsContentProps, type TabsItem, type TabsType, type TabsAppearance, } from './Tabs';
8
8
  export { Header, type HeaderProps, type HeaderVariant } from './Header';
9
9
  export { PageHeader, type PageHeaderProps, type PageHeaderCrumb, type PageHeaderShellProps, type PageHeaderBodyProps, } from './PageHeader';
10
+ export { ScrollableList, type ScrollableListProps, type ScrollableListHeaderProps, type ScrollableListBodyProps, } from './ScrollableList';
10
11
  export { Entry, type EntryProps, type EntryType, type EntryState, type EntryVariant } from './Entry';
11
12
  export { EmptyState, type EmptyStateProps } from './EmptyState';
12
13
  export { Modal, ModalTrigger, ModalClose, ModalPortal, ModalOverlay, ModalContent, ModalTitle, ModalDescription, ModalHeaderSlot, ModalBody, type ModalProps, type ModalOverlayProps, type ModalContentProps, type ModalTitleProps, type ModalDescriptionProps, type ModalBodyProps, } from './Modal';