@geomak/ui 7.7.3 → 7.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -2084,22 +2084,22 @@ interface ListProps {
2084
2084
  declare function List({ items, onItemClick, activeKey, density, className, style, }: ListProps): react_jsx_runtime.JSX.Element;
2085
2085
 
2086
2086
  interface ScalableContainerProps {
2087
- /** Resting width. Any CSS length / percent. Default `'100%'`. */
2087
+ /**
2088
+ * Resting width. Optional — when omitted, the resting size is left to your
2089
+ * own `className` / parent layout (so the container can sit in a fluid grid
2090
+ * sized by `w-[…]` classes). Only set this if you want an inline width.
2091
+ */
2088
2092
  width?: react__default.CSSProperties['width'];
2089
- /** Resting height. Any CSS length / percent. Default `'auto'`. */
2093
+ /** Resting height. Optional see {@link ScalableContainerProps.width}. */
2090
2094
  height?: react__default.CSSProperties['height'];
2091
2095
  /**
2092
- * Width when expanded. A concrete value (e.g. `900` or `'60rem'`) makes the
2093
- * container grow even when its resting width is `'100%'` inside a flex/grid
2094
- * cell. Falls back to {@link ScalableContainerProps.expandedWidth}, then
2095
- * `'100%'`.
2096
+ * Width when expanded. Default `'100%'`. Use `'100%'` to span the full row
2097
+ * of a flex/grid so the container pushes its neighbours onto the next
2098
+ * row(s); a concrete value (e.g. `900`) grows it to that exact width.
2096
2099
  */
2097
2100
  targetWidth?: react__default.CSSProperties['width'];
2098
- /**
2099
- * Height when expanded. A concrete value (e.g. `600`) lets the container
2100
- * grow taller and push whatever sits below it further down. Falls back to
2101
- * {@link ScalableContainerProps.expandedHeight}, then `'100%'`.
2102
- */
2101
+ /** Height when expanded. Default `'100%'`. A concrete value (e.g. `580`)
2102
+ * grows the container taller and pushes whatever follows further down. */
2103
2103
  targetHeight?: react__default.CSSProperties['height'];
2104
2104
  /** @deprecated Use `targetWidth`. */
2105
2105
  expandedWidth?: react__default.CSSProperties['width'];
@@ -2130,24 +2130,31 @@ interface ScalableContainerProps {
2130
2130
  className?: string;
2131
2131
  }
2132
2132
  /**
2133
- * Container that smoothly grows to a target size on click and collapses back.
2134
- * Reads like an OS window resize — subtle elevation lift, smooth scale, no
2135
- * colour change.
2136
- *
2137
- * Expansion grows the container's OWN box to `targetWidth` × `targetHeight` and
2138
- * makes it `flex-none` while expanded, so it holds that size and simply pushes
2139
- * its neighbours along the flow they keep their own dimensions and reflow
2140
- * (e.g. wrap onto the next row / move down) rather than being squeezed. Nothing
2141
- * on sibling elements is mutated, so layouts restore exactly on collapse. For
2142
- * neighbours to reflow *below*, give the parent room to wrap (e.g. a
2143
- * `flex flex-wrap` row, or block/auto-rows-grid flow).
2133
+ * Container that grows to a target size on click and collapses back. Reads like
2134
+ * an OS window resize — subtle elevation lift, smooth size transition.
2135
+ *
2136
+ * **Resting size comes from your layout, not from props.** Leave `width`/`height`
2137
+ * unset and size the container with your own `className` (e.g. a fluid grid:
2138
+ * `w-full lg:w-[calc(50%-6px)]`). Only when expanded does the container write an
2139
+ * inline `width`/`height` (= `targetWidth`/`targetHeight`) and go `flex: none`,
2140
+ * so it grows to that size and simply **pushes its neighbours along the flow** —
2141
+ * they keep their own dimensions and reflow (wrap / move down). On collapse the
2142
+ * inline sizing is removed and your className layout takes back over. No sibling
2143
+ * styles are ever touched.
2144
+ *
2145
+ * For neighbours to reflow *below* the expanded one, the parent must be able to
2146
+ * wrap — a `flex flex-wrap` row is the simplest; with `targetWidth="100%"` the
2147
+ * expanded item takes a full row and everything after it moves down.
2144
2148
  *
2145
2149
  * @example
2146
2150
  * ```tsx
2147
- * // In a flex-wrap chart grid — expands to a concrete size and pushes the rest down.
2148
- * <div className="flex flex-wrap gap-2">
2149
- * <ScalableContainer width="100%" height={240} targetWidth="100%" targetHeight={520}>
2150
- * <Chart data={metrics} />
2151
+ * <div className="flex flex-wrap gap-3">
2152
+ * <ScalableContainer
2153
+ * className="w-full lg:w-[calc(50%-6px)]" // resting size — your grid
2154
+ * height={300} // resting height
2155
+ * targetWidth="100%" targetHeight={580} // expanded size
2156
+ * >
2157
+ * <Chart … />
2151
2158
  * </ScalableContainer>
2152
2159
  * …
2153
2160
  * </div>
@@ -2637,6 +2644,143 @@ interface VirtualListProps<T> {
2637
2644
  */
2638
2645
  declare function VirtualList<T>({ items, rowHeight, renderItem, height, getKey, overscan, searchable, searchKeys, filter, searchPlaceholder, emptyState, 'aria-label': ariaLabel, className, style, }: VirtualListProps<T>): react_jsx_runtime.JSX.Element;
2639
2646
 
2647
+ /**
2648
+ * Shared file-source contract for content components (PdfViewer, Spreadsheet).
2649
+ *
2650
+ * Three independent, equal ways to supply content — no preference baked in:
2651
+ * 1. PROGRAMMATIC — `ArrayBuffer | Uint8Array` built in-browser (no network)
2652
+ * 2. BACKEND — `string | URL` fetched/streamed from a server
2653
+ * 3. LOCAL — `File | Blob` from a file input / drag-drop (no network)
2654
+ */
2655
+ type FileSource = string | URL | File | Blob | ArrayBuffer | Uint8Array;
2656
+ interface RemoteSourceOptions {
2657
+ /** Forwarded when `source` is a URL (e.g. an auth token). */
2658
+ httpHeaders?: Record<string, string>;
2659
+ /** Send cookies for same-site auth when `source` is a URL. */
2660
+ withCredentials?: boolean;
2661
+ }
2662
+
2663
+ interface PdfViewerProps {
2664
+ source: FileSource;
2665
+ remote?: RemoteSourceOptions;
2666
+ initialPage?: number;
2667
+ /** Default `'page-width'`. */
2668
+ zoom?: number | 'auto' | 'page-fit' | 'page-width';
2669
+ /** Default `true`. */
2670
+ toolbar?: boolean | {
2671
+ zoom?: boolean;
2672
+ pager?: boolean;
2673
+ download?: boolean;
2674
+ print?: boolean;
2675
+ search?: boolean;
2676
+ };
2677
+ /** Side thumbnail rail. Default `false`. */
2678
+ thumbnails?: boolean;
2679
+ /** Selectable text layer. Default `true`. */
2680
+ textLayer?: boolean;
2681
+ onLoad?: (info: {
2682
+ numPages: number;
2683
+ }) => void;
2684
+ onError?: (err: Error) => void;
2685
+ onPageChange?: (page: number) => void;
2686
+ className?: string;
2687
+ style?: react__default.CSSProperties;
2688
+ }
2689
+ declare function PdfViewer({ source, remote, initialPage, zoom, toolbar, thumbnails, textLayer, onLoad, onError, onPageChange, className, style, }: PdfViewerProps): react_jsx_runtime.JSX.Element;
2690
+
2691
+ type CellValue = string | number | boolean | null;
2692
+ interface GridColumn {
2693
+ key: string;
2694
+ label?: react__default.ReactNode;
2695
+ /** Pixel width. Strings are parsed to px (non-numeric → default). Default 140. */
2696
+ width?: number | string;
2697
+ align?: 'left' | 'center' | 'right';
2698
+ /** Per-column override of the grid-wide `editable`. */
2699
+ editable?: boolean;
2700
+ }
2701
+ interface DataGridProps {
2702
+ columns: GridColumn[];
2703
+ /** Plain row records keyed by column key. */
2704
+ rows: Array<Record<string, CellValue>>;
2705
+ /** Default 34. */
2706
+ rowHeight?: number;
2707
+ /** Default 38. */
2708
+ headerHeight?: number;
2709
+ /** Viewport height. Default 480. */
2710
+ height?: number | string;
2711
+ /** Allow value editing (double-click a cell). Default false. */
2712
+ editable?: boolean;
2713
+ /** Window rows/columns. Default true. Off renders everything (small grids/tests). */
2714
+ virtualize?: boolean;
2715
+ /** Rows/cols rendered beyond the viewport each side. Default 4. */
2716
+ overscan?: number;
2717
+ /** Show the left row-number gutter. Default true. */
2718
+ rowNumbers?: boolean;
2719
+ onCellEdit?: (e: {
2720
+ row: number;
2721
+ column: string;
2722
+ value: string;
2723
+ }) => void;
2724
+ className?: string;
2725
+ style?: react__default.CSSProperties;
2726
+ /** Shown when there are no rows. */
2727
+ emptyState?: react__default.ReactNode;
2728
+ }
2729
+ /**
2730
+ * Virtualized (both axes) data grid primitive. Renders only the cells inside
2731
+ * the viewport plus an overscan margin, so it stays smooth at tens of thousands
2732
+ * of rows. The header and the row-number gutter are pinned by positioning them
2733
+ * at the live scroll offset (`top: scrollTop` / `left: scrollLeft`) — the same
2734
+ * translate-window technique as {@link VirtualList}, extended to two axes.
2735
+ *
2736
+ * Stateless w.r.t. data: it renders the `rows` it's given and emits
2737
+ * `onCellEdit` on commit. Wrap it with {@link Spreadsheet} for multi-sheet
2738
+ * switching, file parsing and export.
2739
+ */
2740
+ declare function DataGrid({ columns, rows, rowHeight, headerHeight, height, editable, virtualize, overscan, rowNumbers, onCellEdit, className, style, emptyState, }: DataGridProps): react_jsx_runtime.JSX.Element;
2741
+
2742
+ interface Cell {
2743
+ value: CellValue;
2744
+ /** Reserved for a future formula engine — parsed/stored but not evaluated. */
2745
+ formula?: string;
2746
+ }
2747
+ interface SheetData {
2748
+ name: string;
2749
+ columns: GridColumn[] | string[];
2750
+ rows: Array<Record<string, Cell | CellValue>>;
2751
+ }
2752
+ type GridSource = SheetData[] | File | Blob | string | URL;
2753
+ interface SpreadsheetProps {
2754
+ source: GridSource;
2755
+ remote?: RemoteSourceOptions;
2756
+ /** Value editing only — no formulas. Default false. */
2757
+ editable?: boolean;
2758
+ onCellEdit?: (e: {
2759
+ sheet: string;
2760
+ row: number;
2761
+ column: string;
2762
+ value: unknown;
2763
+ }) => void;
2764
+ onChange?: (sheets: SheetData[]) => void;
2765
+ /** Export formats offered in the toolbar. Default `['xlsx','csv','pdf']`; `false` hides export. */
2766
+ export?: Array<'xlsx' | 'csv' | 'pdf'> | false;
2767
+ fileName?: string;
2768
+ /** Default true. */
2769
+ virtualize?: boolean;
2770
+ className?: string;
2771
+ style?: react__default.CSSProperties;
2772
+ }
2773
+ /**
2774
+ * Multi-sheet spreadsheet built on {@link DataGrid}. Accepts data three ways
2775
+ * — in-memory `SheetData[]` (no network), a `File`/`Blob` (no network), or a
2776
+ * URL (the only mode that fetches). `.xlsx` is parsed with SheetJS, loaded
2777
+ * lazily on first use. Value editing emits `onCellEdit` + `onChange`; there is
2778
+ * no formula engine (the `Cell.formula` slot is reserved, not evaluated).
2779
+ * Exports to multi-sheet `.xlsx`, `.csv` (active sheet, BOM-prefixed) or a
2780
+ * paginated table `.pdf` (jsPDF, lazy).
2781
+ */
2782
+ declare function Spreadsheet({ source, remote, editable, onCellEdit, onChange, export: exportFormats, fileName, virtualize, className, style, }: SpreadsheetProps): react_jsx_runtime.JSX.Element;
2783
+
2640
2784
  interface ThemeSwitchProps {
2641
2785
  checked: boolean;
2642
2786
  onChange: (e: {
@@ -5545,4 +5689,4 @@ declare function expiryError(value: string, now?: Date): string | undefined;
5545
5689
  /** Validate the CVV against the detected brand's expected length. */
5546
5690
  declare function cvvError(value: string, cardNumber: string): string | undefined;
5547
5691
 
5548
- export { Accordion, type AccordionItemProps, type AccordionProps, AppShell, type AppShellProps, AutoComplete, type AutoCompleteProps, Avatar, type AvatarProps, type AvatarShape, type AvatarSize, type AvatarStatus, Badge, type BadgeProps, type BadgeSize, type BadgeTone, type BadgeVariant, Banner, type BannerProps, type BannerTone, Blog, type BlogPost, type BlogProps, Box, type BoxBackground, type BoxBorder, type BoxProps, type BoxRadius, type BoxShadow, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, type Breakpoint, type BreakpointState, Button, type ButtonProps, CARD_BRANDS, Card, type CardBodyProps, type CardBrand, CardCarousel, type CardCarouselProps, type CardFooterProps, type CardHeaderProps, type CardMediaProps, type CardProps, Cart, CartButton, type CartButtonProps, type CartContextValue, type CartItemInput, type CartLineItem, type CartProps, CartProvider, type CartProviderProps, type CartSummaryRow, Catalog, CatalogCarousel, type CatalogCarouselProps, CatalogGrid, type CatalogGridProps, type CatalogProps, type CellEditInfo, Chat, type ChatMessage, type ChatProps, Checkbox, type CheckboxProps, Checkout, type CheckoutProps, type ClassValue, ColorPicker, type ColorPickerProps, type ConsentChoice, ContextMenu, type ContextMenuActionItem, type ContextMenuPosition, type ContextMenuProps, CookieConsent, type CookieConsentProps, CreditCardForm, type CreditCardFormProps, type CreditCardValue, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, type DateRangePreset, type DeltaDirection, Drawer, type DrawerProps, type DrawerSize, Dropdown, type DropdownItem, type DropdownProps, type EditorArgs, EmptyCart, type EmptyCartProps, type ErrorMap, type ExpandRowOptions, FAB, type FABAction, type FABPosition, type FABProps, type FABSize, type FABTone, FadingBase, type FadingBaseProps, type Feature, FeatureGrid, type FeatureGridProps, Field, type FieldArrayItem, type FieldBindings, FieldHelpIcon, type FieldKind, FieldLabel, type FieldLabelProps, type FieldProps, type FieldRule, type FieldRules, type FieldShellOptions, type FieldSize, type FieldSnapshot, FileInput, type FileInputProps, Flex, type FlexAlign, type FlexDirection, type FlexJustify, type FlexProps, type FlexWrap, Form, FormContext, FormField, type FormFieldProps, type FormProps, FormStore, type FormStoreOptions, type FormValues, Grid, GridCard, type GridCardItem, type GridCardProps, type GridProps, IconButton, type IconButtonProps, Jumbotron, type JumbotronBackground, type JumbotronLayout, type JumbotronProps, type JwtResult, Kbd, type KbdProps, type KbdSize, LeadCapture, type LeadCaptureProps, List, type ListItem, type ListProps, LoadingSpinner, type LoadingSpinnerProps, LogoutTimer, type LogoutTimerProps, MegaMenu, type MegaMenuFeaturedProps, type MegaMenuItemProps, type MegaMenuLinkProps, type MegaMenuPanelProps, type MegaMenuProps, type MegaMenuSectionProps, MenuButton, type MenuButtonItem, type MenuButtonProps, Modal, type ModalProps, type ModalSize, type NotificationPayload, NotificationProvider, NumberInput, type NumberInputProps, OpaqueGridCard, type OpaqueGridCardProps, OtpInput, type OtpInputProps, type PaginationOptions, Parallax, type ParallaxProps, Password, type PasswordProps, type PasswordRule, type PasswordScore, PasswordStrength, type PasswordStrengthProps, type PasswordStrengthResult, PopConfirm, type PopConfirmProps, type PopConfirmTone, Portal, type PortalProps, type PricingPlan, PricingPlans, type PricingPlansProps, RadioGroup, type RadioGroupProps, type RadioOption, RadioTile, type RadioTileOption, type RadioTileProps, Rating, type RatingProps, type RulesMap, ScalableContainer, type ScalableContainerProps, Scheduler, type SchedulerEvent, type SchedulerProps, type SchedulerRange, type SchedulerView, SearchInput, type SearchInputProps, type SearchOptions, SecureLayout, type SecureLayoutProps, SegmentedControl, type SegmentedControlProps, type SegmentedOption, Sidebar, type SidebarItem, type SidebarProps, type SidebarSection, SkeletonBox, type SkeletonBoxProps, SkeletonCard, type SkeletonCardProps, SkeletonCircle, type SkeletonCircleProps, SkeletonText, type SkeletonTextProps, type Slide, SlideShow, type SlideShowProps, Slider, type SliderMark, type SliderProps, type SliderValue, type SocialLink, type SocialPlatform, Socials, type SocialsProps, type SortDirection, type SortState, type Spacing, Statistic, type StatisticDelta, type StatisticProps, type StatisticSize, Stepper, type StepperActiveStatus, type StepperProps, type StepperStep, Switch, type SwitchInputProps, Table, type TableColumn, type TableProps, Tabs, type TabsAddProps, type TabsListProps, type TabsOrientation, type TabsPanelProps, type TabsProps, type TabsSize, type TabsTriggerProps, type TabsVariant, TagsInput, type TagsInputProps, DatePicker as Temporal, type TemporalPickerProps, type Testimonial, Testimonials, type TestimonialsProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, type ThemeColors, type ThemeConfig, type ThemeDensity, type ThemeMotion, ThemeProvider, type ThemeProviderProps, type ThemeRadius, type ThemeShadows, ThemeSwitch, type ThemeSwitchProps, type ThemeTypography, TimePicker, type TimePickerProps, Timeline, type TimelineEvent, type TimelineProps, type TimelineStatus, Tooltip, type TooltipProps, TooltipProvider, TopBar, type TopBarProps, Tree, type TreeItemClickPayload, type TreeNode, type TreeProps, TreeSelect, type TreeSelectProps, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, type TypographyWeight, type UseFieldArrayReturn, type UseFormFieldOptions, type UseFormReturn, type ValidateTrigger, Video, type VideoProps, VirtualList, type VirtualListProps, Wizard, type WizardProps, type WizardStep, cardNumberError, cvvError, cx, defaultPasswordRules, detectBrand, expiryError, fieldShell, formatCardNumber, formatExpiry, isRequired, luhnValid, onlyDigits, patterns, runFieldRules, scorePassword, useBreakpoint, useCart, useFieldArray, useForm, useFormField, useFormStore, useJwt, useLocalStorage, useMediaQuery, useNotification };
5692
+ export { Accordion, type AccordionItemProps, type AccordionProps, AppShell, type AppShellProps, AutoComplete, type AutoCompleteProps, Avatar, type AvatarProps, type AvatarShape, type AvatarSize, type AvatarStatus, Badge, type BadgeProps, type BadgeSize, type BadgeTone, type BadgeVariant, Banner, type BannerProps, type BannerTone, Blog, type BlogPost, type BlogProps, Box, type BoxBackground, type BoxBorder, type BoxProps, type BoxRadius, type BoxShadow, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, type Breakpoint, type BreakpointState, Button, type ButtonProps, CARD_BRANDS, Card, type CardBodyProps, type CardBrand, CardCarousel, type CardCarouselProps, type CardFooterProps, type CardHeaderProps, type CardMediaProps, type CardProps, Cart, CartButton, type CartButtonProps, type CartContextValue, type CartItemInput, type CartLineItem, type CartProps, CartProvider, type CartProviderProps, type CartSummaryRow, Catalog, CatalogCarousel, type CatalogCarouselProps, CatalogGrid, type CatalogGridProps, type CatalogProps, type Cell, type CellEditInfo, type CellValue, Chat, type ChatMessage, type ChatProps, Checkbox, type CheckboxProps, Checkout, type CheckoutProps, type ClassValue, ColorPicker, type ColorPickerProps, type ConsentChoice, ContextMenu, type ContextMenuActionItem, type ContextMenuPosition, type ContextMenuProps, CookieConsent, type CookieConsentProps, CreditCardForm, type CreditCardFormProps, type CreditCardValue, DataGrid, type DataGridProps, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, type DateRangePreset, type DeltaDirection, Drawer, type DrawerProps, type DrawerSize, Dropdown, type DropdownItem, type DropdownProps, type EditorArgs, EmptyCart, type EmptyCartProps, type ErrorMap, type ExpandRowOptions, FAB, type FABAction, type FABPosition, type FABProps, type FABSize, type FABTone, FadingBase, type FadingBaseProps, type Feature, FeatureGrid, type FeatureGridProps, Field, type FieldArrayItem, type FieldBindings, FieldHelpIcon, type FieldKind, FieldLabel, type FieldLabelProps, type FieldProps, type FieldRule, type FieldRules, type FieldShellOptions, type FieldSize, type FieldSnapshot, FileInput, type FileInputProps, type FileSource, Flex, type FlexAlign, type FlexDirection, type FlexJustify, type FlexProps, type FlexWrap, Form, FormContext, FormField, type FormFieldProps, type FormProps, FormStore, type FormStoreOptions, type FormValues, Grid, GridCard, type GridCardItem, type GridCardProps, type GridColumn, type GridProps, type GridSource, IconButton, type IconButtonProps, Jumbotron, type JumbotronBackground, type JumbotronLayout, type JumbotronProps, type JwtResult, Kbd, type KbdProps, type KbdSize, LeadCapture, type LeadCaptureProps, List, type ListItem, type ListProps, LoadingSpinner, type LoadingSpinnerProps, LogoutTimer, type LogoutTimerProps, MegaMenu, type MegaMenuFeaturedProps, type MegaMenuItemProps, type MegaMenuLinkProps, type MegaMenuPanelProps, type MegaMenuProps, type MegaMenuSectionProps, MenuButton, type MenuButtonItem, type MenuButtonProps, Modal, type ModalProps, type ModalSize, type NotificationPayload, NotificationProvider, NumberInput, type NumberInputProps, OpaqueGridCard, type OpaqueGridCardProps, OtpInput, type OtpInputProps, type PaginationOptions, Parallax, type ParallaxProps, Password, type PasswordProps, type PasswordRule, type PasswordScore, PasswordStrength, type PasswordStrengthProps, type PasswordStrengthResult, PdfViewer, type PdfViewerProps, PopConfirm, type PopConfirmProps, type PopConfirmTone, Portal, type PortalProps, type PricingPlan, PricingPlans, type PricingPlansProps, RadioGroup, type RadioGroupProps, type RadioOption, RadioTile, type RadioTileOption, type RadioTileProps, Rating, type RatingProps, type RemoteSourceOptions, type RulesMap, ScalableContainer, type ScalableContainerProps, Scheduler, type SchedulerEvent, type SchedulerProps, type SchedulerRange, type SchedulerView, SearchInput, type SearchInputProps, type SearchOptions, SecureLayout, type SecureLayoutProps, SegmentedControl, type SegmentedControlProps, type SegmentedOption, type SheetData, Sidebar, type SidebarItem, type SidebarProps, type SidebarSection, SkeletonBox, type SkeletonBoxProps, SkeletonCard, type SkeletonCardProps, SkeletonCircle, type SkeletonCircleProps, SkeletonText, type SkeletonTextProps, type Slide, SlideShow, type SlideShowProps, Slider, type SliderMark, type SliderProps, type SliderValue, type SocialLink, type SocialPlatform, Socials, type SocialsProps, type SortDirection, type SortState, type Spacing, Spreadsheet, type SpreadsheetProps, Statistic, type StatisticDelta, type StatisticProps, type StatisticSize, Stepper, type StepperActiveStatus, type StepperProps, type StepperStep, Switch, type SwitchInputProps, Table, type TableColumn, type TableProps, Tabs, type TabsAddProps, type TabsListProps, type TabsOrientation, type TabsPanelProps, type TabsProps, type TabsSize, type TabsTriggerProps, type TabsVariant, TagsInput, type TagsInputProps, DatePicker as Temporal, type TemporalPickerProps, type Testimonial, Testimonials, type TestimonialsProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, type ThemeColors, type ThemeConfig, type ThemeDensity, type ThemeMotion, ThemeProvider, type ThemeProviderProps, type ThemeRadius, type ThemeShadows, ThemeSwitch, type ThemeSwitchProps, type ThemeTypography, TimePicker, type TimePickerProps, Timeline, type TimelineEvent, type TimelineProps, type TimelineStatus, Tooltip, type TooltipProps, TooltipProvider, TopBar, type TopBarProps, Tree, type TreeItemClickPayload, type TreeNode, type TreeProps, TreeSelect, type TreeSelectProps, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, type TypographyWeight, type UseFieldArrayReturn, type UseFormFieldOptions, type UseFormReturn, type ValidateTrigger, Video, type VideoProps, VirtualList, type VirtualListProps, Wizard, type WizardProps, type WizardStep, cardNumberError, cvvError, cx, defaultPasswordRules, detectBrand, expiryError, fieldShell, formatCardNumber, formatExpiry, isRequired, luhnValid, onlyDigits, patterns, runFieldRules, scorePassword, useBreakpoint, useCart, useFieldArray, useForm, useFormField, useFormStore, useJwt, useLocalStorage, useMediaQuery, useNotification };
package/dist/index.d.ts CHANGED
@@ -2084,22 +2084,22 @@ interface ListProps {
2084
2084
  declare function List({ items, onItemClick, activeKey, density, className, style, }: ListProps): react_jsx_runtime.JSX.Element;
2085
2085
 
2086
2086
  interface ScalableContainerProps {
2087
- /** Resting width. Any CSS length / percent. Default `'100%'`. */
2087
+ /**
2088
+ * Resting width. Optional — when omitted, the resting size is left to your
2089
+ * own `className` / parent layout (so the container can sit in a fluid grid
2090
+ * sized by `w-[…]` classes). Only set this if you want an inline width.
2091
+ */
2088
2092
  width?: react__default.CSSProperties['width'];
2089
- /** Resting height. Any CSS length / percent. Default `'auto'`. */
2093
+ /** Resting height. Optional see {@link ScalableContainerProps.width}. */
2090
2094
  height?: react__default.CSSProperties['height'];
2091
2095
  /**
2092
- * Width when expanded. A concrete value (e.g. `900` or `'60rem'`) makes the
2093
- * container grow even when its resting width is `'100%'` inside a flex/grid
2094
- * cell. Falls back to {@link ScalableContainerProps.expandedWidth}, then
2095
- * `'100%'`.
2096
+ * Width when expanded. Default `'100%'`. Use `'100%'` to span the full row
2097
+ * of a flex/grid so the container pushes its neighbours onto the next
2098
+ * row(s); a concrete value (e.g. `900`) grows it to that exact width.
2096
2099
  */
2097
2100
  targetWidth?: react__default.CSSProperties['width'];
2098
- /**
2099
- * Height when expanded. A concrete value (e.g. `600`) lets the container
2100
- * grow taller and push whatever sits below it further down. Falls back to
2101
- * {@link ScalableContainerProps.expandedHeight}, then `'100%'`.
2102
- */
2101
+ /** Height when expanded. Default `'100%'`. A concrete value (e.g. `580`)
2102
+ * grows the container taller and pushes whatever follows further down. */
2103
2103
  targetHeight?: react__default.CSSProperties['height'];
2104
2104
  /** @deprecated Use `targetWidth`. */
2105
2105
  expandedWidth?: react__default.CSSProperties['width'];
@@ -2130,24 +2130,31 @@ interface ScalableContainerProps {
2130
2130
  className?: string;
2131
2131
  }
2132
2132
  /**
2133
- * Container that smoothly grows to a target size on click and collapses back.
2134
- * Reads like an OS window resize — subtle elevation lift, smooth scale, no
2135
- * colour change.
2136
- *
2137
- * Expansion grows the container's OWN box to `targetWidth` × `targetHeight` and
2138
- * makes it `flex-none` while expanded, so it holds that size and simply pushes
2139
- * its neighbours along the flow they keep their own dimensions and reflow
2140
- * (e.g. wrap onto the next row / move down) rather than being squeezed. Nothing
2141
- * on sibling elements is mutated, so layouts restore exactly on collapse. For
2142
- * neighbours to reflow *below*, give the parent room to wrap (e.g. a
2143
- * `flex flex-wrap` row, or block/auto-rows-grid flow).
2133
+ * Container that grows to a target size on click and collapses back. Reads like
2134
+ * an OS window resize — subtle elevation lift, smooth size transition.
2135
+ *
2136
+ * **Resting size comes from your layout, not from props.** Leave `width`/`height`
2137
+ * unset and size the container with your own `className` (e.g. a fluid grid:
2138
+ * `w-full lg:w-[calc(50%-6px)]`). Only when expanded does the container write an
2139
+ * inline `width`/`height` (= `targetWidth`/`targetHeight`) and go `flex: none`,
2140
+ * so it grows to that size and simply **pushes its neighbours along the flow** —
2141
+ * they keep their own dimensions and reflow (wrap / move down). On collapse the
2142
+ * inline sizing is removed and your className layout takes back over. No sibling
2143
+ * styles are ever touched.
2144
+ *
2145
+ * For neighbours to reflow *below* the expanded one, the parent must be able to
2146
+ * wrap — a `flex flex-wrap` row is the simplest; with `targetWidth="100%"` the
2147
+ * expanded item takes a full row and everything after it moves down.
2144
2148
  *
2145
2149
  * @example
2146
2150
  * ```tsx
2147
- * // In a flex-wrap chart grid — expands to a concrete size and pushes the rest down.
2148
- * <div className="flex flex-wrap gap-2">
2149
- * <ScalableContainer width="100%" height={240} targetWidth="100%" targetHeight={520}>
2150
- * <Chart data={metrics} />
2151
+ * <div className="flex flex-wrap gap-3">
2152
+ * <ScalableContainer
2153
+ * className="w-full lg:w-[calc(50%-6px)]" // resting size — your grid
2154
+ * height={300} // resting height
2155
+ * targetWidth="100%" targetHeight={580} // expanded size
2156
+ * >
2157
+ * <Chart … />
2151
2158
  * </ScalableContainer>
2152
2159
  * …
2153
2160
  * </div>
@@ -2637,6 +2644,143 @@ interface VirtualListProps<T> {
2637
2644
  */
2638
2645
  declare function VirtualList<T>({ items, rowHeight, renderItem, height, getKey, overscan, searchable, searchKeys, filter, searchPlaceholder, emptyState, 'aria-label': ariaLabel, className, style, }: VirtualListProps<T>): react_jsx_runtime.JSX.Element;
2639
2646
 
2647
+ /**
2648
+ * Shared file-source contract for content components (PdfViewer, Spreadsheet).
2649
+ *
2650
+ * Three independent, equal ways to supply content — no preference baked in:
2651
+ * 1. PROGRAMMATIC — `ArrayBuffer | Uint8Array` built in-browser (no network)
2652
+ * 2. BACKEND — `string | URL` fetched/streamed from a server
2653
+ * 3. LOCAL — `File | Blob` from a file input / drag-drop (no network)
2654
+ */
2655
+ type FileSource = string | URL | File | Blob | ArrayBuffer | Uint8Array;
2656
+ interface RemoteSourceOptions {
2657
+ /** Forwarded when `source` is a URL (e.g. an auth token). */
2658
+ httpHeaders?: Record<string, string>;
2659
+ /** Send cookies for same-site auth when `source` is a URL. */
2660
+ withCredentials?: boolean;
2661
+ }
2662
+
2663
+ interface PdfViewerProps {
2664
+ source: FileSource;
2665
+ remote?: RemoteSourceOptions;
2666
+ initialPage?: number;
2667
+ /** Default `'page-width'`. */
2668
+ zoom?: number | 'auto' | 'page-fit' | 'page-width';
2669
+ /** Default `true`. */
2670
+ toolbar?: boolean | {
2671
+ zoom?: boolean;
2672
+ pager?: boolean;
2673
+ download?: boolean;
2674
+ print?: boolean;
2675
+ search?: boolean;
2676
+ };
2677
+ /** Side thumbnail rail. Default `false`. */
2678
+ thumbnails?: boolean;
2679
+ /** Selectable text layer. Default `true`. */
2680
+ textLayer?: boolean;
2681
+ onLoad?: (info: {
2682
+ numPages: number;
2683
+ }) => void;
2684
+ onError?: (err: Error) => void;
2685
+ onPageChange?: (page: number) => void;
2686
+ className?: string;
2687
+ style?: react__default.CSSProperties;
2688
+ }
2689
+ declare function PdfViewer({ source, remote, initialPage, zoom, toolbar, thumbnails, textLayer, onLoad, onError, onPageChange, className, style, }: PdfViewerProps): react_jsx_runtime.JSX.Element;
2690
+
2691
+ type CellValue = string | number | boolean | null;
2692
+ interface GridColumn {
2693
+ key: string;
2694
+ label?: react__default.ReactNode;
2695
+ /** Pixel width. Strings are parsed to px (non-numeric → default). Default 140. */
2696
+ width?: number | string;
2697
+ align?: 'left' | 'center' | 'right';
2698
+ /** Per-column override of the grid-wide `editable`. */
2699
+ editable?: boolean;
2700
+ }
2701
+ interface DataGridProps {
2702
+ columns: GridColumn[];
2703
+ /** Plain row records keyed by column key. */
2704
+ rows: Array<Record<string, CellValue>>;
2705
+ /** Default 34. */
2706
+ rowHeight?: number;
2707
+ /** Default 38. */
2708
+ headerHeight?: number;
2709
+ /** Viewport height. Default 480. */
2710
+ height?: number | string;
2711
+ /** Allow value editing (double-click a cell). Default false. */
2712
+ editable?: boolean;
2713
+ /** Window rows/columns. Default true. Off renders everything (small grids/tests). */
2714
+ virtualize?: boolean;
2715
+ /** Rows/cols rendered beyond the viewport each side. Default 4. */
2716
+ overscan?: number;
2717
+ /** Show the left row-number gutter. Default true. */
2718
+ rowNumbers?: boolean;
2719
+ onCellEdit?: (e: {
2720
+ row: number;
2721
+ column: string;
2722
+ value: string;
2723
+ }) => void;
2724
+ className?: string;
2725
+ style?: react__default.CSSProperties;
2726
+ /** Shown when there are no rows. */
2727
+ emptyState?: react__default.ReactNode;
2728
+ }
2729
+ /**
2730
+ * Virtualized (both axes) data grid primitive. Renders only the cells inside
2731
+ * the viewport plus an overscan margin, so it stays smooth at tens of thousands
2732
+ * of rows. The header and the row-number gutter are pinned by positioning them
2733
+ * at the live scroll offset (`top: scrollTop` / `left: scrollLeft`) — the same
2734
+ * translate-window technique as {@link VirtualList}, extended to two axes.
2735
+ *
2736
+ * Stateless w.r.t. data: it renders the `rows` it's given and emits
2737
+ * `onCellEdit` on commit. Wrap it with {@link Spreadsheet} for multi-sheet
2738
+ * switching, file parsing and export.
2739
+ */
2740
+ declare function DataGrid({ columns, rows, rowHeight, headerHeight, height, editable, virtualize, overscan, rowNumbers, onCellEdit, className, style, emptyState, }: DataGridProps): react_jsx_runtime.JSX.Element;
2741
+
2742
+ interface Cell {
2743
+ value: CellValue;
2744
+ /** Reserved for a future formula engine — parsed/stored but not evaluated. */
2745
+ formula?: string;
2746
+ }
2747
+ interface SheetData {
2748
+ name: string;
2749
+ columns: GridColumn[] | string[];
2750
+ rows: Array<Record<string, Cell | CellValue>>;
2751
+ }
2752
+ type GridSource = SheetData[] | File | Blob | string | URL;
2753
+ interface SpreadsheetProps {
2754
+ source: GridSource;
2755
+ remote?: RemoteSourceOptions;
2756
+ /** Value editing only — no formulas. Default false. */
2757
+ editable?: boolean;
2758
+ onCellEdit?: (e: {
2759
+ sheet: string;
2760
+ row: number;
2761
+ column: string;
2762
+ value: unknown;
2763
+ }) => void;
2764
+ onChange?: (sheets: SheetData[]) => void;
2765
+ /** Export formats offered in the toolbar. Default `['xlsx','csv','pdf']`; `false` hides export. */
2766
+ export?: Array<'xlsx' | 'csv' | 'pdf'> | false;
2767
+ fileName?: string;
2768
+ /** Default true. */
2769
+ virtualize?: boolean;
2770
+ className?: string;
2771
+ style?: react__default.CSSProperties;
2772
+ }
2773
+ /**
2774
+ * Multi-sheet spreadsheet built on {@link DataGrid}. Accepts data three ways
2775
+ * — in-memory `SheetData[]` (no network), a `File`/`Blob` (no network), or a
2776
+ * URL (the only mode that fetches). `.xlsx` is parsed with SheetJS, loaded
2777
+ * lazily on first use. Value editing emits `onCellEdit` + `onChange`; there is
2778
+ * no formula engine (the `Cell.formula` slot is reserved, not evaluated).
2779
+ * Exports to multi-sheet `.xlsx`, `.csv` (active sheet, BOM-prefixed) or a
2780
+ * paginated table `.pdf` (jsPDF, lazy).
2781
+ */
2782
+ declare function Spreadsheet({ source, remote, editable, onCellEdit, onChange, export: exportFormats, fileName, virtualize, className, style, }: SpreadsheetProps): react_jsx_runtime.JSX.Element;
2783
+
2640
2784
  interface ThemeSwitchProps {
2641
2785
  checked: boolean;
2642
2786
  onChange: (e: {
@@ -5545,4 +5689,4 @@ declare function expiryError(value: string, now?: Date): string | undefined;
5545
5689
  /** Validate the CVV against the detected brand's expected length. */
5546
5690
  declare function cvvError(value: string, cardNumber: string): string | undefined;
5547
5691
 
5548
- export { Accordion, type AccordionItemProps, type AccordionProps, AppShell, type AppShellProps, AutoComplete, type AutoCompleteProps, Avatar, type AvatarProps, type AvatarShape, type AvatarSize, type AvatarStatus, Badge, type BadgeProps, type BadgeSize, type BadgeTone, type BadgeVariant, Banner, type BannerProps, type BannerTone, Blog, type BlogPost, type BlogProps, Box, type BoxBackground, type BoxBorder, type BoxProps, type BoxRadius, type BoxShadow, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, type Breakpoint, type BreakpointState, Button, type ButtonProps, CARD_BRANDS, Card, type CardBodyProps, type CardBrand, CardCarousel, type CardCarouselProps, type CardFooterProps, type CardHeaderProps, type CardMediaProps, type CardProps, Cart, CartButton, type CartButtonProps, type CartContextValue, type CartItemInput, type CartLineItem, type CartProps, CartProvider, type CartProviderProps, type CartSummaryRow, Catalog, CatalogCarousel, type CatalogCarouselProps, CatalogGrid, type CatalogGridProps, type CatalogProps, type CellEditInfo, Chat, type ChatMessage, type ChatProps, Checkbox, type CheckboxProps, Checkout, type CheckoutProps, type ClassValue, ColorPicker, type ColorPickerProps, type ConsentChoice, ContextMenu, type ContextMenuActionItem, type ContextMenuPosition, type ContextMenuProps, CookieConsent, type CookieConsentProps, CreditCardForm, type CreditCardFormProps, type CreditCardValue, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, type DateRangePreset, type DeltaDirection, Drawer, type DrawerProps, type DrawerSize, Dropdown, type DropdownItem, type DropdownProps, type EditorArgs, EmptyCart, type EmptyCartProps, type ErrorMap, type ExpandRowOptions, FAB, type FABAction, type FABPosition, type FABProps, type FABSize, type FABTone, FadingBase, type FadingBaseProps, type Feature, FeatureGrid, type FeatureGridProps, Field, type FieldArrayItem, type FieldBindings, FieldHelpIcon, type FieldKind, FieldLabel, type FieldLabelProps, type FieldProps, type FieldRule, type FieldRules, type FieldShellOptions, type FieldSize, type FieldSnapshot, FileInput, type FileInputProps, Flex, type FlexAlign, type FlexDirection, type FlexJustify, type FlexProps, type FlexWrap, Form, FormContext, FormField, type FormFieldProps, type FormProps, FormStore, type FormStoreOptions, type FormValues, Grid, GridCard, type GridCardItem, type GridCardProps, type GridProps, IconButton, type IconButtonProps, Jumbotron, type JumbotronBackground, type JumbotronLayout, type JumbotronProps, type JwtResult, Kbd, type KbdProps, type KbdSize, LeadCapture, type LeadCaptureProps, List, type ListItem, type ListProps, LoadingSpinner, type LoadingSpinnerProps, LogoutTimer, type LogoutTimerProps, MegaMenu, type MegaMenuFeaturedProps, type MegaMenuItemProps, type MegaMenuLinkProps, type MegaMenuPanelProps, type MegaMenuProps, type MegaMenuSectionProps, MenuButton, type MenuButtonItem, type MenuButtonProps, Modal, type ModalProps, type ModalSize, type NotificationPayload, NotificationProvider, NumberInput, type NumberInputProps, OpaqueGridCard, type OpaqueGridCardProps, OtpInput, type OtpInputProps, type PaginationOptions, Parallax, type ParallaxProps, Password, type PasswordProps, type PasswordRule, type PasswordScore, PasswordStrength, type PasswordStrengthProps, type PasswordStrengthResult, PopConfirm, type PopConfirmProps, type PopConfirmTone, Portal, type PortalProps, type PricingPlan, PricingPlans, type PricingPlansProps, RadioGroup, type RadioGroupProps, type RadioOption, RadioTile, type RadioTileOption, type RadioTileProps, Rating, type RatingProps, type RulesMap, ScalableContainer, type ScalableContainerProps, Scheduler, type SchedulerEvent, type SchedulerProps, type SchedulerRange, type SchedulerView, SearchInput, type SearchInputProps, type SearchOptions, SecureLayout, type SecureLayoutProps, SegmentedControl, type SegmentedControlProps, type SegmentedOption, Sidebar, type SidebarItem, type SidebarProps, type SidebarSection, SkeletonBox, type SkeletonBoxProps, SkeletonCard, type SkeletonCardProps, SkeletonCircle, type SkeletonCircleProps, SkeletonText, type SkeletonTextProps, type Slide, SlideShow, type SlideShowProps, Slider, type SliderMark, type SliderProps, type SliderValue, type SocialLink, type SocialPlatform, Socials, type SocialsProps, type SortDirection, type SortState, type Spacing, Statistic, type StatisticDelta, type StatisticProps, type StatisticSize, Stepper, type StepperActiveStatus, type StepperProps, type StepperStep, Switch, type SwitchInputProps, Table, type TableColumn, type TableProps, Tabs, type TabsAddProps, type TabsListProps, type TabsOrientation, type TabsPanelProps, type TabsProps, type TabsSize, type TabsTriggerProps, type TabsVariant, TagsInput, type TagsInputProps, DatePicker as Temporal, type TemporalPickerProps, type Testimonial, Testimonials, type TestimonialsProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, type ThemeColors, type ThemeConfig, type ThemeDensity, type ThemeMotion, ThemeProvider, type ThemeProviderProps, type ThemeRadius, type ThemeShadows, ThemeSwitch, type ThemeSwitchProps, type ThemeTypography, TimePicker, type TimePickerProps, Timeline, type TimelineEvent, type TimelineProps, type TimelineStatus, Tooltip, type TooltipProps, TooltipProvider, TopBar, type TopBarProps, Tree, type TreeItemClickPayload, type TreeNode, type TreeProps, TreeSelect, type TreeSelectProps, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, type TypographyWeight, type UseFieldArrayReturn, type UseFormFieldOptions, type UseFormReturn, type ValidateTrigger, Video, type VideoProps, VirtualList, type VirtualListProps, Wizard, type WizardProps, type WizardStep, cardNumberError, cvvError, cx, defaultPasswordRules, detectBrand, expiryError, fieldShell, formatCardNumber, formatExpiry, isRequired, luhnValid, onlyDigits, patterns, runFieldRules, scorePassword, useBreakpoint, useCart, useFieldArray, useForm, useFormField, useFormStore, useJwt, useLocalStorage, useMediaQuery, useNotification };
5692
+ export { Accordion, type AccordionItemProps, type AccordionProps, AppShell, type AppShellProps, AutoComplete, type AutoCompleteProps, Avatar, type AvatarProps, type AvatarShape, type AvatarSize, type AvatarStatus, Badge, type BadgeProps, type BadgeSize, type BadgeTone, type BadgeVariant, Banner, type BannerProps, type BannerTone, Blog, type BlogPost, type BlogProps, Box, type BoxBackground, type BoxBorder, type BoxProps, type BoxRadius, type BoxShadow, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, type Breakpoint, type BreakpointState, Button, type ButtonProps, CARD_BRANDS, Card, type CardBodyProps, type CardBrand, CardCarousel, type CardCarouselProps, type CardFooterProps, type CardHeaderProps, type CardMediaProps, type CardProps, Cart, CartButton, type CartButtonProps, type CartContextValue, type CartItemInput, type CartLineItem, type CartProps, CartProvider, type CartProviderProps, type CartSummaryRow, Catalog, CatalogCarousel, type CatalogCarouselProps, CatalogGrid, type CatalogGridProps, type CatalogProps, type Cell, type CellEditInfo, type CellValue, Chat, type ChatMessage, type ChatProps, Checkbox, type CheckboxProps, Checkout, type CheckoutProps, type ClassValue, ColorPicker, type ColorPickerProps, type ConsentChoice, ContextMenu, type ContextMenuActionItem, type ContextMenuPosition, type ContextMenuProps, CookieConsent, type CookieConsentProps, CreditCardForm, type CreditCardFormProps, type CreditCardValue, DataGrid, type DataGridProps, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, type DateRangePreset, type DeltaDirection, Drawer, type DrawerProps, type DrawerSize, Dropdown, type DropdownItem, type DropdownProps, type EditorArgs, EmptyCart, type EmptyCartProps, type ErrorMap, type ExpandRowOptions, FAB, type FABAction, type FABPosition, type FABProps, type FABSize, type FABTone, FadingBase, type FadingBaseProps, type Feature, FeatureGrid, type FeatureGridProps, Field, type FieldArrayItem, type FieldBindings, FieldHelpIcon, type FieldKind, FieldLabel, type FieldLabelProps, type FieldProps, type FieldRule, type FieldRules, type FieldShellOptions, type FieldSize, type FieldSnapshot, FileInput, type FileInputProps, type FileSource, Flex, type FlexAlign, type FlexDirection, type FlexJustify, type FlexProps, type FlexWrap, Form, FormContext, FormField, type FormFieldProps, type FormProps, FormStore, type FormStoreOptions, type FormValues, Grid, GridCard, type GridCardItem, type GridCardProps, type GridColumn, type GridProps, type GridSource, IconButton, type IconButtonProps, Jumbotron, type JumbotronBackground, type JumbotronLayout, type JumbotronProps, type JwtResult, Kbd, type KbdProps, type KbdSize, LeadCapture, type LeadCaptureProps, List, type ListItem, type ListProps, LoadingSpinner, type LoadingSpinnerProps, LogoutTimer, type LogoutTimerProps, MegaMenu, type MegaMenuFeaturedProps, type MegaMenuItemProps, type MegaMenuLinkProps, type MegaMenuPanelProps, type MegaMenuProps, type MegaMenuSectionProps, MenuButton, type MenuButtonItem, type MenuButtonProps, Modal, type ModalProps, type ModalSize, type NotificationPayload, NotificationProvider, NumberInput, type NumberInputProps, OpaqueGridCard, type OpaqueGridCardProps, OtpInput, type OtpInputProps, type PaginationOptions, Parallax, type ParallaxProps, Password, type PasswordProps, type PasswordRule, type PasswordScore, PasswordStrength, type PasswordStrengthProps, type PasswordStrengthResult, PdfViewer, type PdfViewerProps, PopConfirm, type PopConfirmProps, type PopConfirmTone, Portal, type PortalProps, type PricingPlan, PricingPlans, type PricingPlansProps, RadioGroup, type RadioGroupProps, type RadioOption, RadioTile, type RadioTileOption, type RadioTileProps, Rating, type RatingProps, type RemoteSourceOptions, type RulesMap, ScalableContainer, type ScalableContainerProps, Scheduler, type SchedulerEvent, type SchedulerProps, type SchedulerRange, type SchedulerView, SearchInput, type SearchInputProps, type SearchOptions, SecureLayout, type SecureLayoutProps, SegmentedControl, type SegmentedControlProps, type SegmentedOption, type SheetData, Sidebar, type SidebarItem, type SidebarProps, type SidebarSection, SkeletonBox, type SkeletonBoxProps, SkeletonCard, type SkeletonCardProps, SkeletonCircle, type SkeletonCircleProps, SkeletonText, type SkeletonTextProps, type Slide, SlideShow, type SlideShowProps, Slider, type SliderMark, type SliderProps, type SliderValue, type SocialLink, type SocialPlatform, Socials, type SocialsProps, type SortDirection, type SortState, type Spacing, Spreadsheet, type SpreadsheetProps, Statistic, type StatisticDelta, type StatisticProps, type StatisticSize, Stepper, type StepperActiveStatus, type StepperProps, type StepperStep, Switch, type SwitchInputProps, Table, type TableColumn, type TableProps, Tabs, type TabsAddProps, type TabsListProps, type TabsOrientation, type TabsPanelProps, type TabsProps, type TabsSize, type TabsTriggerProps, type TabsVariant, TagsInput, type TagsInputProps, DatePicker as Temporal, type TemporalPickerProps, type Testimonial, Testimonials, type TestimonialsProps, TextArea, type TextAreaProps, TextInput, type TextInputProps, type ThemeColors, type ThemeConfig, type ThemeDensity, type ThemeMotion, ThemeProvider, type ThemeProviderProps, type ThemeRadius, type ThemeShadows, ThemeSwitch, type ThemeSwitchProps, type ThemeTypography, TimePicker, type TimePickerProps, Timeline, type TimelineEvent, type TimelineProps, type TimelineStatus, Tooltip, type TooltipProps, TooltipProvider, TopBar, type TopBarProps, Tree, type TreeItemClickPayload, type TreeNode, type TreeProps, TreeSelect, type TreeSelectProps, Typography, type TypographyAlign, type TypographyColor, type TypographyProps, type TypographyVariant, type TypographyWeight, type UseFieldArrayReturn, type UseFormFieldOptions, type UseFormReturn, type ValidateTrigger, Video, type VideoProps, VirtualList, type VirtualListProps, Wizard, type WizardProps, type WizardStep, cardNumberError, cvvError, cx, defaultPasswordRules, detectBrand, expiryError, fieldShell, formatCardNumber, formatExpiry, isRequired, luhnValid, onlyDigits, patterns, runFieldRules, scorePassword, useBreakpoint, useCart, useFieldArray, useForm, useFormField, useFormStore, useJwt, useLocalStorage, useMediaQuery, useNotification };