zaravand-ui 4.4.0 → 4.4.1
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/Sheet/Sheet.variant.d.ts +1 -1
- package/dist/components/Table/Table.variant.d.ts +2 -2
- package/dist/index.cjs +13 -13
- package/dist/index.css +1 -1
- package/dist/index.js +6647 -4864
- package/dist/lib/utils.d.ts +2 -5
- package/package.json +3 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const sheetOverlayVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
2
2
|
declare const sheetContentVariants: (props?: ({
|
|
3
|
-
side?: "
|
|
3
|
+
side?: "bottom" | "left" | "right" | "top" | null | undefined;
|
|
4
4
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
5
5
|
declare const sheetCloseVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
6
6
|
declare const sheetHeaderVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
@@ -11,8 +11,8 @@ export declare const tableBodyVariants: (props?: import("class-variance-authorit
|
|
|
11
11
|
export declare const tableFooterVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
12
12
|
export declare const tableRowVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
13
13
|
export declare const tableHeadVariants: (props?: ({
|
|
14
|
-
align?: "
|
|
14
|
+
align?: "end" | "start" | "center" | null | undefined;
|
|
15
15
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
16
16
|
export declare const tableCellVariants: (props?: ({
|
|
17
|
-
align?: "
|
|
17
|
+
align?: "end" | "start" | "center" | null | undefined;
|
|
18
18
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|