lucent-ui 0.42.0 → 0.43.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.cjs +22 -22
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1118 -1068
- package/dist-cli/cli/entry.js +0 -0
- package/dist-cli/cli/index.js +0 -0
- package/dist-server/server/http.js +0 -0
- package/dist-server/server/index.js +0 -0
- package/package.json +15 -13
package/dist/index.d.ts
CHANGED
|
@@ -698,6 +698,8 @@ export declare interface DataTableColumn<T> {
|
|
|
698
698
|
headerFilter?: ReactNode;
|
|
699
699
|
width?: string;
|
|
700
700
|
align?: 'left' | 'center' | 'right';
|
|
701
|
+
/** Pin this column so it stays visible when the table scrolls horizontally */
|
|
702
|
+
sticky?: boolean;
|
|
701
703
|
}
|
|
702
704
|
|
|
703
705
|
export declare interface DataTableProps<T extends object> {
|