@mindly/ui-components 5.23.0 → 5.24.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/cjs/index.js +3 -3
- package/dist/cjs/lib2/shared/ui/ItemCard/styles.d.ts +28 -14
- package/dist/cjs/lib2/shared/ui/ItemCard/types.d.ts +2 -2
- package/dist/esm/index.js +3 -3
- package/dist/esm/lib2/shared/ui/ItemCard/styles.d.ts +28 -14
- package/dist/esm/lib2/shared/ui/ItemCard/types.d.ts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,50 +1,64 @@
|
|
|
1
1
|
export declare const itemCardStyles: import("tailwind-variants").TVReturnType<{
|
|
2
2
|
variant: {
|
|
3
|
-
neutral: "bg-color-background-anti-flash-light";
|
|
3
|
+
neutral: "bg-color-background-anti-flash-light rounded-[30px]";
|
|
4
|
+
transparent: "bg-transparent rounded-[24px] border border-color-black border-opacity-35";
|
|
4
5
|
};
|
|
5
6
|
size: {
|
|
6
|
-
M: "p-5
|
|
7
|
+
M: "p-5";
|
|
8
|
+
M4: "p-4";
|
|
7
9
|
};
|
|
8
10
|
}, undefined, "", import("tailwind-variants/dist/config").TVConfig<{
|
|
9
11
|
variant: {
|
|
10
|
-
neutral: "bg-color-background-anti-flash-light";
|
|
12
|
+
neutral: "bg-color-background-anti-flash-light rounded-[30px]";
|
|
13
|
+
transparent: "bg-transparent rounded-[24px] border border-color-black border-opacity-35";
|
|
11
14
|
};
|
|
12
15
|
size: {
|
|
13
|
-
M: "p-5
|
|
16
|
+
M: "p-5";
|
|
17
|
+
M4: "p-4";
|
|
14
18
|
};
|
|
15
19
|
}, {
|
|
16
20
|
variant: {
|
|
17
|
-
neutral: "bg-color-background-anti-flash-light";
|
|
21
|
+
neutral: "bg-color-background-anti-flash-light rounded-[30px]";
|
|
22
|
+
transparent: "bg-transparent rounded-[24px] border border-color-black border-opacity-35";
|
|
18
23
|
};
|
|
19
24
|
size: {
|
|
20
|
-
M: "p-5
|
|
25
|
+
M: "p-5";
|
|
26
|
+
M4: "p-4";
|
|
21
27
|
};
|
|
22
28
|
}>, {
|
|
23
29
|
variant: {
|
|
24
|
-
neutral: "bg-color-background-anti-flash-light";
|
|
30
|
+
neutral: "bg-color-background-anti-flash-light rounded-[30px]";
|
|
31
|
+
transparent: "bg-transparent rounded-[24px] border border-color-black border-opacity-35";
|
|
25
32
|
};
|
|
26
33
|
size: {
|
|
27
|
-
M: "p-5
|
|
34
|
+
M: "p-5";
|
|
35
|
+
M4: "p-4";
|
|
28
36
|
};
|
|
29
37
|
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
30
38
|
variant: {
|
|
31
|
-
neutral: "bg-color-background-anti-flash-light";
|
|
39
|
+
neutral: "bg-color-background-anti-flash-light rounded-[30px]";
|
|
40
|
+
transparent: "bg-transparent rounded-[24px] border border-color-black border-opacity-35";
|
|
32
41
|
};
|
|
33
42
|
size: {
|
|
34
|
-
M: "p-5
|
|
43
|
+
M: "p-5";
|
|
44
|
+
M4: "p-4";
|
|
35
45
|
};
|
|
36
46
|
}, undefined, "", import("tailwind-variants/dist/config").TVConfig<{
|
|
37
47
|
variant: {
|
|
38
|
-
neutral: "bg-color-background-anti-flash-light";
|
|
48
|
+
neutral: "bg-color-background-anti-flash-light rounded-[30px]";
|
|
49
|
+
transparent: "bg-transparent rounded-[24px] border border-color-black border-opacity-35";
|
|
39
50
|
};
|
|
40
51
|
size: {
|
|
41
|
-
M: "p-5
|
|
52
|
+
M: "p-5";
|
|
53
|
+
M4: "p-4";
|
|
42
54
|
};
|
|
43
55
|
}, {
|
|
44
56
|
variant: {
|
|
45
|
-
neutral: "bg-color-background-anti-flash-light";
|
|
57
|
+
neutral: "bg-color-background-anti-flash-light rounded-[30px]";
|
|
58
|
+
transparent: "bg-transparent rounded-[24px] border border-color-black border-opacity-35";
|
|
46
59
|
};
|
|
47
60
|
size: {
|
|
48
|
-
M: "p-5
|
|
61
|
+
M: "p-5";
|
|
62
|
+
M4: "p-4";
|
|
49
63
|
};
|
|
50
64
|
}>, unknown, unknown, undefined>>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
export type ItemCardVariants = 'neutral';
|
|
2
|
+
export type ItemCardVariants = 'neutral' | 'transparent';
|
|
3
3
|
export type ItemCardProps = React.ComponentPropsWithoutRef<'div'> & {
|
|
4
4
|
variant: ItemCardVariants;
|
|
5
|
-
size?: 'M';
|
|
5
|
+
size?: 'M' | 'M4';
|
|
6
6
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1512,10 +1512,10 @@ type BadgeProps = React.ComponentPropsWithoutRef<'span'> & {
|
|
|
1512
1512
|
|
|
1513
1513
|
declare const _default$9: React.NamedExoticComponent<BadgeProps>;
|
|
1514
1514
|
|
|
1515
|
-
type ItemCardVariants = 'neutral';
|
|
1515
|
+
type ItemCardVariants = 'neutral' | 'transparent';
|
|
1516
1516
|
type ItemCardProps = React.ComponentPropsWithoutRef<'div'> & {
|
|
1517
1517
|
variant: ItemCardVariants;
|
|
1518
|
-
size?: 'M';
|
|
1518
|
+
size?: 'M' | 'M4';
|
|
1519
1519
|
};
|
|
1520
1520
|
|
|
1521
1521
|
declare const _default$8: React.NamedExoticComponent<ItemCardProps>;
|