slideover.ts
3.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
const side = [
"top",
"right",
"bottom",
"left"
] as const
export default {
"slots": {
"overlay": "fixed inset-0 bg-elevated/75",
"content": "fixed bg-default divide-y divide-default sm:ring ring-default sm:shadow-lg flex flex-col focus:outline-none",
"header": "flex items-center gap-1.5 p-4 sm:px-6 min-h-(--ui-header-height)",
"wrapper": "",
"body": "flex-1 overflow-y-auto p-4 sm:p-6",
"footer": "flex items-center gap-1.5 p-4 sm:px-6",
"title": "text-highlighted font-semibold",
"description": "mt-1 text-muted text-sm",
"close": "absolute top-4 end-4"
},
"variants": {
"side": {
"top": {
"content": ""
},
"right": {
"content": "max-w-md"
},
"bottom": {
"content": ""
},
"left": {
"content": "max-w-md"
}
},
"inset": {
"true": {
"content": "rounded-lg"
}
},
"transition": {
"true": {
"overlay": "data-[state=open]:animate-[fade-in_200ms_ease-out] data-[state=closed]:animate-[fade-out_200ms_ease-in]"
}
}
},
"compoundVariants": [
{
"side": "top" as typeof side[number],
"inset": true,
"class": {
"content": "max-h-[calc(100%-2rem)] inset-x-4 top-4"
}
},
{
"side": "top" as typeof side[number],
"inset": false,
"class": {
"content": "max-h-full inset-x-0 top-0"
}
},
{
"side": "right" as typeof side[number],
"inset": true,
"class": {
"content": "w-[calc(100%-2rem)] inset-y-4 right-4"
}
},
{
"side": "right" as typeof side[number],
"inset": false,
"class": {
"content": "w-full inset-y-0 right-0"
}
},
{
"side": "bottom" as typeof side[number],
"inset": true,
"class": {
"content": "max-h-[calc(100%-2rem)] inset-x-4 bottom-4"
}
},
{
"side": "bottom" as typeof side[number],
"inset": false,
"class": {
"content": "max-h-full inset-x-0 bottom-0"
}
},
{
"side": "left" as typeof side[number],
"inset": true,
"class": {
"content": "w-[calc(100%-2rem)] inset-y-4 left-4"
}
},
{
"side": "left" as typeof side[number],
"inset": false,
"class": {
"content": "w-full inset-y-0 left-0"
}
},
{
"transition": true,
"side": "top" as typeof side[number],
"class": {
"content": "data-[state=open]:animate-[slide-in-from-top_200ms_ease-in-out] data-[state=closed]:animate-[slide-out-to-top_200ms_ease-in-out]"
}
},
{
"transition": true,
"side": "right" as typeof side[number],
"class": {
"content": "data-[state=open]:animate-[slide-in-from-right_200ms_ease-in-out] data-[state=closed]:animate-[slide-out-to-right_200ms_ease-in-out]"
}
},
{
"transition": true,
"side": "bottom" as typeof side[number],
"class": {
"content": "data-[state=open]:animate-[slide-in-from-bottom_200ms_ease-in-out] data-[state=closed]:animate-[slide-out-to-bottom_200ms_ease-in-out]"
}
},
{
"transition": true,
"side": "left" as typeof side[number],
"class": {
"content": "data-[state=open]:animate-[slide-in-from-left_200ms_ease-in-out] data-[state=closed]:animate-[slide-out-to-left_200ms_ease-in-out]"
}
}
]
}