zaravand-ui 4.4.0 → 4.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/components/Select/Select.interface.d.ts +3 -0
- 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 +6927 -5026
- package/dist/lib/utils.d.ts +2 -5
- package/package.json +73 -71
|
@@ -21,6 +21,8 @@ export interface SelectProps extends Omit<React.ComponentProps<typeof SelectPrim
|
|
|
21
21
|
value: string;
|
|
22
22
|
label: string;
|
|
23
23
|
disabled?: boolean;
|
|
24
|
+
/** Options sharing the same `group` are rendered under one heading, in first-appearance order. */
|
|
25
|
+
group?: string;
|
|
24
26
|
}>;
|
|
25
27
|
remoteOptions?: {
|
|
26
28
|
loadOptions: (input: {
|
|
@@ -32,6 +34,7 @@ export interface SelectProps extends Omit<React.ComponentProps<typeof SelectPrim
|
|
|
32
34
|
value: string;
|
|
33
35
|
label: string;
|
|
34
36
|
disabled?: boolean;
|
|
37
|
+
group?: string;
|
|
35
38
|
}>;
|
|
36
39
|
totalItems?: number;
|
|
37
40
|
hasMore?: boolean;
|
|
@@ -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;
|