@octanejs/shadcn 0.0.39 → 0.0.40
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@octanejs/shadcn",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.40",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -155,10 +155,8 @@
|
|
|
155
155
|
},
|
|
156
156
|
"dependencies": {
|
|
157
157
|
"class-variance-authority": "0.7.1",
|
|
158
|
-
"clsx": "^2.1.1",
|
|
159
158
|
"cn": "0.2.6",
|
|
160
|
-
"
|
|
161
|
-
"@octanejs/aria": "0.0.47",
|
|
159
|
+
"@octanejs/aria": "0.0.48",
|
|
162
160
|
"@octanejs/base-ui": "0.1.52",
|
|
163
161
|
"@octanejs/lucide": "0.1.47",
|
|
164
162
|
"@octanejs/radix": "0.1.52",
|
|
@@ -169,14 +167,17 @@
|
|
|
169
167
|
},
|
|
170
168
|
"devDependencies": {
|
|
171
169
|
"@base-ui/react": "1.8.0",
|
|
172
|
-
"@tsrx/react": "^0.2.
|
|
170
|
+
"@tsrx/react": "^0.2.71",
|
|
171
|
+
"@types/react": "^19.2.17",
|
|
172
|
+
"clsx": "^2.1.1",
|
|
173
173
|
"esbuild": "^0.28.1",
|
|
174
174
|
"lucide-react": "1.24.0",
|
|
175
175
|
"radix-ui": "^1.6.4",
|
|
176
176
|
"react": "19.2.7",
|
|
177
177
|
"react-dom": "19.2.7",
|
|
178
|
+
"tailwind-merge": "3.6.0",
|
|
178
179
|
"vitest": "^4.1.10",
|
|
179
|
-
"octane": "0.2.
|
|
180
|
+
"octane": "0.2.8"
|
|
180
181
|
},
|
|
181
182
|
"scripts": {
|
|
182
183
|
"test": "vitest run",
|
|
@@ -73,7 +73,7 @@ function SelectContent({
|
|
|
73
73
|
data-slot="select-content"
|
|
74
74
|
data-align-trigger={alignItemWithTrigger}
|
|
75
75
|
className={cn(
|
|
76
|
-
'bg-popover text-popover-foreground data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 data-closed:zoom-out-95 data-open:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 ring-foreground/10 min-w-36 rounded-lg shadow-md ring-1 duration-100 data-[side=inline-start]:slide-in-from-right-2 data-[side=inline-end]:slide-in-from-left-2
|
|
76
|
+
'bg-popover text-popover-foreground data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 data-closed:zoom-out-95 data-open:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 ring-foreground/10 min-w-36 rounded-lg shadow-md ring-1 duration-100 data-[side=inline-start]:slide-in-from-right-2 data-[side=inline-end]:slide-in-from-left-2 relative isolate z-50 max-h-(--available-height) w-(--anchor-width) origin-(--transform-origin) overflow-x-hidden overflow-y-auto data-[align-trigger=true]:animate-none',
|
|
77
77
|
className,
|
|
78
78
|
)}
|
|
79
79
|
{...props}
|