@moul-dev/ui 2026.8.21 → 2026.8.25

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.
Files changed (42) hide show
  1. package/dist/assets/stylex.css +456 -4
  2. package/dist/moul-ui.js +4639 -1724
  3. package/dist/src/components/Avatar/Avatar.d.ts +10 -0
  4. package/dist/src/components/Avatar/Avatar.styles.d.ts +178 -6
  5. package/dist/src/components/Avatar/AvatarGroup.d.ts +18 -0
  6. package/dist/src/components/Avatar/index.d.ts +3 -1
  7. package/dist/src/components/Badge/Badge.d.ts +4 -1
  8. package/dist/src/components/Badge/Badge.styles.d.ts +59 -3
  9. package/dist/src/components/Badge/index.d.ts +1 -1
  10. package/dist/src/components/Calendar/Calendar.d.ts +24 -0
  11. package/dist/src/components/Calendar/Calendar.styles.d.ts +161 -0
  12. package/dist/src/components/Calendar/index.d.ts +2 -0
  13. package/dist/src/components/CommandPalette/CommandPalette.d.ts +81 -0
  14. package/dist/src/components/CommandPalette/CommandPalette.styles.d.ts +216 -0
  15. package/dist/src/components/CommandPalette/index.d.ts +2 -0
  16. package/dist/src/components/DateField/DateField.d.ts +24 -0
  17. package/dist/src/components/DateField/DateField.styles.d.ts +99 -0
  18. package/dist/src/components/DateField/index.d.ts +2 -0
  19. package/dist/src/components/DatePicker/DatePicker.d.ts +23 -0
  20. package/dist/src/components/DatePicker/DatePicker.styles.d.ts +127 -0
  21. package/dist/src/components/DatePicker/index.d.ts +2 -0
  22. package/dist/src/components/EmptyState/EmptyState.d.ts +44 -0
  23. package/dist/src/components/EmptyState/EmptyState.styles.d.ts +134 -0
  24. package/dist/src/components/EmptyState/index.d.ts +2 -0
  25. package/dist/src/components/Pagination/Pagination.d.ts +105 -0
  26. package/dist/src/components/Pagination/Pagination.styles.d.ts +152 -0
  27. package/dist/src/components/Pagination/index.d.ts +2 -0
  28. package/dist/src/components/ProgressBar/ProgressBar.d.ts +22 -0
  29. package/dist/src/components/ProgressBar/ProgressBar.styles.d.ts +83 -0
  30. package/dist/src/components/ProgressBar/index.d.ts +2 -0
  31. package/dist/src/components/Skeleton/Skeleton.d.ts +5 -0
  32. package/dist/src/components/Skeleton/Skeleton.styles.d.ts +22 -1
  33. package/dist/src/components/Skeleton/index.d.ts +1 -1
  34. package/dist/src/components/Spinner/Spinner.d.ts +2 -0
  35. package/dist/src/components/Spinner/Spinner.styles.d.ts +19 -1
  36. package/dist/src/components/Spinner/index.d.ts +1 -1
  37. package/dist/src/components/Table/Table.d.ts +97 -12
  38. package/dist/src/components/Table/Table.styles.d.ts +171 -30
  39. package/dist/src/components/Table/index.d.ts +2 -2
  40. package/dist/src/index.d.ts +22 -8
  41. package/dist/tokens.stylex.js +137 -125
  42. package/package.json +1 -1
@@ -1,33 +1,118 @@
1
1
  import { StyleXStyles } from '@stylexjs/stylex';
2
- import { CellProps as AriaCellProps, ColumnProps as AriaColumnProps, RowProps as AriaRowProps, TableBodyProps as AriaTableBodyProps, TableHeaderProps as AriaTableHeaderProps, TableProps as AriaTableProps } from 'react-aria-components';
3
2
  import * as React from 'react';
4
- export interface TableProps extends Omit<AriaTableProps, 'style'> {
3
+ export interface TableProps extends Omit<React.TableHTMLAttributes<HTMLTableElement>, 'style'> {
5
4
  style?: StyleXStyles;
6
5
  className?: string;
6
+ /** Compact padding for high-density data */
7
+ dense?: boolean;
8
+ /** Alternating row background colors */
9
+ striped?: boolean;
10
+ /** Highlight rows on hover */
11
+ hoverable?: boolean;
12
+ /** Keep table header pinned to top on scroll */
13
+ stickyHeader?: boolean;
14
+ /** Table layout algorithm */
15
+ layout?: 'auto' | 'fixed';
16
+ /** Wrap table in a responsive horizontal scroll container (default: true) */
17
+ wrapInContainer?: boolean;
18
+ /** Style for the responsive container wrapper */
19
+ containerStyle?: StyleXStyles;
20
+ /** Class name for the responsive container wrapper */
21
+ containerClassName?: string;
7
22
  }
8
23
  export declare const Table: React.ForwardRefExoticComponent<TableProps & React.RefAttributes<HTMLTableElement>>;
9
- export interface TableHeaderProps<T> extends Omit<AriaTableHeaderProps<T>, 'style'> {
24
+ export interface TableHeaderProps extends Omit<React.HTMLAttributes<HTMLTableSectionElement>, 'style'> {
10
25
  style?: StyleXStyles;
11
26
  className?: string;
27
+ /** Pinned sticky header state */
28
+ sticky?: boolean;
12
29
  }
13
- export declare const TableHeader: React.ForwardRefExoticComponent<TableHeaderProps<any> & React.RefAttributes<HTMLTableSectionElement>>;
14
- export interface ColumnProps extends Omit<AriaColumnProps, 'style'> {
30
+ export declare const TableHeader: React.ForwardRefExoticComponent<TableHeaderProps & React.RefAttributes<HTMLTableSectionElement>>;
31
+ export interface TableBodyProps extends Omit<React.HTMLAttributes<HTMLTableSectionElement>, 'style'> {
15
32
  style?: StyleXStyles;
16
33
  className?: string;
17
34
  }
18
- export declare const Column: React.ForwardRefExoticComponent<ColumnProps & React.RefAttributes<HTMLTableHeaderCellElement>>;
19
- export interface TableBodyProps<T> extends Omit<AriaTableBodyProps<T>, 'style'> {
35
+ export declare const TableBody: React.ForwardRefExoticComponent<TableBodyProps & React.RefAttributes<HTMLTableSectionElement>>;
36
+ export interface TableFooterProps extends Omit<React.HTMLAttributes<HTMLTableSectionElement>, 'style'> {
20
37
  style?: StyleXStyles;
21
38
  className?: string;
39
+ /** Pinned sticky footer state */
40
+ sticky?: boolean;
22
41
  }
23
- export declare const TableBody: React.ForwardRefExoticComponent<TableBodyProps<any> & React.RefAttributes<HTMLTableSectionElement>>;
24
- export interface RowProps<T> extends Omit<AriaRowProps<T>, 'style'> {
42
+ export declare const TableFooter: React.ForwardRefExoticComponent<TableFooterProps & React.RefAttributes<HTMLTableSectionElement>>;
43
+ export interface TableRowProps extends Omit<React.HTMLAttributes<HTMLTableRowElement>, 'style'> {
25
44
  style?: StyleXStyles;
26
45
  className?: string;
46
+ /** Selected row state */
47
+ selected?: boolean;
48
+ /** Enable hover highlight for this row */
49
+ hoverable?: boolean;
50
+ /** Indicates the row is clickable */
51
+ interactive?: boolean;
27
52
  }
28
- export declare const Row: React.ForwardRefExoticComponent<RowProps<any> & React.RefAttributes<HTMLTableRowElement>>;
29
- export interface CellProps extends Omit<AriaCellProps, 'style'> {
53
+ export declare const TableRow: React.ForwardRefExoticComponent<TableRowProps & React.RefAttributes<HTMLTableRowElement>>;
54
+ export interface TableHeadProps extends Omit<React.ThHTMLAttributes<HTMLTableCellElement>, 'style' | 'align' | 'width'> {
30
55
  style?: StyleXStyles;
31
56
  className?: string;
57
+ /** Text & content alignment */
58
+ align?: 'left' | 'center' | 'right' | 'numeric';
59
+ /** Column pinning support */
60
+ pinned?: 'left' | 'right' | 'start' | 'end';
61
+ /** Pinning offset (e.g., 0, '120px') */
62
+ pinOffset?: number | string;
63
+ /** Explicit column width */
64
+ width?: number | string;
65
+ /** Minimum column width */
66
+ minWidth?: number | string;
67
+ /** Maximum column width */
68
+ maxWidth?: number | string;
69
+ /** Current column sort direction */
70
+ sortDirection?: 'asc' | 'desc' | 'ascending' | 'descending' | false | null;
71
+ /** Callback fired when sortable column header is clicked or activated */
72
+ onSort?: () => void;
73
+ /** Show sorting chevron indicator */
74
+ showSortIndicator?: boolean;
75
+ /** Custom sort indicator component slot */
76
+ sortIndicator?: React.ReactNode;
32
77
  }
33
- export declare const Cell: React.ForwardRefExoticComponent<CellProps & React.RefAttributes<HTMLTableCellElement>>;
78
+ export declare const TableHead: React.ForwardRefExoticComponent<TableHeadProps & React.RefAttributes<HTMLTableCellElement>>;
79
+ export interface TableCellProps extends Omit<React.TdHTMLAttributes<HTMLTableCellElement>, 'style' | 'align' | 'width'> {
80
+ style?: StyleXStyles;
81
+ className?: string;
82
+ /** Text & numeric alignment */
83
+ align?: 'left' | 'center' | 'right' | 'numeric';
84
+ /** Column pinning support */
85
+ pinned?: 'left' | 'right' | 'start' | 'end';
86
+ /** Pinning offset (e.g., 0, '120px') */
87
+ pinOffset?: number | string;
88
+ /** Explicit cell/column width */
89
+ width?: number | string;
90
+ /** Minimum cell/column width */
91
+ minWidth?: number | string;
92
+ /** Maximum cell/column width */
93
+ maxWidth?: number | string;
94
+ /** Enable tabular figures for consistent numeric layout */
95
+ tabular?: boolean;
96
+ }
97
+ export declare const TableCell: React.ForwardRefExoticComponent<TableCellProps & React.RefAttributes<HTMLTableCellElement>>;
98
+ export interface TableCaptionProps extends Omit<React.HTMLAttributes<HTMLTableCaptionElement>, 'style'> {
99
+ style?: StyleXStyles;
100
+ className?: string;
101
+ /** Placement side of the caption */
102
+ side?: 'top' | 'bottom';
103
+ }
104
+ export declare const TableCaption: React.ForwardRefExoticComponent<TableCaptionProps & React.RefAttributes<HTMLTableCaptionElement>>;
105
+ export interface TableEmptyProps extends Omit<React.HTMLAttributes<HTMLTableRowElement>, 'style'> {
106
+ colSpan?: number;
107
+ style?: StyleXStyles;
108
+ cellStyle?: StyleXStyles;
109
+ className?: string;
110
+ cellClassName?: string;
111
+ }
112
+ export declare const TableEmpty: React.ForwardRefExoticComponent<TableEmptyProps & React.RefAttributes<HTMLTableRowElement>>;
113
+ export interface TableSkeletonProps {
114
+ rows?: number;
115
+ columns?: number;
116
+ style?: StyleXStyles;
117
+ }
118
+ export declare function TableSkeleton({ rows, columns, style, }: TableSkeletonProps): React.JSX.Element;
@@ -1,5 +1,10 @@
1
1
  import * as stylex from '@stylexjs/stylex';
2
2
  export declare const styles: Readonly<{
3
+ readonly wrapper: Readonly<{
4
+ readonly position: stylex.StyleXClassNameFor<"position", "relative">;
5
+ readonly width: stylex.StyleXClassNameFor<"width", "100%">;
6
+ readonly overflowX: stylex.StyleXClassNameFor<"overflowX", "auto">;
7
+ }>;
3
8
  readonly table: Readonly<{
4
9
  readonly borderCollapse: stylex.StyleXClassNameFor<"borderCollapse", "collapse">;
5
10
  readonly width: stylex.StyleXClassNameFor<"width", "100%">;
@@ -9,28 +14,37 @@ export declare const styles: Readonly<{
9
14
  readonly lineHeight: stylex.StyleXClassNameFor<"lineHeight", string>;
10
15
  readonly color: stylex.StyleXClassNameFor<"color", string>;
11
16
  }>;
17
+ readonly tableFixed: Readonly<{
18
+ readonly tableLayout: stylex.StyleXClassNameFor<"tableLayout", "fixed">;
19
+ }>;
20
+ readonly tableAuto: Readonly<{
21
+ readonly tableLayout: stylex.StyleXClassNameFor<"tableLayout", "auto">;
22
+ }>;
12
23
  readonly header: Readonly<{
13
24
  readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
14
- readonly borderBottomWidth: stylex.StyleXClassNameFor<"borderBottomWidth", "2px">;
25
+ readonly borderBottomWidth: stylex.StyleXClassNameFor<"borderBottomWidth", "1px">;
15
26
  readonly borderBottomStyle: stylex.StyleXClassNameFor<"borderBottomStyle", "solid">;
16
27
  readonly borderBottomColor: stylex.StyleXClassNameFor<"borderBottomColor", string>;
17
28
  }>;
18
- readonly column: Readonly<{
19
- readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
20
- readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
29
+ readonly headerSticky: Readonly<{
30
+ readonly position: stylex.StyleXClassNameFor<"position", "sticky">;
31
+ readonly insetBlockStart: stylex.StyleXClassNameFor<"insetBlockStart", 0>;
32
+ readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 10>;
33
+ readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
34
+ }>;
35
+ readonly footer: Readonly<{
36
+ readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
37
+ readonly borderTopWidth: stylex.StyleXClassNameFor<"borderTopWidth", "1px">;
38
+ readonly borderTopStyle: stylex.StyleXClassNameFor<"borderTopStyle", "solid">;
39
+ readonly borderTopColor: stylex.StyleXClassNameFor<"borderTopColor", string>;
21
40
  readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
22
41
  readonly color: stylex.StyleXClassNameFor<"color", string>;
23
- readonly borderBottomWidth: stylex.StyleXClassNameFor<"borderBottomWidth", "1px">;
24
- readonly borderBottomStyle: stylex.StyleXClassNameFor<"borderBottomStyle", "solid">;
25
- readonly borderBottomColor: stylex.StyleXClassNameFor<"borderBottomColor", string>;
26
- readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "start">;
27
- readonly outline: stylex.StyleXClassNameFor<"outline", "none">;
28
- readonly ':focus-visible': stylex.StyleXClassNameFor<":focus-visible", {
29
- readonly outlineStyle: "solid";
30
- readonly outlineWidth: "2px";
31
- readonly outlineOffset: "-2px";
32
- readonly outlineColor: stylex.StyleXVar<string>;
33
- }>;
42
+ }>;
43
+ readonly footerSticky: Readonly<{
44
+ readonly position: stylex.StyleXClassNameFor<"position", "sticky">;
45
+ readonly insetBlockEnd: stylex.StyleXClassNameFor<"insetBlockEnd", 0>;
46
+ readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 10>;
47
+ readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
34
48
  }>;
35
49
  readonly body: Readonly<{
36
50
  readonly outline: stylex.StyleXClassNameFor<"outline", "none">;
@@ -40,8 +54,6 @@ export declare const styles: Readonly<{
40
54
  readonly borderBottomStyle: stylex.StyleXClassNameFor<"borderBottomStyle", "solid">;
41
55
  readonly borderBottomColor: stylex.StyleXClassNameFor<"borderBottomColor", string>;
42
56
  readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
43
- readonly outline: stylex.StyleXClassNameFor<"outline", "none">;
44
- readonly cursor: stylex.StyleXClassNameFor<"cursor", "default">;
45
57
  readonly transitionProperty: stylex.StyleXClassNameFor<"transitionProperty", "background-color, color">;
46
58
  readonly transitionDuration: stylex.StyleXClassNameFor<"transitionDuration", "0.15s">;
47
59
  readonly transitionTimingFunction: stylex.StyleXClassNameFor<"transitionTimingFunction", "ease-in-out">;
@@ -49,29 +61,158 @@ export declare const styles: Readonly<{
49
61
  readonly transitionProperty: "none";
50
62
  }>;
51
63
  }>;
52
- readonly rowHovered: Readonly<{
53
- readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
64
+ readonly rowHoverable: Readonly<{
65
+ readonly ':hover': stylex.StyleXClassNameFor<":hover", {
66
+ readonly backgroundColor: stylex.StyleXVar<string>;
67
+ }>;
68
+ }>;
69
+ readonly rowStriped: Readonly<{
70
+ readonly ':nth-child(even)': stylex.StyleXClassNameFor<":nth-child(even)", {
71
+ readonly backgroundColor: stylex.StyleXVar<string>;
72
+ }>;
54
73
  }>;
55
74
  readonly rowSelected: Readonly<{
56
75
  readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
57
76
  readonly color: stylex.StyleXClassNameFor<"color", string>;
58
77
  }>;
59
- readonly rowFocused: Readonly<{
60
- readonly outlineStyle: stylex.StyleXClassNameFor<"outlineStyle", "solid">;
61
- readonly outlineWidth: stylex.StyleXClassNameFor<"outlineWidth", "2px">;
62
- readonly outlineOffset: stylex.StyleXClassNameFor<"outlineOffset", "-2px">;
63
- readonly outlineColor: stylex.StyleXClassNameFor<"outlineColor", string>;
78
+ readonly rowInteractive: Readonly<{
79
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "pointer">;
80
+ }>;
81
+ readonly head: Readonly<{
82
+ readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
83
+ readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
84
+ readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
85
+ readonly color: stylex.StyleXClassNameFor<"color", string>;
86
+ readonly borderBottomWidth: stylex.StyleXClassNameFor<"borderBottomWidth", "1px">;
87
+ readonly borderBottomStyle: stylex.StyleXClassNameFor<"borderBottomStyle", "solid">;
88
+ readonly borderBottomColor: stylex.StyleXClassNameFor<"borderBottomColor", string>;
89
+ readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "start">;
90
+ readonly verticalAlign: stylex.StyleXClassNameFor<"verticalAlign", "middle">;
91
+ readonly outline: stylex.StyleXClassNameFor<"outline", "none">;
92
+ }>;
93
+ readonly headDense: Readonly<{
94
+ readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
95
+ readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
96
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
97
+ }>;
98
+ readonly headSortable: Readonly<{
99
+ readonly cursor: stylex.StyleXClassNameFor<"cursor", "pointer">;
100
+ readonly userSelect: stylex.StyleXClassNameFor<"userSelect", "none">;
101
+ readonly ':hover': stylex.StyleXClassNameFor<":hover", {
102
+ readonly color: stylex.StyleXVar<string>;
103
+ readonly backgroundColor: stylex.StyleXVar<string>;
104
+ }>;
105
+ }>;
106
+ readonly headContent: Readonly<{
107
+ readonly display: stylex.StyleXClassNameFor<"display", "inline-flex">;
108
+ readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
109
+ readonly gap: stylex.StyleXClassNameFor<"gap", string>;
110
+ readonly width: stylex.StyleXClassNameFor<"width", "100%">;
111
+ }>;
112
+ readonly headContentAlignLeft: Readonly<{
113
+ readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "flex-start">;
114
+ }>;
115
+ readonly headContentAlignCenter: Readonly<{
116
+ readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
117
+ }>;
118
+ readonly headContentAlignRight: Readonly<{
119
+ readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "flex-end">;
120
+ }>;
121
+ readonly sortIndicator: Readonly<{
122
+ readonly display: stylex.StyleXClassNameFor<"display", "inline-flex">;
123
+ readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
124
+ readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
125
+ readonly flexShrink: stylex.StyleXClassNameFor<"flexShrink", 0>;
126
+ readonly color: stylex.StyleXClassNameFor<"color", string>;
127
+ readonly transitionProperty: stylex.StyleXClassNameFor<"transitionProperty", "color, transform">;
128
+ readonly transitionDuration: stylex.StyleXClassNameFor<"transitionDuration", "0.15s">;
129
+ }>;
130
+ readonly sortIndicatorActive: Readonly<{
131
+ readonly color: stylex.StyleXClassNameFor<"color", string>;
64
132
  }>;
65
133
  readonly cell: Readonly<{
66
134
  readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
67
135
  readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
68
136
  readonly color: stylex.StyleXClassNameFor<"color", "inherit">;
137
+ readonly verticalAlign: stylex.StyleXClassNameFor<"verticalAlign", "middle">;
69
138
  readonly outline: stylex.StyleXClassNameFor<"outline", "none">;
70
- readonly ':focus-visible': stylex.StyleXClassNameFor<":focus-visible", {
71
- readonly outlineStyle: "solid";
72
- readonly outlineWidth: "2px";
73
- readonly outlineOffset: "-2px";
74
- readonly outlineColor: stylex.StyleXVar<string>;
75
- }>;
139
+ }>;
140
+ readonly cellDense: Readonly<{
141
+ readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
142
+ readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
143
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
144
+ }>;
145
+ readonly cellTabular: Readonly<{
146
+ readonly fontVariantNumeric: stylex.StyleXClassNameFor<"fontVariantNumeric", "tabular-nums">;
147
+ }>;
148
+ readonly alignLeft: Readonly<{
149
+ readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "start">;
150
+ }>;
151
+ readonly alignCenter: Readonly<{
152
+ readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "center">;
153
+ }>;
154
+ readonly alignRight: Readonly<{
155
+ readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "end">;
156
+ }>;
157
+ readonly alignNumeric: Readonly<{
158
+ readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "end">;
159
+ readonly fontVariantNumeric: stylex.StyleXClassNameFor<"fontVariantNumeric", "tabular-nums">;
160
+ }>;
161
+ readonly pinnedLeft: Readonly<{
162
+ readonly position: stylex.StyleXClassNameFor<"position", "sticky">;
163
+ readonly insetInlineStart: stylex.StyleXClassNameFor<"insetInlineStart", 0>;
164
+ readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 2>;
165
+ readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
166
+ }>;
167
+ readonly pinnedRight: Readonly<{
168
+ readonly position: stylex.StyleXClassNameFor<"position", "sticky">;
169
+ readonly insetInlineEnd: stylex.StyleXClassNameFor<"insetInlineEnd", 0>;
170
+ readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 2>;
171
+ readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
172
+ readonly boxShadow: stylex.StyleXClassNameFor<"boxShadow", `inset 1px 0 0 ${stylex.StyleXVar<string>}`>;
173
+ }>;
174
+ readonly pinnedLeftHead: Readonly<{
175
+ readonly position: stylex.StyleXClassNameFor<"position", "sticky">;
176
+ readonly insetInlineStart: stylex.StyleXClassNameFor<"insetInlineStart", 0>;
177
+ readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 12>;
178
+ readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
179
+ }>;
180
+ readonly pinnedRightHead: Readonly<{
181
+ readonly position: stylex.StyleXClassNameFor<"position", "sticky">;
182
+ readonly insetInlineEnd: stylex.StyleXClassNameFor<"insetInlineEnd", 0>;
183
+ readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 12>;
184
+ readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
185
+ readonly boxShadow: stylex.StyleXClassNameFor<"boxShadow", `inset 1px 0 0 ${stylex.StyleXVar<string>}`>;
186
+ }>;
187
+ readonly caption: Readonly<{
188
+ readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
189
+ readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
190
+ readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
191
+ readonly color: stylex.StyleXClassNameFor<"color", string>;
192
+ readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "start">;
193
+ readonly captionSide: stylex.StyleXClassNameFor<"captionSide", "bottom">;
194
+ }>;
195
+ readonly captionTop: Readonly<{
196
+ readonly captionSide: stylex.StyleXClassNameFor<"captionSide", "top">;
197
+ }>;
198
+ readonly emptyCell: Readonly<{
199
+ readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
200
+ readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
201
+ readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "center">;
202
+ readonly color: stylex.StyleXClassNameFor<"color", string>;
203
+ }>;
204
+ readonly skeletonCell: Readonly<{
205
+ readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
206
+ readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
207
+ }>;
208
+ readonly skeletonBar: Readonly<{
209
+ readonly height: stylex.StyleXClassNameFor<"height", "14px">;
210
+ readonly width: stylex.StyleXClassNameFor<"width", "100%">;
211
+ readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
212
+ readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
213
+ readonly animationName: stylex.StyleXClassNameFor<"animationName", string>;
214
+ readonly animationDuration: stylex.StyleXClassNameFor<"animationDuration", "1.6s">;
215
+ readonly animationIterationCount: stylex.StyleXClassNameFor<"animationIterationCount", "infinite">;
216
+ readonly animationTimingFunction: stylex.StyleXClassNameFor<"animationTimingFunction", "ease-in-out">;
76
217
  }>;
77
218
  }>;
@@ -1,2 +1,2 @@
1
- export type { CellProps, ColumnProps, RowProps, TableBodyProps, TableHeaderProps, TableProps, } from './Table';
2
- export { Cell, Column, Row, Table, TableBody, TableHeader } from './Table';
1
+ export type { TableBodyProps, TableCaptionProps, TableCellProps, TableEmptyProps, TableFooterProps, TableHeadProps, TableHeaderProps, TableProps, TableRowProps, TableSkeletonProps, } from './Table';
2
+ export { Table, TableBody, TableCaption, TableCell, TableEmpty, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, } from './Table';
@@ -1,14 +1,14 @@
1
- export declare const version = "2026.08.21";
1
+ export declare const version = "2026.08.25";
2
2
  export { Alert } from './components/Alert';
3
3
  export type { AlertProps, AlertVariant } from './components/Alert/Alert';
4
4
  export { AlertDialog, AlertDialogBody, AlertDialogFooter, AlertDialogHeader, } from './components/AlertDialog';
5
5
  export type { AlertDialogBodyProps, AlertDialogFooterProps, AlertDialogHeaderProps, AlertDialogProps, } from './components/AlertDialog/AlertDialog';
6
6
  export type { AreaChartProps } from './components/AreaChart';
7
7
  export { AreaChart } from './components/AreaChart';
8
- export { Avatar } from './components/Avatar';
9
- export type { AvatarProps } from './components/Avatar/Avatar';
8
+ export type { AvatarGroupContextValue, AvatarGroupProps, AvatarProps, AvatarShape, AvatarSize, AvatarStatus, AvatarStatusPosition, } from './components/Avatar';
9
+ export { Avatar, AvatarGroup, AvatarGroupContext } from './components/Avatar';
10
10
  export { Badge } from './components/Badge';
11
- export type { BadgeProps, BadgeVariant } from './components/Badge/Badge';
11
+ export type { BadgeProps, BadgeSize, BadgeVariant, } from './components/Badge/Badge';
12
12
  export type { BarChartProps } from './components/BarChart';
13
13
  export { BarChart } from './components/BarChart';
14
14
  export type { BreadcrumbItemProps, BreadcrumbsProps, } from './components/Breadcrumbs';
@@ -17,6 +17,8 @@ export { Button } from './components/Button';
17
17
  export type { ButtonProps } from './components/Button/Button';
18
18
  export { ButtonGroup } from './components/ButtonGroup';
19
19
  export type { ButtonGroupProps } from './components/ButtonGroup/ButtonGroup';
20
+ export type { CalendarCellProps, CalendarGridProps, CalendarProps, RangeCalendarProps, } from './components/Calendar';
21
+ export { Calendar, CalendarCell, CalendarGrid, RangeCalendar, } from './components/Calendar';
20
22
  export type { CardBodyProps, CardFooterProps, CardHeaderProps, CardProps, CardVariant, Elevation, } from './components/Card';
21
23
  export { Card, CardBody, CardFooter, CardHeader } from './components/Card';
22
24
  export type { ChartContainerProps, LegendItem, } from './components/ChartContainer';
@@ -27,12 +29,20 @@ export { CheckboxGroup } from './components/CheckboxGroup';
27
29
  export type { CheckboxGroupProps } from './components/CheckboxGroup/CheckboxGroup';
28
30
  export { ComboBox, ComboBoxItem, ComboBoxSection } from './components/ComboBox';
29
31
  export type { ComboBoxItemProps, ComboBoxProps, ComboBoxSectionProps, } from './components/ComboBox/ComboBox';
32
+ export type { CommandPaletteEmptyProps, CommandPaletteFooterProps, CommandPaletteInputProps, CommandPaletteItemProps, CommandPaletteListProps, CommandPaletteProps, CommandPaletteSectionProps, UseCommandPaletteOptions, } from './components/CommandPalette';
33
+ export { CommandPalette, CommandPaletteEmpty, CommandPaletteFooter, CommandPaletteInput, CommandPaletteItem, CommandPaletteList, CommandPaletteSection, useCommandPalette, useCommandPaletteContext, } from './components/CommandPalette';
34
+ export type { DateFieldProps, DateInputProps, DateSegmentProps, } from './components/DateField';
35
+ export { DateField, DateInput, DateSegment, } from './components/DateField';
36
+ export type { DatePickerProps, DateRangePickerProps, } from './components/DatePicker';
37
+ export { DatePicker, DateRangePicker } from './components/DatePicker';
30
38
  export { Description } from './components/Description';
31
39
  export type { DescriptionProps } from './components/Description/Description';
32
40
  export type { DoughnutChartProps } from './components/DoughnutChart';
33
41
  export { DoughnutChart } from './components/DoughnutChart';
34
42
  export type { DrawerBodyProps, DrawerCloseButtonProps, DrawerDialogProps, DrawerFooterProps, DrawerHeaderProps, DrawerOverlayProps, DrawerPlacement, DrawerProps, DrawerSize, DrawerTitleProps, } from './components/Drawer';
35
43
  export { Drawer, DrawerBody, DrawerCloseButton, DrawerDialog, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerTitle, } from './components/Drawer';
44
+ export type { EmptyStateActionsProps, EmptyStateAlign, EmptyStateDescriptionProps, EmptyStateIconProps, EmptyStateProps, EmptyStateSize, EmptyStateTitleProps, EmptyStateVariant, } from './components/EmptyState';
45
+ export { EmptyState, EmptyStateActions, EmptyStateDescription, EmptyStateIcon, EmptyStateTitle, } from './components/EmptyState';
36
46
  export { ErrorMessage } from './components/ErrorMessage';
37
47
  export type { ErrorMessageProps } from './components/ErrorMessage/ErrorMessage';
38
48
  export { FieldError } from './components/FieldError';
@@ -55,10 +65,14 @@ export { Modal, ModalBody, ModalDialog, ModalFooter, ModalHeader, ModalOverlay,
55
65
  export type { ModalBodyProps, ModalDialogProps, ModalFooterProps, ModalHeaderProps, ModalOverlayProps, ModalProps, } from './components/Modal/Modal';
56
66
  export { NumberField } from './components/NumberField';
57
67
  export type { NumberFieldProps } from './components/NumberField/NumberField';
68
+ export type { PaginationContentProps, PaginationEllipsisProps, PaginationItemProps, PaginationLinkProps, PaginationNextProps, PaginationPageSizeProps, PaginationPreviousProps, PaginationProps, PaginationShape, PaginationSize, PaginationSummaryProps, PaginationVariant, } from './components/Pagination';
69
+ export { generatePagination, Pagination, PaginationContent, PaginationEllipsis, PaginationFirst, PaginationItem, PaginationLast, PaginationLink, PaginationNext, PaginationPageSize, PaginationPrevious, PaginationSummary, } from './components/Pagination';
58
70
  export type { PercentageBarProps, PercentageCircleProps, } from './components/Percentage';
59
71
  export { PercentageBar, PercentageCircle } from './components/Percentage';
60
72
  export { Popover, PopoverDialog, PopoverTrigger } from './components/Popover';
61
73
  export type { PopoverDialogProps, PopoverProps, } from './components/Popover/Popover';
74
+ export type { ProgressBarProps, ProgressBarShape, ProgressBarSize, ProgressBarVariant, } from './components/ProgressBar';
75
+ export { ProgressBar } from './components/ProgressBar';
62
76
  export { Radio, RadioGroup } from './components/RadioGroup';
63
77
  export type { RadioGroupProps, RadioProps, } from './components/RadioGroup/RadioGroup';
64
78
  export { SearchField } from './components/SearchField';
@@ -70,17 +84,17 @@ export type { SeparatorProps } from './components/Separator/Separator';
70
84
  export type { SidebarAsideProps, SidebarDividerProps, SidebarFooterProps, SidebarGroupProps, SidebarHeaderProps, SidebarItemProps, SidebarMainProps, SidebarProps, } from './components/Sidebar';
71
85
  export { Sidebar, SidebarAside, SidebarDivider, SidebarFooter, SidebarGroup, SidebarHeader, SidebarItem, SidebarMain, } from './components/Sidebar';
72
86
  export { Skeleton } from './components/Skeleton';
73
- export type { SkeletonProps } from './components/Skeleton/Skeleton';
87
+ export type { SkeletonProps, SkeletonShape, SkeletonVariant, } from './components/Skeleton/Skeleton';
74
88
  export { Slider, SliderThumb, SliderTrack } from './components/Slider';
75
89
  export type { SliderProps, SliderThumbProps, SliderTrackProps, } from './components/Slider/Slider';
76
90
  export { Spinner } from './components/Spinner';
77
- export type { SpinnerProps } from './components/Spinner/Spinner';
91
+ export type { SpinnerProps, SpinnerSize, } from './components/Spinner/Spinner';
78
92
  export type { StatProps } from './components/Stat';
79
93
  export { Stat } from './components/Stat';
80
94
  export { Switch } from './components/Switch';
81
95
  export type { SwitchProps } from './components/Switch/Switch';
82
- export type { CellProps, ColumnProps, RowProps, TableBodyProps, TableHeaderProps, TableProps, } from './components/Table';
83
- export { Cell, Column, Row, Table, TableBody, TableHeader, } from './components/Table';
96
+ export type { TableBodyProps, TableCaptionProps, TableCellProps, TableEmptyProps, TableFooterProps, TableHeadProps, TableHeaderProps, TableProps, TableRowProps, TableSkeletonProps, } from './components/Table';
97
+ export { Table, TableBody, TableCaption, TableCell, TableEmpty, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, } from './components/Table';
84
98
  export type { TabListProps, TabPanelProps, TabPanelsProps, TabProps, TabsProps, } from './components/Tabs';
85
99
  export { Tab, TabList, TabPanel, TabPanels, Tabs } from './components/Tabs';
86
100
  export { Tag, TagGroup } from './components/TagGroup';