@smworks-cz/ui-kit 1.4.0 → 1.5.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.mts +385 -92
- package/dist/index.d.ts +385 -92
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
3
|
|
|
3
4
|
type ButtonVariant = 'primary' | 'secondary' | 'outline' | 'danger';
|
|
4
5
|
type ButtonSize = 'sm' | 'md' | 'lg';
|
|
@@ -35,6 +36,13 @@ interface ButtonBaseProps {
|
|
|
35
36
|
* Ukazatel myši je blokován; `onClick` se nevyvolá.
|
|
36
37
|
*/
|
|
37
38
|
loading?: boolean;
|
|
39
|
+
/**
|
|
40
|
+
* Pozice spinneru při loading.
|
|
41
|
+
* - `'replace'` — spinner nahradí ikonu (výchozí)
|
|
42
|
+
* - `'after-text'` — spinner se zobrazí za textem vedle ikony
|
|
43
|
+
* @default 'replace'
|
|
44
|
+
*/
|
|
45
|
+
loadingPosition?: 'replace' | 'after-text';
|
|
38
46
|
/**
|
|
39
47
|
* Roztáhne tlačítko na celou šířku kontejneru.
|
|
40
48
|
*/
|
|
@@ -66,6 +74,81 @@ interface ButtonAsAnchorProps extends ButtonBaseProps, Omit<React.AnchorHTMLAttr
|
|
|
66
74
|
type ButtonProps = ButtonAsButtonProps | ButtonAsAnchorProps;
|
|
67
75
|
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>;
|
|
68
76
|
|
|
77
|
+
interface IconButtonProps {
|
|
78
|
+
/** Ikona. */
|
|
79
|
+
icon: React.ReactNode;
|
|
80
|
+
/** Callback při kliknutí. */
|
|
81
|
+
onClick?: (e: React.MouseEvent) => void;
|
|
82
|
+
/** Povinný aria-label pro přístupnost. */
|
|
83
|
+
label: string;
|
|
84
|
+
/** Varianta. @default 'default' */
|
|
85
|
+
variant?: 'default' | 'ghost' | 'outline' | 'danger';
|
|
86
|
+
/** Velikost. @default 'md' */
|
|
87
|
+
size?: 'xs' | 'sm' | 'md' | 'lg';
|
|
88
|
+
/** Zakáže tlačítko. @default false */
|
|
89
|
+
disabled?: boolean;
|
|
90
|
+
/** Zobrazí spinner. @default false */
|
|
91
|
+
loading?: boolean;
|
|
92
|
+
/** Automaticky obalí tooltipem. */
|
|
93
|
+
tooltip?: string;
|
|
94
|
+
/** Další inline styly. */
|
|
95
|
+
style?: React.CSSProperties;
|
|
96
|
+
/** Dodatečná CSS třída. */
|
|
97
|
+
className?: string;
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* Čtvercové tlačítko pro ikonu.
|
|
101
|
+
*
|
|
102
|
+
* Optimalizované pro akce bez textu — klikací plocha je čtvercová,
|
|
103
|
+
* varianta a velikost se řídí samostatně.
|
|
104
|
+
*
|
|
105
|
+
* @example
|
|
106
|
+
* ```tsx
|
|
107
|
+
* <IconButton icon={<TrashIcon />} label="Smazat" variant="danger" onClick={handleDelete} />
|
|
108
|
+
* <IconButton icon={<PencilIcon />} label="Upravit" tooltip="Upravit záznam" />
|
|
109
|
+
* ```
|
|
110
|
+
*/
|
|
111
|
+
declare const IconButton: React.FC<IconButtonProps>;
|
|
112
|
+
|
|
113
|
+
interface FormFieldProps {
|
|
114
|
+
/** Popisek pole. */
|
|
115
|
+
label?: string | React.ReactNode;
|
|
116
|
+
/** Povinné pole — zobrazí hvězdičku. @default false */
|
|
117
|
+
required?: boolean;
|
|
118
|
+
/** Nápovědný text pod polem. */
|
|
119
|
+
helperText?: string | React.ReactNode;
|
|
120
|
+
/** Chybová zpráva — zobrazí se červeně pod polem. */
|
|
121
|
+
error?: string | React.ReactNode;
|
|
122
|
+
/** Formulářový prvek (input, select, atd.). */
|
|
123
|
+
children: React.ReactNode;
|
|
124
|
+
/** Vodorovný layout (label vlevo, field vpravo). @default false */
|
|
125
|
+
inline?: boolean;
|
|
126
|
+
/** Šířka labelu v inline režimu. @default '120px' */
|
|
127
|
+
labelWidth?: number | string;
|
|
128
|
+
/** Další inline styly. */
|
|
129
|
+
style?: React.CSSProperties;
|
|
130
|
+
/** Dodatečná CSS třída. */
|
|
131
|
+
className?: string;
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* Konzistentní obal pro formulářový prvek.
|
|
135
|
+
*
|
|
136
|
+
* Sjednocuje label, required indikátor, helper text a error message
|
|
137
|
+
* do jednoho komponenty. Podporuje vertikální i inline layout.
|
|
138
|
+
*
|
|
139
|
+
* @example
|
|
140
|
+
* ```tsx
|
|
141
|
+
* <FormField label="Email" required error={errors.email} helperText="Pracovní email">
|
|
142
|
+
* <Input value={email} onChange={setEmail} />
|
|
143
|
+
* </FormField>
|
|
144
|
+
*
|
|
145
|
+
* <FormField label="Jméno" inline labelWidth={140}>
|
|
146
|
+
* <Input value={name} onChange={setName} />
|
|
147
|
+
* </FormField>
|
|
148
|
+
* ```
|
|
149
|
+
*/
|
|
150
|
+
declare const FormField: React.FC<FormFieldProps>;
|
|
151
|
+
|
|
69
152
|
type InputSize = 'sm' | 'md' | 'lg';
|
|
70
153
|
interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size'> {
|
|
71
154
|
/**
|
|
@@ -290,6 +373,26 @@ interface SelectProps {
|
|
|
290
373
|
loading?: boolean;
|
|
291
374
|
/** Označí select jako nevalidní — přijímá `true` nebo textovou chybovou zprávu. */
|
|
292
375
|
error?: boolean | string;
|
|
376
|
+
/**
|
|
377
|
+
* Async vyhledávání — když zadáno, filtrace nejede client-side.
|
|
378
|
+
* Voláno s textem hledání, vrací Promise s novými options.
|
|
379
|
+
*/
|
|
380
|
+
onSearch?: (query: string) => Promise<SelectOption[]>;
|
|
381
|
+
/** Povolí uživateli vytvořit novou hodnotu. @default false */
|
|
382
|
+
creatable?: boolean;
|
|
383
|
+
/** Callback při vytvoření nové hodnoty. */
|
|
384
|
+
onCreateOption?: (label: string) => void;
|
|
385
|
+
/**
|
|
386
|
+
* Způsob zobrazení vybraných hodnot v multiple režimu.
|
|
387
|
+
* - `'inline'` — tagy (výchozí)
|
|
388
|
+
* - `'count'` — "N vybraných"
|
|
389
|
+
* @default 'inline'
|
|
390
|
+
*/
|
|
391
|
+
chipDisplay?: 'inline' | 'count';
|
|
392
|
+
/** Vlastní renderování položky v seznamu. */
|
|
393
|
+
renderOption?: (option: SelectOption, selected: boolean) => React.ReactNode;
|
|
394
|
+
/** Vlastní renderování vybrané hodnoty v triggeru. */
|
|
395
|
+
renderValue?: (option: SelectOption) => React.ReactNode;
|
|
293
396
|
/**
|
|
294
397
|
* Popisek zobrazený nad selectem.
|
|
295
398
|
* Stylizován velkými písmeny dle SM-UI design systému.
|
|
@@ -533,6 +636,15 @@ interface DatePickerProps {
|
|
|
533
636
|
minDate?: Date;
|
|
534
637
|
/** Maximální datum, které lze vybrat. */
|
|
535
638
|
maxDate?: Date;
|
|
639
|
+
/** Předvolby zobrazené v levém sloupci popoveru. */
|
|
640
|
+
presets?: Array<{
|
|
641
|
+
label: string;
|
|
642
|
+
value: Date | [Date, Date];
|
|
643
|
+
}>;
|
|
644
|
+
/** Hlavička sekce předvoleb. @default 'Rychlý výběr' */
|
|
645
|
+
presetsLabel?: string;
|
|
646
|
+
/** Disable specific dates. Vrací true = den je grayed-out. */
|
|
647
|
+
disabledDates?: (date: Date) => boolean;
|
|
536
648
|
/**
|
|
537
649
|
* První den v týdnu (ISO: 1=pondělí).
|
|
538
650
|
* @default 1
|
|
@@ -1316,6 +1428,10 @@ interface TableProps {
|
|
|
1316
1428
|
striped?: boolean;
|
|
1317
1429
|
/** Zvýraznění řádku při najetí myší. @default true */
|
|
1318
1430
|
hoverable?: boolean;
|
|
1431
|
+
/** Callback při kliknutí na řádek. */
|
|
1432
|
+
onRowClick?: (row: any, index: number) => void;
|
|
1433
|
+
/** Render akčních tlačítek v posledním sloupci. */
|
|
1434
|
+
rowActions?: (row: any) => React.ReactNode;
|
|
1319
1435
|
/** Dodatečná CSS třída. */
|
|
1320
1436
|
className?: string;
|
|
1321
1437
|
/** Další inline styly. */
|
|
@@ -1681,11 +1797,37 @@ interface TooltipProps {
|
|
|
1681
1797
|
* @default 'top'
|
|
1682
1798
|
*/
|
|
1683
1799
|
position?: 'top' | 'bottom' | 'left' | 'right';
|
|
1800
|
+
/**
|
|
1801
|
+
* Režim pozicování.
|
|
1802
|
+
* - `'anchor'` — klasický, tooltip u středu triggeru (výchozí)
|
|
1803
|
+
* - `'cursor'` — tooltip sleduje kurzor myši
|
|
1804
|
+
* @default 'anchor'
|
|
1805
|
+
*/
|
|
1806
|
+
mode?: 'anchor' | 'cursor';
|
|
1807
|
+
/**
|
|
1808
|
+
* Automaticky otočí pozici když tooltip vyjede za viewport.
|
|
1809
|
+
* @default true
|
|
1810
|
+
*/
|
|
1811
|
+
autoFlip?: boolean;
|
|
1812
|
+
/**
|
|
1813
|
+
* Posun od triggeru (anchor) nebo kurzoru (cursor) v px: [x, y].
|
|
1814
|
+
* @default [0, 0]
|
|
1815
|
+
*/
|
|
1816
|
+
offset?: [number, number];
|
|
1684
1817
|
/**
|
|
1685
1818
|
* Prodleva před zobrazením (ms).
|
|
1686
|
-
* @default
|
|
1819
|
+
* @default 0
|
|
1687
1820
|
*/
|
|
1688
1821
|
delay?: number;
|
|
1822
|
+
/**
|
|
1823
|
+
* Prodleva před zobrazením (ms). Přepíše `delay` pro otevření.
|
|
1824
|
+
*/
|
|
1825
|
+
openDelay?: number;
|
|
1826
|
+
/**
|
|
1827
|
+
* Prodleva před skrytím (ms). Umožňuje hover-out grace period.
|
|
1828
|
+
* @default 0
|
|
1829
|
+
*/
|
|
1830
|
+
closeDelay?: number;
|
|
1689
1831
|
/** Dodatečná CSS třída pro tooltip. */
|
|
1690
1832
|
className?: string;
|
|
1691
1833
|
/** Další inline styly pro tooltip. */
|
|
@@ -1695,13 +1837,19 @@ interface TooltipProps {
|
|
|
1695
1837
|
* Tooltip dle SM-UI design systému.
|
|
1696
1838
|
*
|
|
1697
1839
|
* Zobrazí se po najetí myší na trigger element s volitelnou prodlevou.
|
|
1698
|
-
* Vykresluje se přes React portál
|
|
1840
|
+
* Vykresluje se přes React portál. Podporuje sledování kurzoru (`mode="cursor"`)
|
|
1841
|
+
* pro široké elementy a automatické otočení pozice při přetečení viewportu.
|
|
1699
1842
|
*
|
|
1700
1843
|
* @example
|
|
1701
1844
|
* ```tsx
|
|
1702
1845
|
* <Tooltip content="Uložit změny">
|
|
1703
1846
|
* <button>Uložit</button>
|
|
1704
1847
|
* </Tooltip>
|
|
1848
|
+
*
|
|
1849
|
+
* // Cursor-following pro široké elementy (Gantt bary):
|
|
1850
|
+
* <Tooltip content={<TaskDetail />} mode="cursor" position="bottom">
|
|
1851
|
+
* <div className="gantt-bar" />
|
|
1852
|
+
* </Tooltip>
|
|
1705
1853
|
* ```
|
|
1706
1854
|
*/
|
|
1707
1855
|
declare const Tooltip: React.FC<TooltipProps>;
|
|
@@ -1779,15 +1927,23 @@ interface SkeletonProps {
|
|
|
1779
1927
|
*/
|
|
1780
1928
|
declare const Skeleton: React.FC<SkeletonProps>;
|
|
1781
1929
|
|
|
1930
|
+
type EmptyStatePreset = 'no-data' | 'no-results' | 'no-permission' | 'error' | 'coming-soon';
|
|
1782
1931
|
interface EmptyStateProps {
|
|
1783
1932
|
/** Ikona zobrazená nad titulkem. */
|
|
1784
1933
|
icon?: React.ReactNode;
|
|
1785
1934
|
/** Hlavní titulek prázdného stavu. */
|
|
1786
|
-
title
|
|
1935
|
+
title?: string;
|
|
1787
1936
|
/** Doplňkový popis. */
|
|
1788
1937
|
description?: string;
|
|
1789
|
-
/** Akční
|
|
1938
|
+
/** Akční prvky — typicky tlačítka. */
|
|
1790
1939
|
action?: React.ReactNode;
|
|
1940
|
+
/**
|
|
1941
|
+
* Přednastavený prázdný stav s ikonou, titulkem a popisem.
|
|
1942
|
+
* Vlastní `icon`, `title`, `description` přepíší preset hodnoty.
|
|
1943
|
+
*/
|
|
1944
|
+
preset?: EmptyStatePreset;
|
|
1945
|
+
/** Velikost. @default 'md' */
|
|
1946
|
+
size?: 'sm' | 'md' | 'lg';
|
|
1791
1947
|
/** Dodatečná CSS třída. */
|
|
1792
1948
|
className?: string;
|
|
1793
1949
|
/** Další inline styly. */
|
|
@@ -1797,15 +1953,20 @@ interface EmptyStateProps {
|
|
|
1797
1953
|
* Prázdný stav dle SM-UI design systému.
|
|
1798
1954
|
*
|
|
1799
1955
|
* Centrovaný layout s volitelnou ikonou, titulkem,
|
|
1800
|
-
* popisem a
|
|
1956
|
+
* popisem a akčními tlačítky. Podporuje presety pro běžné scénáře.
|
|
1801
1957
|
*
|
|
1802
1958
|
* @example
|
|
1803
1959
|
* ```tsx
|
|
1804
1960
|
* <EmptyState
|
|
1961
|
+
* preset="no-results"
|
|
1962
|
+
* action={<Button>Vytvořit záznam</Button>}
|
|
1963
|
+
* />
|
|
1964
|
+
*
|
|
1965
|
+
* <EmptyState
|
|
1805
1966
|
* icon={<InboxIcon />}
|
|
1806
1967
|
* title="Žádné výsledky"
|
|
1807
|
-
* description="Zkuste upravit filtr
|
|
1808
|
-
* action={<Button>
|
|
1968
|
+
* description="Zkuste upravit filtr."
|
|
1969
|
+
* action={<Button>Reset</Button>}
|
|
1809
1970
|
* />
|
|
1810
1971
|
* ```
|
|
1811
1972
|
*/
|
|
@@ -1815,18 +1976,21 @@ interface StatProps {
|
|
|
1815
1976
|
/** Popisek statistiky. */
|
|
1816
1977
|
label: string;
|
|
1817
1978
|
/** Hodnota statistiky. */
|
|
1818
|
-
value
|
|
1979
|
+
value?: string | number | React.ReactNode;
|
|
1819
1980
|
/** Procentuální změna (zobrazí se se znaménkem). */
|
|
1820
1981
|
change?: number;
|
|
1821
1982
|
/** Doplňkový text k procentuální změně. */
|
|
1822
1983
|
changeLabel?: string;
|
|
1823
1984
|
/** Ikona zobrazená vedle hodnoty. */
|
|
1824
1985
|
icon?: React.ReactNode;
|
|
1825
|
-
/**
|
|
1826
|
-
* Směr trendu — ovlivňuje barvu a ikonu šipky.
|
|
1827
|
-
* @default 'neutral'
|
|
1828
|
-
*/
|
|
1986
|
+
/** Směr trendu. @default 'neutral' */
|
|
1829
1987
|
trend?: 'up' | 'down' | 'neutral';
|
|
1988
|
+
/** Skeleton stav. @default false */
|
|
1989
|
+
loading?: boolean;
|
|
1990
|
+
/** Klikatelná karta s hover efektem. */
|
|
1991
|
+
onClick?: () => void;
|
|
1992
|
+
/** Sekundární text pod hodnotou. */
|
|
1993
|
+
helper?: string | React.ReactNode;
|
|
1830
1994
|
/** Dodatečná CSS třída. */
|
|
1831
1995
|
className?: string;
|
|
1832
1996
|
/** Další inline styly. */
|
|
@@ -1836,17 +2000,17 @@ interface StatProps {
|
|
|
1836
2000
|
* Statistický ukazatel dle SM-UI design systému.
|
|
1837
2001
|
*
|
|
1838
2002
|
* Kompaktní kartička s popiskem, hodnotou, procentuální změnou
|
|
1839
|
-
* a volitelnou ikonou.
|
|
2003
|
+
* a volitelnou ikonou. Podporuje loading skeleton a klikatelnost.
|
|
1840
2004
|
*
|
|
1841
2005
|
* @example
|
|
1842
2006
|
* ```tsx
|
|
1843
2007
|
* <Stat label="Objednávky" value={1284} change={12.5} trend="up" />
|
|
1844
|
-
* <Stat label="
|
|
2008
|
+
* <Stat label="Aktivní" value={loading ? undefined : 127} loading={loading} onClick={() => navigate('/tasks')} helper="z toho 12 po termínu" />
|
|
1845
2009
|
* ```
|
|
1846
2010
|
*/
|
|
1847
2011
|
declare const Stat: React.FC<StatProps>;
|
|
1848
2012
|
|
|
1849
|
-
type AvatarSize = 'sm' | 'md' | 'lg' | number;
|
|
2013
|
+
type AvatarSize = '2xs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | number;
|
|
1850
2014
|
interface AvatarProps {
|
|
1851
2015
|
/**
|
|
1852
2016
|
* Iniciály zobrazené uvnitř avataru (např. `"DC"`, `"JN"`).
|
|
@@ -1855,9 +2019,12 @@ interface AvatarProps {
|
|
|
1855
2019
|
initials: string;
|
|
1856
2020
|
/**
|
|
1857
2021
|
* Velikost avataru.
|
|
1858
|
-
* - `'
|
|
1859
|
-
* - `'
|
|
1860
|
-
* - `'
|
|
2022
|
+
* - `'2xs'` — 16 px
|
|
2023
|
+
* - `'xs'` — 20 px
|
|
2024
|
+
* - `'sm'` — 32 px
|
|
2025
|
+
* - `'md'` — 40 px *(výchozí)*
|
|
2026
|
+
* - `'lg'` — 64 px
|
|
2027
|
+
* - `'xl'` — 96 px
|
|
1861
2028
|
* - `number` — přesná hodnota v pixelech
|
|
1862
2029
|
* @default 'md'
|
|
1863
2030
|
*/
|
|
@@ -1890,6 +2057,42 @@ interface AvatarProps {
|
|
|
1890
2057
|
*/
|
|
1891
2058
|
declare const Avatar: React.FC<AvatarProps>;
|
|
1892
2059
|
|
|
2060
|
+
interface AvatarStackProps {
|
|
2061
|
+
/** Avatar elementy. Každý dostane forced consistent size a circular shape. */
|
|
2062
|
+
children: React.ReactNode;
|
|
2063
|
+
/** Max viditelných avatarů. Ostatní se sbalí do „+N" badge. @default 3 */
|
|
2064
|
+
max?: number;
|
|
2065
|
+
/** Forced size pro všechny avatary uvnitř. @default 'sm' */
|
|
2066
|
+
size?: AvatarSize;
|
|
2067
|
+
/** Mezera mezi avatary (negative margin). @default 'normal' */
|
|
2068
|
+
spacing?: 'tight' | 'normal' | 'loose';
|
|
2069
|
+
/** Z-stacking směr — který avatar je nahoře. @default 'ltr' */
|
|
2070
|
+
direction?: 'ltr' | 'rtl';
|
|
2071
|
+
/** Tooltip nad „+N" badge. String nebo funkce (hiddenCount) => string. */
|
|
2072
|
+
overflowTooltip?: string | ((hiddenCount: number) => string);
|
|
2073
|
+
/** Další inline styly. */
|
|
2074
|
+
style?: React.CSSProperties;
|
|
2075
|
+
/** Dodatečná CSS třída. */
|
|
2076
|
+
className?: string;
|
|
2077
|
+
}
|
|
2078
|
+
/**
|
|
2079
|
+
* Overlap pattern pro více avatarů.
|
|
2080
|
+
*
|
|
2081
|
+
* Zobrazí max N avatarů s překrytím + „+N" badge pro zbytek.
|
|
2082
|
+
* Children avatary se forced-resize na zadaný size a kruhový tvar.
|
|
2083
|
+
*
|
|
2084
|
+
* @example
|
|
2085
|
+
* ```tsx
|
|
2086
|
+
* <AvatarStack max={3} size="sm">
|
|
2087
|
+
* <Avatar initials="JD" />
|
|
2088
|
+
* <Avatar initials="AB" />
|
|
2089
|
+
* <Avatar initials="MK" />
|
|
2090
|
+
* <Avatar initials="PV" />
|
|
2091
|
+
* </AvatarStack>
|
|
2092
|
+
* ```
|
|
2093
|
+
*/
|
|
2094
|
+
declare const AvatarStack: React.FC<AvatarStackProps>;
|
|
2095
|
+
|
|
1893
2096
|
interface TagProps {
|
|
1894
2097
|
/**
|
|
1895
2098
|
* Textový popisek zobrazený uvnitř tagu.
|
|
@@ -2228,20 +2431,35 @@ interface ModalProps {
|
|
|
2228
2431
|
open: boolean;
|
|
2229
2432
|
/** Voláno při zavření modálu. */
|
|
2230
2433
|
onClose: () => void;
|
|
2231
|
-
/** Titulek zobrazený v záhlaví modálu. */
|
|
2232
|
-
title?: string;
|
|
2434
|
+
/** Titulek zobrazený v záhlaví modálu. String nebo ReactNode pro vlastní hlavičku. */
|
|
2435
|
+
title?: string | React.ReactNode;
|
|
2436
|
+
/** Alternativní slot pro celou hlavičku (nahrazuje title + close button). */
|
|
2437
|
+
titleSlot?: React.ReactNode;
|
|
2233
2438
|
/** Obsah těla modálu. */
|
|
2234
2439
|
children: React.ReactNode;
|
|
2235
2440
|
/** Obsah patičky modálu (tlačítka apod.). */
|
|
2236
2441
|
footer?: React.ReactNode;
|
|
2237
2442
|
/** Velikostní preset modálu. @default 'md' */
|
|
2238
2443
|
size?: 'sm' | 'md' | 'lg' | 'fullscreen';
|
|
2444
|
+
/**
|
|
2445
|
+
* Explicitní šířka modálu. Přepíše `size`.
|
|
2446
|
+
* Přijímá číslo (px) nebo CSS string (např. '90vw').
|
|
2447
|
+
*/
|
|
2448
|
+
width?: number | string;
|
|
2239
2449
|
/** Zavře modál kliknutím na překryvnou vrstvu. @default true */
|
|
2240
2450
|
closeOnOverlay?: boolean;
|
|
2241
2451
|
/** Zavře modál stisknutím klávesy Escape. @default true */
|
|
2242
2452
|
closeOnEscape?: boolean;
|
|
2453
|
+
/**
|
|
2454
|
+
* Umožní zavření modálu (overlay click + ESC + close button).
|
|
2455
|
+
* Když false, modál lze zavřít jen programově.
|
|
2456
|
+
* @default true
|
|
2457
|
+
*/
|
|
2458
|
+
dismissable?: boolean;
|
|
2243
2459
|
/** Zobrazí zavírací tlačítko (×) v záhlaví. @default true */
|
|
2244
2460
|
showClose?: boolean;
|
|
2461
|
+
/** Zobrazí oddělovací čáru pod hlavičkou. @default true */
|
|
2462
|
+
showHeaderDivider?: boolean;
|
|
2245
2463
|
/** Dodatečná CSS třída pro kartu modálu. */
|
|
2246
2464
|
className?: string;
|
|
2247
2465
|
/** Další inline styly pro kartu modálu. */
|
|
@@ -2530,6 +2748,12 @@ interface DropdownMenuItem {
|
|
|
2530
2748
|
divider?: boolean;
|
|
2531
2749
|
/** Text kategorie — zobrazí se jako malý nadpis sekce (uppercase label). */
|
|
2532
2750
|
category?: string;
|
|
2751
|
+
/** Klávesová zkratka zobrazená vpravo (např. '⌘S', '⌘⌫'). */
|
|
2752
|
+
shortcut?: string;
|
|
2753
|
+
/** Při `true` se dropdown po kliknutí nezavře. Pro toggle položky. @default false */
|
|
2754
|
+
keepOpenOnClick?: boolean;
|
|
2755
|
+
/** Kaskádové submenu. Když nastaveno, klik/hover otevře submenu místo zavření. */
|
|
2756
|
+
subItems?: DropdownMenuItem[];
|
|
2533
2757
|
}
|
|
2534
2758
|
interface DropdownMenuProps {
|
|
2535
2759
|
/** Spouštěcí element (tlačítko apod.). */
|
|
@@ -2538,6 +2762,8 @@ interface DropdownMenuProps {
|
|
|
2538
2762
|
items: DropdownMenuItem[];
|
|
2539
2763
|
/** Pozice rozbalovací nabídky vůči triggeru. @default 'bottom-left' */
|
|
2540
2764
|
position?: 'bottom-left' | 'bottom-right';
|
|
2765
|
+
/** Otevřít nabídku pravým kliknutím místo levým. @default false */
|
|
2766
|
+
triggerOnRightClick?: boolean;
|
|
2541
2767
|
/** Dodatečná CSS třída pro obalový element. */
|
|
2542
2768
|
className?: string;
|
|
2543
2769
|
/** Další inline styly pro obalový element. */
|
|
@@ -3079,6 +3305,10 @@ interface BannerProps {
|
|
|
3079
3305
|
onClose?: () => void;
|
|
3080
3306
|
/** Vlastní ikona. Pokud není zadána, použije se výchozí dle varianty. */
|
|
3081
3307
|
icon?: React.ReactNode;
|
|
3308
|
+
/** Akční tlačítka na pravé straně. */
|
|
3309
|
+
actions?: React.ReactNode;
|
|
3310
|
+
/** Persistentní dismiss přes localStorage key. */
|
|
3311
|
+
dismissKey?: string;
|
|
3082
3312
|
/** Pozice akcentního proužku. @default 'top' */
|
|
3083
3313
|
position?: BannerPosition;
|
|
3084
3314
|
/** Přilepí banner na pozici. @default false */
|
|
@@ -3147,107 +3377,84 @@ interface NotificationProps {
|
|
|
3147
3377
|
*/
|
|
3148
3378
|
declare const Notification: React.FC<NotificationProps>;
|
|
3149
3379
|
|
|
3150
|
-
type ProgressBarSize = '
|
|
3380
|
+
type ProgressBarSize = 'xs' | 'sm' | 'md';
|
|
3381
|
+
type ProgressVariant = 'default' | 'success' | 'warning' | 'danger';
|
|
3382
|
+
interface ProgressThreshold {
|
|
3383
|
+
/** Hodnota (0-max) od které se aktivuje varianta. */
|
|
3384
|
+
value: number;
|
|
3385
|
+
/** Varianta použitá od této hodnoty. */
|
|
3386
|
+
variant: ProgressVariant;
|
|
3387
|
+
}
|
|
3151
3388
|
interface ProgressBarProps {
|
|
3152
|
-
/**
|
|
3153
|
-
* Aktuální hodnota průběhu v rozsahu 0–100.
|
|
3154
|
-
*/
|
|
3389
|
+
/** Aktuální hodnota. */
|
|
3155
3390
|
value: number;
|
|
3156
|
-
/**
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
|
|
3162
|
-
|
|
3391
|
+
/** Maximální hodnota. @default 100 */
|
|
3392
|
+
max?: number;
|
|
3393
|
+
/** Label: true = "X%", string = custom. @default false */
|
|
3394
|
+
label?: string | boolean;
|
|
3395
|
+
/** Barevný preset. @default 'default' */
|
|
3396
|
+
variant?: ProgressVariant;
|
|
3397
|
+
/** Auto-switch variant podle thresholds. */
|
|
3398
|
+
thresholds?: ProgressThreshold[];
|
|
3399
|
+
/** Velikost (výška). @default 'sm' */
|
|
3163
3400
|
size?: ProgressBarSize;
|
|
3164
|
-
/**
|
|
3165
|
-
* Barva vyplněné části lišty.
|
|
3166
|
-
* @default '#E8612D'
|
|
3167
|
-
*/
|
|
3168
|
-
color?: string;
|
|
3169
|
-
/**
|
|
3170
|
-
* Zobrazí procentuální hodnotu vedle lišty.
|
|
3171
|
-
* @default false
|
|
3172
|
-
*/
|
|
3173
|
-
showValue?: boolean;
|
|
3174
|
-
/**
|
|
3175
|
-
* Volitelný popisek zobrazený nad lištou.
|
|
3176
|
-
*/
|
|
3177
|
-
label?: string;
|
|
3178
|
-
/**
|
|
3179
|
-
* Zobrazí pruhovaný vzor na vyplněné části.
|
|
3180
|
-
* @default false
|
|
3181
|
-
*/
|
|
3401
|
+
/** Pruhovaný vzor. @default false */
|
|
3182
3402
|
striped?: boolean;
|
|
3183
|
-
/**
|
|
3184
|
-
* Animuje pruhovaný vzor (vyžaduje `striped`).
|
|
3185
|
-
* @default false
|
|
3186
|
-
*/
|
|
3403
|
+
/** Animované pruhy. @default false */
|
|
3187
3404
|
animated?: boolean;
|
|
3188
|
-
/**
|
|
3405
|
+
/** Neznámý progress — animovaný shimmer. @default false */
|
|
3406
|
+
indeterminate?: boolean;
|
|
3407
|
+
/** Dodatečná CSS třída. */
|
|
3189
3408
|
className?: string;
|
|
3190
|
-
/** Další inline styly
|
|
3409
|
+
/** Další inline styly. */
|
|
3191
3410
|
style?: React.CSSProperties;
|
|
3192
3411
|
}
|
|
3193
3412
|
interface ProgressCircleProps {
|
|
3194
|
-
/**
|
|
3195
|
-
* Aktuální hodnota průběhu v rozsahu 0–100.
|
|
3196
|
-
*/
|
|
3413
|
+
/** Aktuální hodnota. */
|
|
3197
3414
|
value: number;
|
|
3198
|
-
/**
|
|
3199
|
-
|
|
3200
|
-
|
|
3201
|
-
|
|
3415
|
+
/** Maximální hodnota. @default 100 */
|
|
3416
|
+
max?: number;
|
|
3417
|
+
/** Barevný preset. @default 'default' */
|
|
3418
|
+
variant?: ProgressVariant;
|
|
3419
|
+
/** Auto-switch variant podle thresholds. */
|
|
3420
|
+
thresholds?: ProgressThreshold[];
|
|
3421
|
+
/** Diameter v px. @default 48 */
|
|
3202
3422
|
size?: number;
|
|
3203
|
-
/**
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
*/
|
|
3207
|
-
strokeWidth?: number;
|
|
3208
|
-
/**
|
|
3209
|
-
* Barva vyplněné části kruhu.
|
|
3210
|
-
* @default '#E8612D'
|
|
3211
|
-
*/
|
|
3212
|
-
color?: string;
|
|
3213
|
-
/**
|
|
3214
|
-
* Zobrazí procentuální hodnotu uprostřed kruhu.
|
|
3215
|
-
* @default false
|
|
3216
|
-
*/
|
|
3423
|
+
/** Tloušťka stroke. @default 4 */
|
|
3424
|
+
thickness?: number;
|
|
3425
|
+
/** Zobrazí "X%" uprostřed. @default false */
|
|
3217
3426
|
showValue?: boolean;
|
|
3218
|
-
/**
|
|
3219
|
-
|
|
3220
|
-
|
|
3427
|
+
/** Custom render obsahu uprostřed (override showValue). */
|
|
3428
|
+
valueLabel?: (value: number, max: number) => React.ReactNode;
|
|
3429
|
+
/** Volitelný popisek pod kruhem. */
|
|
3221
3430
|
label?: string;
|
|
3222
|
-
/** Dodatečná CSS třída
|
|
3431
|
+
/** Dodatečná CSS třída. */
|
|
3223
3432
|
className?: string;
|
|
3224
|
-
/** Další inline styly
|
|
3433
|
+
/** Další inline styly. */
|
|
3225
3434
|
style?: React.CSSProperties;
|
|
3226
3435
|
}
|
|
3227
3436
|
/**
|
|
3228
|
-
* Horizontální
|
|
3437
|
+
* Horizontální progress indikátor.
|
|
3229
3438
|
*
|
|
3230
|
-
* Podporuje
|
|
3231
|
-
* zobrazení procentuální hodnoty a popisek.
|
|
3439
|
+
* Podporuje varianty, thresholds, pruhy, indeterminate stav a a11y.
|
|
3232
3440
|
*
|
|
3233
3441
|
* @example
|
|
3234
3442
|
* ```tsx
|
|
3235
|
-
* <ProgressBar value={45}
|
|
3236
|
-
* <ProgressBar value={
|
|
3443
|
+
* <ProgressBar value={45} label />
|
|
3444
|
+
* <ProgressBar value={80} variant="success" size="md" striped animated />
|
|
3445
|
+
* <ProgressBar indeterminate />
|
|
3237
3446
|
* ```
|
|
3238
3447
|
*/
|
|
3239
3448
|
declare const ProgressBar: React.FC<ProgressBarProps>;
|
|
3240
3449
|
/**
|
|
3241
|
-
* Kruhový indikátor
|
|
3450
|
+
* Kruhový progress indikátor (SVG).
|
|
3242
3451
|
*
|
|
3243
|
-
*
|
|
3244
|
-
* `stroke-dasharray` / `stroke-dashoffset`. Volitelně zobrazí
|
|
3245
|
-
* procentuální hodnotu uprostřed a popisek pod kruhem.
|
|
3452
|
+
* Podporuje varianty, thresholds, custom obsah uprostřed a a11y.
|
|
3246
3453
|
*
|
|
3247
3454
|
* @example
|
|
3248
3455
|
* ```tsx
|
|
3249
3456
|
* <ProgressCircle value={75} showValue />
|
|
3250
|
-
* <ProgressCircle value={
|
|
3457
|
+
* <ProgressCircle value={45} max={60} variant="warning" valueLabel={(v, m) => `${v}/${m}`} />
|
|
3251
3458
|
* ```
|
|
3252
3459
|
*/
|
|
3253
3460
|
declare const ProgressCircle: React.FC<ProgressCircleProps>;
|
|
@@ -3615,6 +3822,92 @@ interface DragListProps {
|
|
|
3615
3822
|
*/
|
|
3616
3823
|
declare const DragList: React.FC<DragListProps>;
|
|
3617
3824
|
|
|
3825
|
+
interface SortableListProps<T> {
|
|
3826
|
+
/** Datové položky. */
|
|
3827
|
+
items: T[];
|
|
3828
|
+
/** Stable key pro React reconciliation + drag tracking. */
|
|
3829
|
+
keyExtractor: (item: T) => string | number;
|
|
3830
|
+
/** Render každé položky. dragHandle je DOM node co lze umístit kdekoli. */
|
|
3831
|
+
renderItem: (item: T, dragHandle: React.ReactNode) => React.ReactNode;
|
|
3832
|
+
/** Po dokončení dragu, nové pořadí celého arraye. */
|
|
3833
|
+
onReorder: (newOrder: T[]) => void;
|
|
3834
|
+
/** Osa řazení. @default 'vertical' */
|
|
3835
|
+
direction?: 'vertical' | 'horizontal';
|
|
3836
|
+
/** whole = drag celé položky; explicit = jen z handle node. @default 'whole' */
|
|
3837
|
+
handle?: 'whole' | 'explicit';
|
|
3838
|
+
/** Vypne drag. @default false */
|
|
3839
|
+
disabled?: boolean;
|
|
3840
|
+
/** Mezera mezi položkami. */
|
|
3841
|
+
gap?: number | string;
|
|
3842
|
+
/** Další inline styly. */
|
|
3843
|
+
style?: React.CSSProperties;
|
|
3844
|
+
/** Dodatečná CSS třída. */
|
|
3845
|
+
className?: string;
|
|
3846
|
+
}
|
|
3847
|
+
/**
|
|
3848
|
+
* Drag-to-reorder generic list.
|
|
3849
|
+
*
|
|
3850
|
+
* Podporuje myš i touch, klávesové ovládání (Tab → Space pick → arrows move → Space drop),
|
|
3851
|
+
* insertion line indikátor a explicit/whole handle mode.
|
|
3852
|
+
*
|
|
3853
|
+
* @example
|
|
3854
|
+
* ```tsx
|
|
3855
|
+
* <SortableList
|
|
3856
|
+
* items={priorities}
|
|
3857
|
+
* keyExtractor={(p) => p.id}
|
|
3858
|
+
* onReorder={savePriorities}
|
|
3859
|
+
* renderItem={(item, dragHandle) => (
|
|
3860
|
+
* <div style={{ display: 'flex', gap: 8 }}>
|
|
3861
|
+
* {dragHandle}
|
|
3862
|
+
* <span>{item.label}</span>
|
|
3863
|
+
* </div>
|
|
3864
|
+
* )}
|
|
3865
|
+
* handle="explicit"
|
|
3866
|
+
* />
|
|
3867
|
+
* ```
|
|
3868
|
+
*/
|
|
3869
|
+
declare function SortableList<T>({ items, keyExtractor, renderItem, onReorder, direction, handle, disabled, gap, style, className, }: SortableListProps<T>): react_jsx_runtime.JSX.Element;
|
|
3870
|
+
|
|
3871
|
+
interface SplitterProps {
|
|
3872
|
+
/** Směr rozdělení. horizontal = vertikální separátor. @default 'horizontal' */
|
|
3873
|
+
orientation?: 'horizontal' | 'vertical';
|
|
3874
|
+
/** Dva nebo více panelů. */
|
|
3875
|
+
children: React.ReactNode[];
|
|
3876
|
+
/** Iniciální velikosti v procentech. @default rovnoměrně */
|
|
3877
|
+
defaultSizes?: number[];
|
|
3878
|
+
/** Min velikost per panel v px. */
|
|
3879
|
+
minSizes?: number[];
|
|
3880
|
+
/** Max velikost per panel v px. */
|
|
3881
|
+
maxSizes?: number[];
|
|
3882
|
+
/** Callback s aktuálními velikostmi (px) během dragu. */
|
|
3883
|
+
onResize?: (sizes: number[]) => void;
|
|
3884
|
+
/** localStorage key — uloží + obnoví velikosti. */
|
|
3885
|
+
persistKey?: string;
|
|
3886
|
+
/** Šířka separátoru v px. @default 4 */
|
|
3887
|
+
dividerSize?: number;
|
|
3888
|
+
/** Vypne resize. @default false */
|
|
3889
|
+
disabled?: boolean;
|
|
3890
|
+
/** Další inline styly. */
|
|
3891
|
+
style?: React.CSSProperties;
|
|
3892
|
+
/** Dodatečná CSS třída. */
|
|
3893
|
+
className?: string;
|
|
3894
|
+
}
|
|
3895
|
+
/**
|
|
3896
|
+
* Draggable separator mezi panely.
|
|
3897
|
+
*
|
|
3898
|
+
* Podporuje horizontální i vertikální dělení, min/max constraints,
|
|
3899
|
+
* persist do localStorage a touch ovládání.
|
|
3900
|
+
*
|
|
3901
|
+
* @example
|
|
3902
|
+
* ```tsx
|
|
3903
|
+
* <Splitter defaultSizes={[30, 70]} minSizes={[200, 400]} persistKey="main-split">
|
|
3904
|
+
* <div>Sidebar</div>
|
|
3905
|
+
* <div>Content</div>
|
|
3906
|
+
* </Splitter>
|
|
3907
|
+
* ```
|
|
3908
|
+
*/
|
|
3909
|
+
declare const Splitter: React.FC<SplitterProps>;
|
|
3910
|
+
|
|
3618
3911
|
type Theme = 'light' | 'dark';
|
|
3619
3912
|
/**
|
|
3620
3913
|
* Zjistí aktuální téma aplikace.
|
|
@@ -3623,4 +3916,4 @@ type Theme = 'light' | 'dark';
|
|
|
3623
3916
|
*/
|
|
3624
3917
|
declare const useTheme: () => Theme;
|
|
3625
3918
|
|
|
3626
|
-
export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, Alert, type AlertProps, type AlertVariant, AppSidebar, type AppSidebarProps, Avatar, type AvatarProps, type AvatarSize, Badge, type BadgeProps, Banner, type BannerPosition, type BannerProps, type BannerVariant, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, type ButtonAsAnchorProps, type ButtonAsButtonProps, type ButtonIconPosition, type ButtonProps, type ButtonSize, type ButtonVariant, Calendar, type CalendarEvent, type CalendarProps, Card, type CardProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, type CheckboxSize, ColorPicker, type ColorPickerProps, Combobox, type ComboboxOption, type ComboboxProps, type ComboboxSize, type CommandGroup, type CommandItem, CommandMenu, type CommandMenuProps, ConfirmDialog, type ConfirmDialogProps, Container, type ContainerMaxWidth, type ContainerProps, CopyButton, type CopyButtonProps, type Country, type CropArea, type CropShape, DataGrid, type DataGridColumn, type DataGridProps, DataList, type DataListItem, type DataListProps, DatePicker, DatePickerGroup, type DatePickerGroupProps, type DatePickerProps, type DatePickerSize, Divider, type DividerOrientation, type DividerProps, type DragHandleProps, DragList, type DragListItem, type DragListProps, Drawer, type DrawerProps, DropdownMenu, type DropdownMenuItem, type DropdownMenuProps, EmptyState, type EmptyStateProps, FileUpload, type FileUploadProps, FormWizard, type FormWizardProps, type FormWizardStep, ImageCropper, type ImageCropperProps, Input, InputGroup, type InputGroupProps, type InputProps, type InputSize, Link, type LinkProps, type LinkVariant, MobileDataCard, type MobileDataCardColumn, type MobileDataCardProps, Modal, type ModalProps, Navbar, type NavbarProps, Notification, type NotificationProps, type NotificationVariant, NumberInput, type NumberInputProps, type NumberInputSize, type NumberInputVariant, OTPInput, type OTPInputProps, Pagination, type PaginationProps, PhoneInput, type PhoneInputProps, type PhoneInputSize, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, type ProgressBarSize, ProgressCircle, type ProgressCircleProps, Radio, RadioGroup, type RadioGroupOption, type RadioGroupProps, type RadioProps, type RadioSize, Rating, type RatingProps, type RatingSize, SegmentedControl, type SegmentedControlItem, type SegmentedControlProps, type SegmentedControlSize, Select, SelectGroup, type SelectGroupProps, type SelectOption, type SelectProps, Sheet, type SheetProps, SidebarItem, type SidebarItemProps, Skeleton, type SkeletonProps, Slider, type SliderProps, type SliderSize, Spinner, type SpinnerProps, type SpinnerSize, Spotlight, type SpotlightItem, type SpotlightProps, Stack, type StackAlign, type StackDirection, type StackJustify, type StackProps, Stat, type StatProps, StatusBadge, type StatusBadgeProps, type StatusBadgeStatus, type StepItem, Stepper, type StepperProps, Switch, type SwitchProps, type SwitchSize, Tab, TabPanel, type TabPanelProps, type TabProps, Table, type TableColumn, type TableProps, Tabs, type TabsProps, Tag, TagItem, type TagItemProps, type TagProps, Textarea, type TextareaProps, type TextareaResize, type TextareaSize, type Theme, Timeline, type TimelineItem, type TimelineProps, Toast, type ToastContextValue, type ToastOptions, type ToastPosition, type ToastProps, type ToastVariant, ToasterProvider, type ToasterProviderProps, Tooltip, type TooltipProps, Tree, type TreeNode, type TreeProps, type UploadedFile, useTheme, useToast };
|
|
3919
|
+
export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, Alert, type AlertProps, type AlertVariant, AppSidebar, type AppSidebarProps, Avatar, type AvatarProps, type AvatarSize, AvatarStack, type AvatarStackProps, Badge, type BadgeProps, Banner, type BannerPosition, type BannerProps, type BannerVariant, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, type ButtonAsAnchorProps, type ButtonAsButtonProps, type ButtonIconPosition, type ButtonProps, type ButtonSize, type ButtonVariant, Calendar, type CalendarEvent, type CalendarProps, Card, type CardProps, Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, type CheckboxSize, ColorPicker, type ColorPickerProps, Combobox, type ComboboxOption, type ComboboxProps, type ComboboxSize, type CommandGroup, type CommandItem, CommandMenu, type CommandMenuProps, ConfirmDialog, type ConfirmDialogProps, Container, type ContainerMaxWidth, type ContainerProps, CopyButton, type CopyButtonProps, type Country, type CropArea, type CropShape, DataGrid, type DataGridColumn, type DataGridProps, DataList, type DataListItem, type DataListProps, DatePicker, DatePickerGroup, type DatePickerGroupProps, type DatePickerProps, type DatePickerSize, Divider, type DividerOrientation, type DividerProps, type DragHandleProps, DragList, type DragListItem, type DragListProps, Drawer, type DrawerProps, DropdownMenu, type DropdownMenuItem, type DropdownMenuProps, EmptyState, type EmptyStatePreset, type EmptyStateProps, FileUpload, type FileUploadProps, FormField, type FormFieldProps, FormWizard, type FormWizardProps, type FormWizardStep, IconButton, type IconButtonProps, ImageCropper, type ImageCropperProps, Input, InputGroup, type InputGroupProps, type InputProps, type InputSize, Link, type LinkProps, type LinkVariant, MobileDataCard, type MobileDataCardColumn, type MobileDataCardProps, Modal, type ModalProps, Navbar, type NavbarProps, Notification, type NotificationProps, type NotificationVariant, NumberInput, type NumberInputProps, type NumberInputSize, type NumberInputVariant, OTPInput, type OTPInputProps, Pagination, type PaginationProps, PhoneInput, type PhoneInputProps, type PhoneInputSize, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, type ProgressBarSize, ProgressCircle, type ProgressCircleProps, type ProgressThreshold, type ProgressVariant, Radio, RadioGroup, type RadioGroupOption, type RadioGroupProps, type RadioProps, type RadioSize, Rating, type RatingProps, type RatingSize, SegmentedControl, type SegmentedControlItem, type SegmentedControlProps, type SegmentedControlSize, Select, SelectGroup, type SelectGroupProps, type SelectOption, type SelectProps, Sheet, type SheetProps, SidebarItem, type SidebarItemProps, Skeleton, type SkeletonProps, Slider, type SliderProps, type SliderSize, SortableList, type SortableListProps, Spinner, type SpinnerProps, type SpinnerSize, Splitter, type SplitterProps, Spotlight, type SpotlightItem, type SpotlightProps, Stack, type StackAlign, type StackDirection, type StackJustify, type StackProps, Stat, type StatProps, StatusBadge, type StatusBadgeProps, type StatusBadgeStatus, type StepItem, Stepper, type StepperProps, Switch, type SwitchProps, type SwitchSize, Tab, TabPanel, type TabPanelProps, type TabProps, Table, type TableColumn, type TableProps, Tabs, type TabsProps, Tag, TagItem, type TagItemProps, type TagProps, Textarea, type TextareaProps, type TextareaResize, type TextareaSize, type Theme, Timeline, type TimelineItem, type TimelineProps, Toast, type ToastContextValue, type ToastOptions, type ToastPosition, type ToastProps, type ToastVariant, ToasterProvider, type ToasterProviderProps, Tooltip, type TooltipProps, Tree, type TreeNode, type TreeProps, type UploadedFile, useTheme, useToast };
|