@scripso-homepad/ui 0.4.14 → 0.4.15
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/{chunk-ANDWP4YU.js → chunk-3G3ZKFHX.js} +17 -4
- package/dist/chunk-3G3ZKFHX.js.map +1 -0
- package/dist/index.cjs +15 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/web/index.cjs +21 -4
- package/dist/web/index.cjs.map +1 -1
- package/dist/web/index.js +7 -3
- package/dist/web/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Input.tsx +9 -0
- package/src/theme/input.ts +11 -1
- package/src/web/components/Modal.tsx +5 -2
- package/src/web/components/table/TablePrimitives.tsx +2 -1
- package/dist/chunk-ANDWP4YU.js.map +0 -1
package/dist/web/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __commonJS, __require, __toESM, Input, Button } from '../chunk-
|
|
1
|
+
import { __commonJS, __require, __toESM, Input, Button } from '../chunk-3G3ZKFHX.js';
|
|
2
2
|
import { ChevronsUpDown, Search, LogOut, PanelLeftClose, PanelLeftOpen, X, Menu, ChevronLeft, ChevronRight } from 'lucide-react';
|
|
3
3
|
import { clsx } from 'clsx';
|
|
4
4
|
import { twMerge } from 'tailwind-merge';
|
|
@@ -29819,7 +29819,8 @@ function TableActionsCell({ className, children, ...props }) {
|
|
|
29819
29819
|
tableCellPaddingClassName,
|
|
29820
29820
|
tableBodyClassName,
|
|
29821
29821
|
tableStickyRightShadowClassName,
|
|
29822
|
-
|
|
29822
|
+
// Keep an opaque sticky background so scrolled cells never bleed through.
|
|
29823
|
+
disabled && "bg-white [&>*]:opacity-70",
|
|
29823
29824
|
className
|
|
29824
29825
|
),
|
|
29825
29826
|
...props,
|
|
@@ -30373,7 +30374,10 @@ function Modal({
|
|
|
30373
30374
|
"footer",
|
|
30374
30375
|
{
|
|
30375
30376
|
className: cn(
|
|
30376
|
-
footerLayout === "split" ? "grid w-full shrink-0 grid-cols-
|
|
30377
|
+
footerLayout === "split" ? "grid w-full shrink-0 grid-cols-1 gap-3 min-[400px]:grid-cols-2 min-[400px]:gap-4" : cn(
|
|
30378
|
+
"flex shrink-0 flex-col-reverse gap-3 sm:flex-row sm:gap-4",
|
|
30379
|
+
footerAlignClasses[footerAlign]
|
|
30380
|
+
)
|
|
30377
30381
|
),
|
|
30378
30382
|
children: [
|
|
30379
30383
|
/* @__PURE__ */ jsx(
|