klun-ui 0.1.23 → 0.2.2

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
@@ -72,7 +72,7 @@ declare const Format: FormatApi;
72
72
  type ButtonKind = "default" | "fancy" | "compact" | "link";
73
73
  type ButtonVariant = "primary" | "neutral" | "error";
74
74
  type ButtonAppearance = "filled" | "stroke" | "lighter" | "ghost";
75
- type ButtonSize = "xsmall" | "small" | "medium" | "large";
75
+ type ButtonSize = "tiny" | "xsmall" | "small" | "medium" | "large";
76
76
  type FancyButtonVariant = "accent" | "dark" | "feature" | "glass";
77
77
  type FancyButtonSize = "small" | "medium" | "large";
78
78
  type CompactButtonAppearance = "stroke" | "ghost" | "white" | "filled";
@@ -430,6 +430,13 @@ type Accent = "blue" | "purple" | "orange" | "green" | "slate" | "metronic";
430
430
  * radius (round avatars / switches / pill badges) is always preserved.
431
431
  */
432
432
  type Radius = "default" | "sharp" | "square" | "rounded";
433
+ /**
434
+ * Global control density (maps to `data-density`). `"compact"` shifts every
435
+ * control-size token (heights, inline padding, checkbox/radio/switch sizing)
436
+ * down one tier — for dense admin, toolbar and data-table surfaces. The size
437
+ * props (`size="small"` …) keep working on top of it.
438
+ */
439
+ type Density = "default" | "compact";
433
440
  interface KlunConfig {
434
441
  /** Active locale dictionary. */
435
442
  locale: Locale;
@@ -443,6 +450,8 @@ interface KlunConfig {
443
450
  accent?: Accent;
444
451
  /** Global corner-radius scale. `undefined` inherits the default. */
445
452
  radius?: Radius;
453
+ /** Control density. `"compact"` shrinks every control one tier. */
454
+ density?: Density;
446
455
  /** Custom primary color (e.g. a hex). Overrides `accent`; a shade/tint ramp is derived. */
447
456
  primaryColor?: string;
448
457
  }
@@ -465,6 +474,8 @@ interface ConfigProviderProps {
465
474
  accent?: Accent;
466
475
  /** Global corner-radius scale applied to the subtree. */
467
476
  radius?: Radius;
477
+ /** Control density applied to the subtree (`"compact"` shrinks controls one tier). */
478
+ density?: Density;
468
479
  /** Custom primary color (e.g. a hex). Overrides `accent`; a ramp is derived. */
469
480
  primaryColor?: string;
470
481
  children?: ReactNode;
@@ -473,12 +484,13 @@ interface ConfigProviderProps {
473
484
  * ConfigProvider — supplies a global locale, default size, text direction and
474
485
  * theme/accent to the klun-ui components rendered below it. Values are inherited
475
486
  * from a parent provider when present, so providers can be nested to scope
476
- * overrides. `theme`/`accent` set `data-theme`/`data-mode` on the wrapper, which
487
+ * overrides. `theme`/`accent`/`radius`/`density` set
488
+ * `data-theme`/`data-mode`/`data-radius`/`data-density` on the wrapper, which
477
489
  * re-points the design tokens for the whole subtree; `primaryColor` overrides the
478
490
  * accent with a ramp derived from any hex. Without any provider, components fall
479
491
  * back to en-US / ltr / default theme, so usage is fully optional.
480
492
  */
481
- declare function ConfigProvider({ locale, size, dir, theme, accent, radius, primaryColor, children, }: ConfigProviderProps): react.JSX.Element;
493
+ declare function ConfigProvider({ locale, size, dir, theme, accent, radius, density, primaryColor, children, }: ConfigProviderProps): react.JSX.Element;
482
494
  declare namespace ConfigProvider {
483
495
  var displayName: string;
484
496
  }
@@ -629,6 +641,50 @@ interface ChipProps extends HTMLAttributes<HTMLSpanElement> {
629
641
  /** Klun UI Chip — compact, optionally-selectable color category pill. */
630
642
  declare const Chip: react.ForwardRefExoticComponent<ChipProps & react.RefAttributes<HTMLSpanElement>>;
631
643
 
644
+ interface CodeViewerProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
645
+ code: string;
646
+ title?: ReactNode;
647
+ language?: string;
648
+ lineNumbers?: boolean;
649
+ wrap?: boolean;
650
+ maxHeight?: number;
651
+ dark?: boolean;
652
+ onCopied?: (value: string) => void;
653
+ }
654
+ /**
655
+ * Klun UI CodeViewer — read-only monospace block for error stacks, config, snippets.
656
+ * Dark surface, horizontal scroll, optional line numbers, copy button, max-height inner scroll.
657
+ */
658
+ declare const CodeViewer: react.ForwardRefExoticComponent<CodeViewerProps & react.RefAttributes<HTMLDivElement>>;
659
+ type LogLevel = "error" | "warn" | "warning" | "info" | "debug" | "success";
660
+ interface LogLine {
661
+ ts?: string;
662
+ level?: LogLevel | string;
663
+ text: string;
664
+ }
665
+ interface LogViewerProps extends HTMLAttributes<HTMLDivElement> {
666
+ lines: (string | LogLine)[];
667
+ maxHeight?: number;
668
+ showTimestamp?: boolean;
669
+ dark?: boolean;
670
+ onCopied?: (value: string) => void;
671
+ }
672
+ /**
673
+ * Klun UI LogViewer — read-only log stream with optional per-line level coloring + timestamps.
674
+ * `lines`: string[] OR [{ ts?, level?, text }]. Monospace, dark, inner-scroll.
675
+ */
676
+ declare const LogViewer: react.ForwardRefExoticComponent<LogViewerProps & react.RefAttributes<HTMLDivElement>>;
677
+
678
+ type ContentLabelColor = "gray" | "blue" | "green" | "orange" | "purple";
679
+ interface ContentLabelProps extends HTMLAttributes<HTMLSpanElement> {
680
+ icon?: ReactNode;
681
+ color?: ContentLabelColor;
682
+ size?: "sm" | "md";
683
+ children?: ReactNode;
684
+ }
685
+ /** Klun UI ContentLabel — tracked uppercase section overline with optional icon. */
686
+ declare const ContentLabel: react.ForwardRefExoticComponent<ContentLabelProps & react.RefAttributes<HTMLSpanElement>>;
687
+
632
688
  type CrossRefKind = "artifact" | "pr" | "commit" | "doc" | "wiki";
633
689
  /** Structured preview rendered inside the hover card. */
634
690
  interface CrossRefPreview {
@@ -674,50 +730,6 @@ interface CrossRefBadgeProps {
674
730
  */
675
731
  declare const CrossRefBadge: react.ForwardRefExoticComponent<CrossRefBadgeProps & react.RefAttributes<HTMLSpanElement>>;
676
732
 
677
- interface CodeViewerProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
678
- code: string;
679
- title?: ReactNode;
680
- language?: string;
681
- lineNumbers?: boolean;
682
- wrap?: boolean;
683
- maxHeight?: number;
684
- dark?: boolean;
685
- onCopied?: (value: string) => void;
686
- }
687
- /**
688
- * Klun UI CodeViewer — read-only monospace block for error stacks, config, snippets.
689
- * Dark surface, horizontal scroll, optional line numbers, copy button, max-height inner scroll.
690
- */
691
- declare const CodeViewer: react.ForwardRefExoticComponent<CodeViewerProps & react.RefAttributes<HTMLDivElement>>;
692
- type LogLevel = "error" | "warn" | "warning" | "info" | "debug" | "success";
693
- interface LogLine {
694
- ts?: string;
695
- level?: LogLevel | string;
696
- text: string;
697
- }
698
- interface LogViewerProps extends HTMLAttributes<HTMLDivElement> {
699
- lines: (string | LogLine)[];
700
- maxHeight?: number;
701
- showTimestamp?: boolean;
702
- dark?: boolean;
703
- onCopied?: (value: string) => void;
704
- }
705
- /**
706
- * Klun UI LogViewer — read-only log stream with optional per-line level coloring + timestamps.
707
- * `lines`: string[] OR [{ ts?, level?, text }]. Monospace, dark, inner-scroll.
708
- */
709
- declare const LogViewer: react.ForwardRefExoticComponent<LogViewerProps & react.RefAttributes<HTMLDivElement>>;
710
-
711
- type ContentLabelColor = "gray" | "blue" | "green" | "orange" | "purple";
712
- interface ContentLabelProps extends HTMLAttributes<HTMLSpanElement> {
713
- icon?: ReactNode;
714
- color?: ContentLabelColor;
715
- size?: "sm" | "md";
716
- children?: ReactNode;
717
- }
718
- /** Klun UI ContentLabel — tracked uppercase section overline with optional icon. */
719
- declare const ContentLabel: react.ForwardRefExoticComponent<ContentLabelProps & react.RefAttributes<HTMLSpanElement>>;
720
-
721
733
  interface DescriptionItem {
722
734
  label: ReactNode;
723
735
  children: ReactNode;
@@ -960,6 +972,22 @@ interface ExpiryCountdownProps extends HTMLAttributes<HTMLSpanElement> {
960
972
  */
961
973
  declare const ExpiryCountdown: react.ForwardRefExoticComponent<ExpiryCountdownProps & react.RefAttributes<HTMLSpanElement>>;
962
974
 
975
+ type StatCardTint = "feature" | "success" | "warning" | "information" | "error";
976
+ interface StatCardProps extends HTMLAttributes<HTMLDivElement> {
977
+ label?: ReactNode;
978
+ value?: ReactNode;
979
+ delta?: ReactNode;
980
+ trend?: "up" | "down";
981
+ icon?: ReactNode;
982
+ tint?: StatCardTint;
983
+ }
984
+ /**
985
+ * Klun UI StatCard — KPI metric card with a tinted icon tile, a value and an
986
+ * optional up/down delta pill. For a bare metric without the card surface, see
987
+ * `Statistic`.
988
+ */
989
+ declare const StatCard: react.ForwardRefExoticComponent<StatCardProps & react.RefAttributes<HTMLDivElement>>;
990
+
963
991
  interface StatisticProps extends Omit<HTMLAttributes<HTMLDivElement>, "prefix"> {
964
992
  label?: ReactNode;
965
993
  value: ReactNode;
@@ -978,22 +1006,6 @@ interface StatisticProps extends Omit<HTMLAttributes<HTMLDivElement>, "prefix">
978
1006
  */
979
1007
  declare const Statistic: react.ForwardRefExoticComponent<StatisticProps & react.RefAttributes<HTMLDivElement>>;
980
1008
 
981
- type StatCardTint = "feature" | "success" | "warning" | "information" | "error";
982
- interface StatCardProps extends HTMLAttributes<HTMLDivElement> {
983
- label?: ReactNode;
984
- value?: ReactNode;
985
- delta?: ReactNode;
986
- trend?: "up" | "down";
987
- icon?: ReactNode;
988
- tint?: StatCardTint;
989
- }
990
- /**
991
- * Klun UI StatCard — KPI metric card with a tinted icon tile, a value and an
992
- * optional up/down delta pill. For a bare metric without the card surface, see
993
- * `Statistic`.
994
- */
995
- declare const StatCard: react.ForwardRefExoticComponent<StatCardProps & react.RefAttributes<HTMLDivElement>>;
996
-
997
1009
  type StatusTone = "ok" | "warn" | "err" | "info" | "neutral" | "busy" | "feature" | "verified" | "stable" | "away" | "highlighted";
998
1010
  interface StatusBadgeProps extends Omit<HTMLAttributes<HTMLSpanElement>, "color"> {
999
1011
  status: string;
@@ -1369,38 +1381,6 @@ interface AlertProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
1369
1381
  */
1370
1382
  declare const Alert: react.ForwardRefExoticComponent<AlertProps & react.RefAttributes<HTMLDivElement>>;
1371
1383
 
1372
- interface EmptyStateProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
1373
- icon?: ReactNode;
1374
- title?: ReactNode;
1375
- description?: ReactNode;
1376
- action?: ReactNode;
1377
- }
1378
- /**
1379
- * Klun UI EmptyState — a centered placeholder for empty lists/views: an optional
1380
- * icon medallion, a title, a description and an action slot. For a full-page
1381
- * outcome (success / 404 / 403 …), use `Result`.
1382
- */
1383
- declare const EmptyState: react.ForwardRefExoticComponent<EmptyStateProps & react.RefAttributes<HTMLDivElement>>;
1384
-
1385
- type ResultStatus = "success" | "error" | "warning" | "info" | "404" | "403" | "500";
1386
- interface ResultProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
1387
- status?: ResultStatus;
1388
- /** Custom icon overriding the status preset. */
1389
- icon?: ReactNode;
1390
- title?: ReactNode;
1391
- subtitle?: ReactNode;
1392
- /** Action buttons row. */
1393
- extra?: ReactNode;
1394
- children?: ReactNode;
1395
- }
1396
- /**
1397
- * Klun UI Result — a full-page outcome screen. Pass a `status` for a preset
1398
- * icon+color (success / error / warning / info / 404 / 403 / 500) or a custom
1399
- * `icon`, with `title`, `subtitle`, an `extra` actions row and optional body
1400
- * `children`.
1401
- */
1402
- declare const Result: react.ForwardRefExoticComponent<ResultProps & react.RefAttributes<HTMLDivElement>>;
1403
-
1404
1384
  type BannerStatus = "information" | "success" | "warning" | "error" | "feature";
1405
1385
  type BannerVariant = "filled" | "lighter";
1406
1386
  interface BannerProps extends HTMLAttributes<HTMLDivElement> {
@@ -1432,6 +1412,19 @@ interface CircularProgressProps extends Omit<HTMLAttributes<HTMLDivElement>, "st
1432
1412
  /** Klun UI CircularProgress — ring progress with optional center label. */
1433
1413
  declare const CircularProgress: react.ForwardRefExoticComponent<CircularProgressProps & react.RefAttributes<HTMLDivElement>>;
1434
1414
 
1415
+ interface EmptyStateProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
1416
+ icon?: ReactNode;
1417
+ title?: ReactNode;
1418
+ description?: ReactNode;
1419
+ action?: ReactNode;
1420
+ }
1421
+ /**
1422
+ * Klun UI EmptyState — a centered placeholder for empty lists/views: an optional
1423
+ * icon medallion, a title, a description and an action slot. For a full-page
1424
+ * outcome (success / 404 / 403 …), use `Result`.
1425
+ */
1426
+ declare const EmptyState: react.ForwardRefExoticComponent<EmptyStateProps & react.RefAttributes<HTMLDivElement>>;
1427
+
1435
1428
  type GaugeBarColor = "gray" | "blue" | "orange" | "red" | "green" | "purple" | "yellow" | "teal" | "sky" | "pink";
1436
1429
  type GaugeBarSize = "sm" | "md" | "lg";
1437
1430
  interface GaugeBarProps extends Omit<HTMLAttributes<HTMLDivElement>, "color"> {
@@ -1555,6 +1548,25 @@ interface ProgressBarProps extends HTMLAttributes<HTMLDivElement> {
1555
1548
  /** Klun UI ProgressBar — horizontal determinate progress track. */
1556
1549
  declare const ProgressBar: react.ForwardRefExoticComponent<ProgressBarProps & react.RefAttributes<HTMLDivElement>>;
1557
1550
 
1551
+ type ResultStatus = "success" | "error" | "warning" | "info" | "404" | "403" | "500";
1552
+ interface ResultProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
1553
+ status?: ResultStatus;
1554
+ /** Custom icon overriding the status preset. */
1555
+ icon?: ReactNode;
1556
+ title?: ReactNode;
1557
+ subtitle?: ReactNode;
1558
+ /** Action buttons row. */
1559
+ extra?: ReactNode;
1560
+ children?: ReactNode;
1561
+ }
1562
+ /**
1563
+ * Klun UI Result — a full-page outcome screen. Pass a `status` for a preset
1564
+ * icon+color (success / error / warning / info / 404 / 403 / 500) or a custom
1565
+ * `icon`, with `title`, `subtitle`, an `extra` actions row and optional body
1566
+ * `children`.
1567
+ */
1568
+ declare const Result: react.ForwardRefExoticComponent<ResultProps & react.RefAttributes<HTMLDivElement>>;
1569
+
1558
1570
  type SegmentedProgressColor = "primary" | "success" | "warning" | "error";
1559
1571
  interface SegmentedProgressProps extends HTMLAttributes<HTMLDivElement> {
1560
1572
  /** Number of filled segments. */
@@ -1762,6 +1774,25 @@ interface CheckboxProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "siz
1762
1774
  * Pass `children` to render a label next to the box. */
1763
1775
  declare const Checkbox: react.ForwardRefExoticComponent<CheckboxProps & react.RefAttributes<HTMLInputElement>>;
1764
1776
 
1777
+ type CheckboxCardAlign = "start" | "center";
1778
+ interface CheckboxCardProps extends Omit<LabelHTMLAttributes<HTMLLabelElement>, "onChange" | "title"> {
1779
+ title?: ReactNode;
1780
+ description?: ReactNode;
1781
+ icon?: ReactNode;
1782
+ checked?: boolean;
1783
+ disabled?: boolean;
1784
+ onChange?: (checked: boolean) => void;
1785
+ /** Vertical alignment of the row. Default `"start"`. */
1786
+ align?: CheckboxCardAlign;
1787
+ children?: ReactNode;
1788
+ }
1789
+ /**
1790
+ * CheckboxCard — selectable bordered card wrapping a checkbox, title,
1791
+ * description and optional leading icon. Use in checkbox-group choice grids.
1792
+ * `ref` forwards to the `<input>`.
1793
+ */
1794
+ declare const CheckboxCard: react.ForwardRefExoticComponent<CheckboxCardProps & react.RefAttributes<HTMLInputElement>>;
1795
+
1765
1796
  interface CheckboxGroupOption {
1766
1797
  label: ReactNode;
1767
1798
  value: string;
@@ -1795,25 +1826,6 @@ interface CheckboxGroupProps {
1795
1826
  */
1796
1827
  declare const CheckboxGroup: react.ForwardRefExoticComponent<CheckboxGroupProps & react.RefAttributes<HTMLDivElement>>;
1797
1828
 
1798
- type CheckboxCardAlign = "start" | "center";
1799
- interface CheckboxCardProps extends Omit<LabelHTMLAttributes<HTMLLabelElement>, "onChange" | "title"> {
1800
- title?: ReactNode;
1801
- description?: ReactNode;
1802
- icon?: ReactNode;
1803
- checked?: boolean;
1804
- disabled?: boolean;
1805
- onChange?: (checked: boolean) => void;
1806
- /** Vertical alignment of the row. Default `"start"`. */
1807
- align?: CheckboxCardAlign;
1808
- children?: ReactNode;
1809
- }
1810
- /**
1811
- * CheckboxCard — selectable bordered card wrapping a checkbox, title,
1812
- * description and optional leading icon. Use in checkbox-group choice grids.
1813
- * `ref` forwards to the `<input>`.
1814
- */
1815
- declare const CheckboxCard: react.ForwardRefExoticComponent<CheckboxCardProps & react.RefAttributes<HTMLInputElement>>;
1816
-
1817
1829
  type ColorDotSize = "sm" | "md" | "lg";
1818
1830
  interface ColorDotProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, "color"> {
1819
1831
  /** Any CSS color or token var() for the swatch fill. Default `var(--klun-primary-base)`. */
@@ -1949,27 +1961,6 @@ interface DatePickerProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange
1949
1961
  */
1950
1962
  declare const DatePicker: react.ForwardRefExoticComponent<DatePickerProps & react.RefAttributes<HTMLDivElement>>;
1951
1963
 
1952
- interface DateTimePickerProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "style"> {
1953
- value?: Date | string | null;
1954
- onChange?: (date: Date) => void;
1955
- /** Render the bare inline calendar + time row instead of an input. */
1956
- inline?: boolean;
1957
- /** Trigger placeholder shown when nothing is selected. */
1958
- placeholder?: string;
1959
- /** Intl options used to format the trigger label. */
1960
- format?: Intl.DateTimeFormatOptions;
1961
- /** Popover alignment relative to the trigger. Default `"left"`. */
1962
- align?: "left" | "right";
1963
- /** Disable the trigger. */
1964
- disabled?: boolean;
1965
- style?: CSSProperties;
1966
- }
1967
- /**
1968
- * Klun UI DateTimePicker — an input that opens a calendar + time selector in a
1969
- * popover, producing a single Date. Pass `inline` to render the bare panel.
1970
- */
1971
- declare const DateTimePicker: react.ForwardRefExoticComponent<DateTimePickerProps & react.RefAttributes<HTMLDivElement>>;
1972
-
1973
1964
  interface DateRange {
1974
1965
  start: Date | null;
1975
1966
  end: Date | null;
@@ -1996,6 +1987,27 @@ interface DateRangePickerProps extends Omit<HTMLAttributes<HTMLDivElement>, "onC
1996
1987
  */
1997
1988
  declare const DateRangePicker: react.ForwardRefExoticComponent<DateRangePickerProps & react.RefAttributes<HTMLDivElement>>;
1998
1989
 
1990
+ interface DateTimePickerProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "style"> {
1991
+ value?: Date | string | null;
1992
+ onChange?: (date: Date) => void;
1993
+ /** Render the bare inline calendar + time row instead of an input. */
1994
+ inline?: boolean;
1995
+ /** Trigger placeholder shown when nothing is selected. */
1996
+ placeholder?: string;
1997
+ /** Intl options used to format the trigger label. */
1998
+ format?: Intl.DateTimeFormatOptions;
1999
+ /** Popover alignment relative to the trigger. Default `"left"`. */
2000
+ align?: "left" | "right";
2001
+ /** Disable the trigger. */
2002
+ disabled?: boolean;
2003
+ style?: CSSProperties;
2004
+ }
2005
+ /**
2006
+ * Klun UI DateTimePicker — an input that opens a calendar + time selector in a
2007
+ * popover, producing a single Date. Pass `inline` to render the bare panel.
2008
+ */
2009
+ declare const DateTimePicker: react.ForwardRefExoticComponent<DateTimePickerProps & react.RefAttributes<HTMLDivElement>>;
2010
+
1999
2011
  type DigitInputSize = "small" | "medium" | "large";
2000
2012
  interface DigitInputProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "style"> {
2001
2013
  length?: number;
@@ -2222,7 +2234,7 @@ interface InlineSelectProps extends Omit<SelectHTMLAttributes<HTMLSelectElement>
2222
2234
  */
2223
2235
  declare const InlineSelect: react.ForwardRefExoticComponent<InlineSelectProps & react.RefAttributes<HTMLSelectElement>>;
2224
2236
 
2225
- type FieldSize = "small" | "medium" | "large";
2237
+ type FieldSize = "xsmall" | "small" | "medium" | "large";
2226
2238
  interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "size"> {
2227
2239
  /** Default `"medium"`. */
2228
2240
  size?: FieldSize;
@@ -2356,7 +2368,7 @@ interface RichEditorToolbarProps extends HTMLAttributes<HTMLDivElement> {
2356
2368
  declare const RichEditorToolbar: react.ForwardRefExoticComponent<RichEditorToolbarProps & react.RefAttributes<HTMLDivElement>>;
2357
2369
 
2358
2370
  interface SelectProps extends Omit<SelectHTMLAttributes<HTMLSelectElement>, "size" | "style"> {
2359
- size?: "small" | "medium" | "large";
2371
+ size?: "xsmall" | "small" | "medium" | "large";
2360
2372
  placeholder?: string;
2361
2373
  leadingIcon?: ReactNode;
2362
2374
  error?: boolean;
@@ -2435,7 +2447,7 @@ interface SwitchProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "onCha
2435
2447
  /** Klun UI Switch — on/off toggle. */
2436
2448
  declare const Switch: react.ForwardRefExoticComponent<SwitchProps & react.RefAttributes<HTMLInputElement>>;
2437
2449
 
2438
- type TextareaSize = "small" | "medium" | "large";
2450
+ type TextareaSize = "xsmall" | "small" | "medium" | "large";
2439
2451
  interface TextareaProps extends Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, "style"> {
2440
2452
  error?: boolean;
2441
2453
  disabled?: boolean;
@@ -2471,6 +2483,32 @@ interface CardProps extends HTMLAttributes<HTMLDivElement> {
2471
2483
  /** Card — elevated/outlined surface container. */
2472
2484
  declare const Card: react.ForwardRefExoticComponent<CardProps & react.RefAttributes<HTMLDivElement>>;
2473
2485
 
2486
+ type FlexGap = "small" | "middle" | "large";
2487
+ interface FlexProps extends HTMLAttributes<HTMLElement> {
2488
+ /** Lay children out in a column (`flex-direction: column`). Default `false`. */
2489
+ vertical?: boolean;
2490
+ /** `flex-wrap`. A boolean is accepted for convenience (`true` → `wrap`). Default `nowrap`. */
2491
+ wrap?: CSSProperties["flexWrap"] | boolean;
2492
+ /** `justify-content`. Default `normal`. */
2493
+ justify?: CSSProperties["justifyContent"];
2494
+ /** `align-items`. Default `normal`. */
2495
+ align?: CSSProperties["alignItems"];
2496
+ /** `flex` shorthand. Default `normal`. */
2497
+ flex?: CSSProperties["flex"];
2498
+ /** Gap between items: a preset (`small`/`middle`/`large`), a number (px) or any CSS length. */
2499
+ gap?: FlexGap | number | string;
2500
+ /** Element/component to render. Default `"div"`. */
2501
+ component?: ElementType;
2502
+ children?: ReactNode;
2503
+ }
2504
+ /**
2505
+ * Flex — flexbox layout primitive. Mirrors Ant Design's `<Flex>`:
2506
+ * `vertical`, `wrap`, `justify`, `align`, `flex`, preset `gap` and a
2507
+ * polymorphic `component`. For evenly-gapped stacks of fixed items prefer
2508
+ * `Space`; for two-dimensional layouts use `Grid`.
2509
+ */
2510
+ declare const Flex: react.ForwardRefExoticComponent<FlexProps & react.RefAttributes<HTMLElement>>;
2511
+
2474
2512
  type Breakpoint = "xs" | "sm" | "md" | "lg" | "xl" | "xxl";
2475
2513
  /** A scalar value, or per-breakpoint values (`{ xs, sm, md, lg, xl, xxl }`). */
2476
2514
  type Responsive<T> = T | Partial<Record<Breakpoint, T>>;
@@ -2651,32 +2689,6 @@ interface SpaceProps extends HTMLAttributes<HTMLDivElement> {
2651
2689
  /** Klun UI Space — inline spacing primitive with token-based gap. */
2652
2690
  declare const Space: react.ForwardRefExoticComponent<SpaceProps & react.RefAttributes<HTMLDivElement>>;
2653
2691
 
2654
- type FlexGap = "small" | "middle" | "large";
2655
- interface FlexProps extends HTMLAttributes<HTMLElement> {
2656
- /** Lay children out in a column (`flex-direction: column`). Default `false`. */
2657
- vertical?: boolean;
2658
- /** `flex-wrap`. A boolean is accepted for convenience (`true` → `wrap`). Default `nowrap`. */
2659
- wrap?: CSSProperties["flexWrap"] | boolean;
2660
- /** `justify-content`. Default `normal`. */
2661
- justify?: CSSProperties["justifyContent"];
2662
- /** `align-items`. Default `normal`. */
2663
- align?: CSSProperties["alignItems"];
2664
- /** `flex` shorthand. Default `normal`. */
2665
- flex?: CSSProperties["flex"];
2666
- /** Gap between items: a preset (`small`/`middle`/`large`), a number (px) or any CSS length. */
2667
- gap?: FlexGap | number | string;
2668
- /** Element/component to render. Default `"div"`. */
2669
- component?: ElementType;
2670
- children?: ReactNode;
2671
- }
2672
- /**
2673
- * Flex — flexbox layout primitive. Mirrors Ant Design's `<Flex>`:
2674
- * `vertical`, `wrap`, `justify`, `align`, `flex`, preset `gap` and a
2675
- * polymorphic `component`. For evenly-gapped stacks of fixed items prefer
2676
- * `Space`; for two-dimensional layouts use `Grid`.
2677
- */
2678
- declare const Flex: react.ForwardRefExoticComponent<FlexProps & react.RefAttributes<HTMLElement>>;
2679
-
2680
2692
  type SplitterLayout = "horizontal" | "vertical";
2681
2693
  interface SplitterPanelProps extends HTMLAttributes<HTMLDivElement> {
2682
2694
  /** Initial size — number (px) or string ("30%" / "200px"). */
@@ -2726,46 +2738,6 @@ interface BreadcrumbProps extends HTMLAttributes<HTMLElement> {
2726
2738
  /** Klun UI Breadcrumb — path navigation with chevron separators. */
2727
2739
  declare const Breadcrumb: react.ForwardRefExoticComponent<BreadcrumbProps & react.RefAttributes<HTMLElement>>;
2728
2740
 
2729
- interface PageHeaderTab {
2730
- key: string;
2731
- label: ReactNode;
2732
- /** Reserved for future use — Tabs does not yet render a disabled state. */
2733
- disabled?: boolean;
2734
- }
2735
- interface PageHeaderProps extends Omit<HTMLAttributes<HTMLElement>, "title" | "onSelect"> {
2736
- /** Primary heading, e.g. "#1284 · Login returns 500". */
2737
- title: ReactNode;
2738
- /** Leading node before the title (artifact-type icon / avatar). */
2739
- avatar?: ReactNode;
2740
- /** Inline area right of the title: StatusBadge, CrossRefBadge, severity Chip… */
2741
- tags?: ReactNode;
2742
- /** Sub-line under the title (assignee · time · milestone). */
2743
- subtitle?: ReactNode;
2744
- /** Breadcrumb rail above the title (pass a <Breadcrumb/>). */
2745
- breadcrumb?: ReactNode;
2746
- /** Show a back arrow and call this on click. */
2747
- onBack?: () => void;
2748
- /** Right-aligned action area (Button group). */
2749
- extra?: ReactNode;
2750
- /** Sub-navigation tabs docked at the bottom edge; controlled. */
2751
- tabs?: PageHeaderTab[];
2752
- activeTab?: string;
2753
- onTabChange?: (key: string) => void;
2754
- /** Stick to the top of a scrolling detail page. Default false. */
2755
- sticky?: boolean;
2756
- /** Bottom hairline separator. Default true. */
2757
- bordered?: boolean;
2758
- /** Custom band between the title row and the tabs (e.g. a description). */
2759
- children?: ReactNode;
2760
- }
2761
- /**
2762
- * PageHeader — the standard header band for a detail / secondary page: optional
2763
- * breadcrumb + back, a title with inline tags and a sub-line, right-aligned
2764
- * actions, and an optional docked Tabs bar. Composes the library's own
2765
- * `Button` (back) and `Tabs` (sub-nav) rather than re-implementing them.
2766
- */
2767
- declare const PageHeader: react.ForwardRefExoticComponent<PageHeaderProps & react.RefAttributes<HTMLElement>>;
2768
-
2769
2741
  type DividerVariant = "line" | "text" | "left" | "right";
2770
2742
  interface DividerProps extends HTMLAttributes<HTMLElement> {
2771
2743
  variant?: DividerVariant;
@@ -2824,6 +2796,46 @@ interface MenuProps extends Omit<HTMLAttributes<HTMLElement>, "onSelect"> {
2824
2796
  */
2825
2797
  declare const Menu: react.ForwardRefExoticComponent<MenuProps & react.RefAttributes<HTMLElement>>;
2826
2798
 
2799
+ interface PageHeaderTab {
2800
+ key: string;
2801
+ label: ReactNode;
2802
+ /** Reserved for future use — Tabs does not yet render a disabled state. */
2803
+ disabled?: boolean;
2804
+ }
2805
+ interface PageHeaderProps extends Omit<HTMLAttributes<HTMLElement>, "title" | "onSelect"> {
2806
+ /** Primary heading, e.g. "#1284 · Login returns 500". */
2807
+ title: ReactNode;
2808
+ /** Leading node before the title (artifact-type icon / avatar). */
2809
+ avatar?: ReactNode;
2810
+ /** Inline area right of the title: StatusBadge, CrossRefBadge, severity Chip… */
2811
+ tags?: ReactNode;
2812
+ /** Sub-line under the title (assignee · time · milestone). */
2813
+ subtitle?: ReactNode;
2814
+ /** Breadcrumb rail above the title (pass a <Breadcrumb/>). */
2815
+ breadcrumb?: ReactNode;
2816
+ /** Show a back arrow and call this on click. */
2817
+ onBack?: () => void;
2818
+ /** Right-aligned action area (Button group). */
2819
+ extra?: ReactNode;
2820
+ /** Sub-navigation tabs docked at the bottom edge; controlled. */
2821
+ tabs?: PageHeaderTab[];
2822
+ activeTab?: string;
2823
+ onTabChange?: (key: string) => void;
2824
+ /** Stick to the top of a scrolling detail page. Default false. */
2825
+ sticky?: boolean;
2826
+ /** Bottom hairline separator. Default true. */
2827
+ bordered?: boolean;
2828
+ /** Custom band between the title row and the tabs (e.g. a description). */
2829
+ children?: ReactNode;
2830
+ }
2831
+ /**
2832
+ * PageHeader — the standard header band for a detail / secondary page: optional
2833
+ * breadcrumb + back, a title with inline tags and a sub-line, right-aligned
2834
+ * actions, and an optional docked Tabs bar. Composes the library's own
2835
+ * `Button` (back) and `Tabs` (sub-nav) rather than re-implementing them.
2836
+ */
2837
+ declare const PageHeader: react.ForwardRefExoticComponent<PageHeaderProps & react.RefAttributes<HTMLElement>>;
2838
+
2827
2839
  interface PaginationProps extends Omit<HTMLAttributes<HTMLElement>, "onChange"> {
2828
2840
  page?: number;
2829
2841
  total?: number;
@@ -3197,4 +3209,4 @@ interface PopoverProps extends Omit<HTMLAttributes<HTMLSpanElement>, "children">
3197
3209
  */
3198
3210
  declare const Popover: react.ForwardRefExoticComponent<PopoverProps & react.RefAttributes<HTMLSpanElement>>;
3199
3211
 
3200
- export { type Accent, Accordion, type AccordionItem, type AccordionProps, Alert, type AlertProps, type AlertStatus, type AlertVariant, AutoComplete, type AutoCompleteOption, type AutoCompleteProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type AvatarStatus, Badge, type BadgeColor, type BadgeProps, type BadgeVariant, Banner, type BannerProps, type BannerStatus, type BannerVariant, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, type Breakpoint, BulkAction, BulkActionBar, type BulkActionBarProps, type BulkActionProps, Button, type ButtonAppearance, ButtonGroup, type ButtonGroupItem, type ButtonGroupProps, type ButtonGroupSize, type ButtonKind, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardProps, type CardVariant, Carousel, type CarouselProps, Cascader, type CascaderOption, type CascaderProps, CharacterCounter, type CharacterCounterProps, ChartLegend, type ChartLegendItem, type ChartLegendProps, ChartTooltip, type ChartTooltipProps, type ChartTooltipRow, Checkbox, CheckboxCard, type CheckboxCardAlign, type CheckboxCardProps, CheckboxGroup, type CheckboxGroupOption, type CheckboxGroupProps, type CheckboxProps, type CheckboxSize, Chip, type ChipColor, type ChipProps, CircularProgress, type CircularProgressColor, type CircularProgressProps, type ClassValue, CodeViewer, type CodeViewerProps, Col, type ColProps, type ColSize, Collapse, type CollapseProps, ColorDot, type ColorDotProps, type ColorDotSize, ColorPicker, type ColorPickerProps, ColorSlider, type ColorSliderProps, type ColorSliderSize, type CommandGroup, type CommandItem, CommandMenu, type CommandMenuProps, type CompactButtonAppearance, type CompactButtonProps, type CompactButtonSize, CompactSelect, type CompactSelectAppearance, CompactSelectForInput, type CompactSelectForInputProps, type CompactSelectForInputSide, type CompactSelectForInputSize, type CompactSelectProps, type CompactSelectSize, type ComponentSize, ConfigProvider, type ConfigProviderProps, Confirm, type ConfirmIntent, type ConfirmOptions, type ConfirmRequireInput, type ConfirmResult, ContentLabel, type ContentLabelColor, type ContentLabelProps, ContextMenu, type ContextMenuItem, type ContextMenuProps, type ContextMenuState, CopyButton, type CopyButtonProps, type CopyButtonSize, type CopyButtonVariant, type CountdownResult, CounterInput, type CounterInputProps, type CounterInputSize, CrossRefBadge, type CrossRefBadgeProps, type CrossRefKind, type CrossRefPreview, DatePicker, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, DateTimePicker, type DateTimePickerProps, type DefaultButtonProps, type DescriptionItem, Descriptions, type DescriptionsLayout, type DescriptionsProps, type DescriptionsSize, type DescriptionsVariant, type DiffHunk, type DiffLine, type DiffLineType, type DiffMode, type DiffSide, DiffViewer, type DiffViewerProps, DigitInput, type DigitInputProps, type DigitInputSize, type Direction, Divider, type DividerProps, type DividerVariant, type DotTone, Drawer, type DrawerProps, Dropdown, type DropdownItem, type DropdownProps, EmptyState, type EmptyStateProps, ExpiryCountdown, type ExpiryCountdownProps, type FancyButtonProps, type FancyButtonSize, type FancyButtonVariant, type FieldSize, FileUpload, type FileUploadProps, Flex, type FlexGap, type FlexProps, Form, type FormInstance, FormItem, type FormItemProps, FormList, type FormListField, type FormListOperations, type FormListProps, type FormProps, type FormRule, Format, type FormatApi, GaugeBar, type GaugeBarColor, type GaugeBarProps, type GaugeBarSize, Grid, type Gutter, Hint, type HintProps, HorizontalFilter, type HorizontalFilterItem, type HorizontalFilterProps, type HorizontalFilterSize, type ImageItem, ImageUpload, type ImageUploadProps, type ImageUploadShape, ImageViewer, type ImageViewerProps, InlineInput, type InlineInputProps, type InlineInputTone, type InlineInputWeight, InlineSelect, type InlineSelectProps, type InlineSelectTone, type InlineSelectWeight, Input, type InputProps, Kbd, type KbdProps, KeyIcon, type KeyIconAppearance, type KeyIconColor, type KeyIconProps, type KeyIconSize, type KlunConfig, Label, type LabelProps, Layout, LayoutContent, type LayoutContentProps, LayoutFooter, type LayoutFooterProps, LayoutHeader, type LayoutHeaderProps, type LayoutProps, LayoutSider, type LinkButtonProps, type LinkButtonSize, type LinkButtonVariant, List, ListItem, type ListItemProps, type ListProps, LiveDot, type LiveDotProps, type Locale, type LogLevel, type LogLine, LogViewer, type LogViewerProps, Markdown, type MarkdownProps, Masonry, type MasonryBreakpoints, type MasonryColumns, type MasonryGutter, type MasonryProps, Menu, type MenuItem, type MenuProps, Message, type MessageApi, type MessageOptions, type MessageProps, type MessageStatus, Modal, type ModalProps, Money, type MoneyOptions, type MoneyPeriod, type MoneyProps, type MoneyResult, type MoneySize, type MoneyTone, type NamePath, Notification, type NotificationApi, type NotificationOptions, type NotificationPlacement, type NotificationProps, type NotificationStatus, PageHeader, type PageHeaderProps, type PageHeaderTab, Pagination, type PaginationProps, PasswordStrength, type PasswordStrengthLevel, type PasswordStrengthProps, type PctOptions, Popconfirm, type PopconfirmProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, type ProgressColor, Radio, RadioCard, type RadioCardAlign, type RadioCardProps, type RadioProps, type RadioSize, type Radius, RangeSlider, type RangeSliderProps, type RangeSliderSize, Rating, type RatingProps, type RelTimeOptions, RelativeTime, type RelativeTimeProps, type Responsive, Result, type ResultProps, type ResultStatus, RichEditorToolbar, type RichEditorToolbarProps, Row, type RowAlign, type RowJustify, type RowProps, type Rules, type ScreenMap, type SegmentItem, SegmentedControl, type SegmentedControlProps, SegmentedProgress, type SegmentedProgressColor, type SegmentedProgressProps, Select, SelectMenu, type SelectMenuOption, type SelectMenuProps, type SelectMenuSize, type SelectProps, type SiderProps, type SiderTheme, type SizeOptions, Skeleton, type SkeletonProps, Slider, type SliderProps, type SliderSize, type SortDir, Space, type SpaceProps, type SpaceSize, Spinner, type SpinnerProps, type SpinnerSize, Splitter, type SplitterLayout, SplitterPanel, type SplitterPanelProps, type SplitterProps, StatCard, type StatCardProps, type StatCardTint, Statistic, type StatisticProps, StatusBadge, type StatusBadgeProps, StatusDot, type StatusDotProps, type StatusTone, type Step, StepIndicator, type StepIndicatorProps, Switch, type SwitchProps, type SwitchSize, type TabItem, Table, type TableColumn, type TableMenuItem, type TableProps, type TableSort, Tabs, type TabsProps, type TabsVariant, Tag, type TagProps, Textarea, type TextareaProps, type TextareaSize, type Theme, TimePicker, type TimePickerProps, Timeline, type TimelineItem, type TimelineProps, Toast, type ToastAction, type ToastOptions, type ToastPosition, type ToastPromiseMessages, type ToastProps, type ToastStatus, Toaster, type ToasterProps, Tooltip, type TooltipProps, Tree, type TreeNode, type TreeProps, type UseFormOptions, type UseMessageDefaults, type UseNotificationDefaults, type WikiLinkResolver, Wizard, type WizardProps, type WizardStep, arSA, cx, deDE, enUS, esES, fmt, frFR, idID, itIT, jaJP, koKR, locales, nlNL, parsePatch, plPL, primaryColorVars, ptBR, renderMarkdown, ruRU, toast, trTR, useBreakpoint, useConfig, useContextMenu, useForm, useLocale, useMappedSize, useMessage, useNotification, useSize, viVN, zhCN, zhTW };
3212
+ export { type Accent, Accordion, type AccordionItem, type AccordionProps, Alert, type AlertProps, type AlertStatus, type AlertVariant, AutoComplete, type AutoCompleteOption, type AutoCompleteProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type AvatarStatus, Badge, type BadgeColor, type BadgeProps, type BadgeVariant, Banner, type BannerProps, type BannerStatus, type BannerVariant, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, type Breakpoint, BulkAction, BulkActionBar, type BulkActionBarProps, type BulkActionProps, Button, type ButtonAppearance, ButtonGroup, type ButtonGroupItem, type ButtonGroupProps, type ButtonGroupSize, type ButtonKind, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardProps, type CardVariant, Carousel, type CarouselProps, Cascader, type CascaderOption, type CascaderProps, CharacterCounter, type CharacterCounterProps, ChartLegend, type ChartLegendItem, type ChartLegendProps, ChartTooltip, type ChartTooltipProps, type ChartTooltipRow, Checkbox, CheckboxCard, type CheckboxCardAlign, type CheckboxCardProps, CheckboxGroup, type CheckboxGroupOption, type CheckboxGroupProps, type CheckboxProps, type CheckboxSize, Chip, type ChipColor, type ChipProps, CircularProgress, type CircularProgressColor, type CircularProgressProps, type ClassValue, CodeViewer, type CodeViewerProps, Col, type ColProps, type ColSize, Collapse, type CollapseProps, ColorDot, type ColorDotProps, type ColorDotSize, ColorPicker, type ColorPickerProps, ColorSlider, type ColorSliderProps, type ColorSliderSize, type CommandGroup, type CommandItem, CommandMenu, type CommandMenuProps, type CompactButtonAppearance, type CompactButtonProps, type CompactButtonSize, CompactSelect, type CompactSelectAppearance, CompactSelectForInput, type CompactSelectForInputProps, type CompactSelectForInputSide, type CompactSelectForInputSize, type CompactSelectProps, type CompactSelectSize, type ComponentSize, ConfigProvider, type ConfigProviderProps, Confirm, type ConfirmIntent, type ConfirmOptions, type ConfirmRequireInput, type ConfirmResult, ContentLabel, type ContentLabelColor, type ContentLabelProps, ContextMenu, type ContextMenuItem, type ContextMenuProps, type ContextMenuState, CopyButton, type CopyButtonProps, type CopyButtonSize, type CopyButtonVariant, type CountdownResult, CounterInput, type CounterInputProps, type CounterInputSize, CrossRefBadge, type CrossRefBadgeProps, type CrossRefKind, type CrossRefPreview, DatePicker, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, DateTimePicker, type DateTimePickerProps, type DefaultButtonProps, type DescriptionItem, Descriptions, type DescriptionsLayout, type DescriptionsProps, type DescriptionsSize, type DescriptionsVariant, type DiffHunk, type DiffLine, type DiffLineType, type DiffMode, type DiffSide, DiffViewer, type DiffViewerProps, DigitInput, type DigitInputProps, type DigitInputSize, type Direction, Divider, type DividerProps, type DividerVariant, type DotTone, Drawer, type DrawerPlacement, type DrawerProps, Dropdown, type DropdownItem, type DropdownProps, EmptyState, type EmptyStateProps, ExpiryCountdown, type ExpiryCountdownProps, type FancyButtonProps, type FancyButtonSize, type FancyButtonVariant, type FieldSize, FileUpload, type FileUploadProps, Flex, type FlexGap, type FlexProps, Form, type FormInstance, FormItem, type FormItemProps, FormList, type FormListField, type FormListOperations, type FormListProps, type FormProps, type FormRule, Format, type FormatApi, GaugeBar, type GaugeBarColor, type GaugeBarProps, type GaugeBarSize, Grid, type Gutter, Hint, type HintProps, HorizontalFilter, type HorizontalFilterItem, type HorizontalFilterProps, type HorizontalFilterSize, type ImageItem, ImageUpload, type ImageUploadProps, type ImageUploadShape, ImageViewer, type ImageViewerProps, InlineInput, type InlineInputProps, type InlineInputTone, type InlineInputWeight, InlineSelect, type InlineSelectProps, type InlineSelectTone, type InlineSelectWeight, Input, type InputProps, Kbd, type KbdProps, KeyIcon, type KeyIconAppearance, type KeyIconColor, type KeyIconProps, type KeyIconSize, type KlunConfig, Label, type LabelProps, Layout, LayoutContent, type LayoutContentProps, LayoutFooter, type LayoutFooterProps, LayoutHeader, type LayoutHeaderProps, type LayoutProps, LayoutSider, type LinkButtonProps, type LinkButtonSize, type LinkButtonVariant, List, ListItem, type ListItemProps, type ListProps, LiveDot, type LiveDotProps, type Locale, type LogLevel, type LogLine, LogViewer, type LogViewerProps, Markdown, type MarkdownProps, Masonry, type MasonryBreakpoints, type MasonryColumns, type MasonryGutter, type MasonryProps, Menu, type MenuItem, type MenuProps, Message, type MessageApi, type MessageOptions, type MessageProps, type MessageStatus, Modal, type ModalProps, Money, type MoneyOptions, type MoneyPeriod, type MoneyProps, type MoneyResult, type MoneySize, type MoneyTone, type NamePath, Notification, type NotificationApi, type NotificationOptions, type NotificationPlacement, type NotificationProps, type NotificationStatus, PageHeader, type PageHeaderProps, type PageHeaderTab, Pagination, type PaginationProps, PasswordStrength, type PasswordStrengthLevel, type PasswordStrengthProps, type PctOptions, Popconfirm, type PopconfirmProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, type ProgressColor, Radio, RadioCard, type RadioCardAlign, type RadioCardProps, type RadioProps, type RadioSize, type Radius, RangeSlider, type RangeSliderProps, type RangeSliderSize, Rating, type RatingProps, type RelTimeOptions, RelativeTime, type RelativeTimeProps, type Responsive, Result, type ResultProps, type ResultStatus, RichEditorToolbar, type RichEditorToolbarProps, Row, type RowAlign, type RowJustify, type RowProps, type Rules, type ScreenMap, type SegmentItem, SegmentedControl, type SegmentedControlProps, SegmentedProgress, type SegmentedProgressColor, type SegmentedProgressProps, Select, SelectMenu, type SelectMenuOption, type SelectMenuProps, type SelectMenuSize, type SelectProps, type SiderProps, type SiderTheme, type SizeOptions, Skeleton, type SkeletonProps, Slider, type SliderProps, type SliderSize, type SortDir, Space, type SpaceProps, type SpaceSize, Spinner, type SpinnerProps, type SpinnerSize, Splitter, type SplitterLayout, SplitterPanel, type SplitterPanelProps, type SplitterProps, StatCard, type StatCardProps, type StatCardTint, Statistic, type StatisticProps, StatusBadge, type StatusBadgeProps, StatusDot, type StatusDotProps, type StatusTone, type Step, StepIndicator, type StepIndicatorProps, Switch, type SwitchProps, type SwitchSize, type TabItem, Table, type TableColumn, type TableMenuItem, type TableProps, type TableSort, Tabs, type TabsProps, type TabsVariant, Tag, type TagProps, Textarea, type TextareaProps, type TextareaSize, type Theme, TimePicker, type TimePickerProps, Timeline, type TimelineItem, type TimelineProps, Toast, type ToastAction, type ToastOptions, type ToastPosition, type ToastPromiseMessages, type ToastProps, type ToastStatus, Toaster, type ToasterProps, Tooltip, type TooltipProps, Tree, type TreeNode, type TreeProps, type UseFormOptions, type UseMessageDefaults, type UseNotificationDefaults, type WikiLinkResolver, Wizard, type WizardProps, type WizardStep, arSA, cx, deDE, enUS, esES, fmt, frFR, idID, itIT, jaJP, koKR, locales, nlNL, parsePatch, plPL, primaryColorVars, ptBR, renderMarkdown, ruRU, toast, trTR, useBreakpoint, useConfig, useContextMenu, useForm, useLocale, useMappedSize, useMessage, useNotification, useSize, viVN, zhCN, zhTW };