auxalia-ui-kit 1.5.3 → 1.5.4

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/index.cjs CHANGED
@@ -6453,7 +6453,10 @@ var SelectScrollUpButton2 = React38.forwardRef(({ className, ...props }, ref) =>
6453
6453
  ScrollUpButton,
6454
6454
  {
6455
6455
  ref,
6456
- className: cn("flex cursor-default items-center justify-center py-1", className),
6456
+ className: cn(
6457
+ "flex cursor-default items-center justify-center py-1",
6458
+ className
6459
+ ),
6457
6460
  ...props,
6458
6461
  children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_lucide_react4.ChevronUp, { className: "size-4" })
6459
6462
  }
@@ -6463,7 +6466,10 @@ var SelectScrollDownButton2 = React38.forwardRef(({ className, ...props }, ref)
6463
6466
  ScrollDownButton,
6464
6467
  {
6465
6468
  ref,
6466
- className: cn("flex cursor-default items-center justify-center py-1", className),
6469
+ className: cn(
6470
+ "flex cursor-default items-center justify-center py-1",
6471
+ className
6472
+ ),
6467
6473
  ...props,
6468
6474
  children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_lucide_react4.ChevronDown, { className: "size-4" })
6469
6475
  }
@@ -6479,6 +6485,9 @@ var SelectContent2 = React38.forwardRef(({ className, children, position = "popp
6479
6485
  position === "popper" && "data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",
6480
6486
  className
6481
6487
  ),
6488
+ onWheel: (e) => {
6489
+ e.stopPropagation();
6490
+ },
6482
6491
  position,
6483
6492
  ...props,
6484
6493
  children: [
@@ -6488,7 +6497,7 @@ var SelectContent2 = React38.forwardRef(({ className, children, position = "popp
6488
6497
  {
6489
6498
  className: cn(
6490
6499
  "p-1",
6491
- position === "popper" && "max-h-(--radix-select-content-available-height) w-full min-w-(--radix-select-trigger-width)"
6500
+ position === "popper" && "max-h-[320px] w-full min-w-[200px]"
6492
6501
  ),
6493
6502
  children
6494
6503
  }
package/dist/index.js CHANGED
@@ -6337,7 +6337,10 @@ var SelectScrollUpButton2 = React38.forwardRef(({ className, ...props }, ref) =>
6337
6337
  ScrollUpButton,
6338
6338
  {
6339
6339
  ref,
6340
- className: cn("flex cursor-default items-center justify-center py-1", className),
6340
+ className: cn(
6341
+ "flex cursor-default items-center justify-center py-1",
6342
+ className
6343
+ ),
6341
6344
  ...props,
6342
6345
  children: /* @__PURE__ */ jsx29(ChevronUp, { className: "size-4" })
6343
6346
  }
@@ -6347,7 +6350,10 @@ var SelectScrollDownButton2 = React38.forwardRef(({ className, ...props }, ref)
6347
6350
  ScrollDownButton,
6348
6351
  {
6349
6352
  ref,
6350
- className: cn("flex cursor-default items-center justify-center py-1", className),
6353
+ className: cn(
6354
+ "flex cursor-default items-center justify-center py-1",
6355
+ className
6356
+ ),
6351
6357
  ...props,
6352
6358
  children: /* @__PURE__ */ jsx29(ChevronDown, { className: "size-4" })
6353
6359
  }
@@ -6363,6 +6369,9 @@ var SelectContent2 = React38.forwardRef(({ className, children, position = "popp
6363
6369
  position === "popper" && "data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",
6364
6370
  className
6365
6371
  ),
6372
+ onWheel: (e) => {
6373
+ e.stopPropagation();
6374
+ },
6366
6375
  position,
6367
6376
  ...props,
6368
6377
  children: [
@@ -6372,7 +6381,7 @@ var SelectContent2 = React38.forwardRef(({ className, children, position = "popp
6372
6381
  {
6373
6382
  className: cn(
6374
6383
  "p-1",
6375
- position === "popper" && "max-h-(--radix-select-content-available-height) w-full min-w-(--radix-select-trigger-width)"
6384
+ position === "popper" && "max-h-[320px] w-full min-w-[200px]"
6376
6385
  ),
6377
6386
  children
6378
6387
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "auxalia-ui-kit",
3
- "version": "1.5.3",
3
+ "version": "1.5.4",
4
4
  "description": "A React component library built with Radix UI and Tailwind CSS, designed to provide accessible and customizable UI components for modern web applications.",
5
5
  "license": "ISC",
6
6
  "author": {