@stokelp/ui 1.40.1 → 1.41.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.
@@ -0,0 +1,3 @@
1
+ import { SlotRecipeConfig } from '@pandacss/dev';
2
+
3
+ export declare const checkboxCardRecipe: SlotRecipeConfig;
@@ -0,0 +1,76 @@
1
+ export declare const groupCard: {
2
+ root: {
3
+ fontFamily: "satoshi";
4
+ WebkitTapHighlightColor: "transparent";
5
+ _disabled: {
6
+ '& [data-recipe-slot="title"],[data-recipe-slot="itemTitle"]': {
7
+ color: "grey.400";
8
+ };
9
+ '& [data-recipe-slot="description"],[data-recipe-slot="itemDescription"]': {
10
+ color: "grey.200";
11
+ };
12
+ '& [data-recipe-slot="image"],[data-recipe-slot="itemImage"]': {
13
+ filter: "grayscale(1)";
14
+ };
15
+ userSelect: "none";
16
+ pointerEvents: "none";
17
+ };
18
+ alignItems: "center";
19
+ cursor: "pointer";
20
+ display: "flex";
21
+ gap: "space-12";
22
+ borderRadius: "radius-8";
23
+ border: "1px solid";
24
+ transitionProperty: "border-color, box-shadow";
25
+ boxShadow: {
26
+ _hover: "0px 4px 8px 0px {colors.secondary.500/20}";
27
+ };
28
+ bg: {
29
+ base: "white";
30
+ _disabled: "grey.50";
31
+ };
32
+ transitionDuration: "normal";
33
+ borderColor: {
34
+ base: "primary.100";
35
+ _hover: "primary.500";
36
+ _checked: "primary.500";
37
+ _disabled: "grey.100";
38
+ };
39
+ };
40
+ content: {
41
+ flex: number;
42
+ display: "flex";
43
+ flexDirection: "column";
44
+ };
45
+ image: {
46
+ borderRadius: "radius-4";
47
+ };
48
+ title: {
49
+ color: "text.heading";
50
+ fontWeight: "bold";
51
+ };
52
+ description: {
53
+ color: "text";
54
+ };
55
+ };
56
+ export declare const groupCardVariants: {
57
+ size: {
58
+ md: {
59
+ root: {
60
+ px: "space-16";
61
+ py: "space-12";
62
+ };
63
+ title: {
64
+ textStyle: "body.md";
65
+ };
66
+ image: {
67
+ objectFit: "cover";
68
+ height: "size-32";
69
+ width: "size-32";
70
+ };
71
+ description: {
72
+ textStyle: "body.sm";
73
+ };
74
+ };
75
+ };
76
+ };
@@ -38,4 +38,7 @@ export declare const slotRecipes: {
38
38
  popover: SlotRecipeConfig;
39
39
  pagination: SlotRecipeConfig;
40
40
  productCardCatalog: SlotRecipeConfig;
41
+ switchCard: SlotRecipeConfig;
42
+ radioCardGroup: SlotRecipeConfig;
43
+ checkboxCard: SlotRecipeConfig;
41
44
  };
@@ -0,0 +1,2 @@
1
+ import { SlotRecipeConfig } from '@pandacss/types';
2
+ export declare const radioCardGroupRecipe: SlotRecipeConfig;
@@ -0,0 +1,3 @@
1
+ import { SlotRecipeConfig } from '@pandacss/dev';
2
+
3
+ export declare const switchCardRecipe: SlotRecipeConfig;