zaravand-ui 3.0.0 → 3.0.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/components/Table/Table.interface.d.ts +8 -0
- package/dist/components/Table/Table.variant.d.ts +4 -1
- package/dist/index.cjs +12 -12
- package/dist/index.css +1 -1
- package/dist/index.js +2917 -2889
- package/package.json +1 -1
|
@@ -110,6 +110,14 @@ export interface TableProps {
|
|
|
110
110
|
onCellSelectChange?: TableCellSelectChangeHandler;
|
|
111
111
|
getRowId?: TableRowIdResolver;
|
|
112
112
|
showNumberRow?: boolean;
|
|
113
|
+
/**
|
|
114
|
+
* When true, renders a vertical border between columns.
|
|
115
|
+
*/
|
|
116
|
+
showColumnBorder?: boolean;
|
|
117
|
+
/**
|
|
118
|
+
* When true, renders a horizontal border between rows.
|
|
119
|
+
*/
|
|
120
|
+
showRowBorder?: boolean;
|
|
113
121
|
}
|
|
114
122
|
type TableSectionProps = {
|
|
115
123
|
className?: string;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
export declare const tableContainerVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
2
|
-
export declare const tableVariants: (props?:
|
|
2
|
+
export declare const tableVariants: (props?: ({
|
|
3
|
+
showColumnBorder?: boolean | null | undefined;
|
|
4
|
+
showRowBorder?: boolean | null | undefined;
|
|
5
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
3
6
|
export declare const ticketContainerVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
4
7
|
export declare const ticketControlsVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
5
8
|
export declare const ticketTableShellVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|