@webdevarif/dashui 0.1.4 → 0.1.6

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.mjs CHANGED
@@ -1442,7 +1442,7 @@ function usePagination(total, pageSize = 20) {
1442
1442
 
1443
1443
  // src/components/auth/AuthShell.tsx
1444
1444
  import { jsx as jsx32, jsxs as jsxs18 } from "react/jsx-runtime";
1445
- function AuthShell({ children, pattern = "dots" }) {
1445
+ function AuthShell({ children, pattern = "dots", maxWidth = "520px" }) {
1446
1446
  return /* @__PURE__ */ jsxs18(
1447
1447
  "div",
1448
1448
  {
@@ -1486,7 +1486,7 @@ function AuthShell({ children, pattern = "dots" }) {
1486
1486
  }
1487
1487
  }
1488
1488
  ),
1489
- /* @__PURE__ */ jsx32("div", { style: { position: "relative", zIndex: 1, width: "100%", maxWidth: "440px" }, children })
1489
+ /* @__PURE__ */ jsx32("div", { style: { position: "relative", zIndex: 1, width: "100%", maxWidth }, children })
1490
1490
  ]
1491
1491
  }
1492
1492
  );
@@ -1494,7 +1494,7 @@ function AuthShell({ children, pattern = "dots" }) {
1494
1494
 
1495
1495
  // src/components/auth/AuthCard.tsx
1496
1496
  import { jsx as jsx33 } from "react/jsx-runtime";
1497
- function AuthCard({ children }) {
1497
+ function AuthCard({ children, padding = "24px 28px" }) {
1498
1498
  return /* @__PURE__ */ jsx33(
1499
1499
  "div",
1500
1500
  {
@@ -1503,7 +1503,7 @@ function AuthCard({ children }) {
1503
1503
  border: "1px solid var(--border)",
1504
1504
  borderRadius: "calc(var(--radius, 0.5rem) * 1.5)",
1505
1505
  boxShadow: "0 4px 32px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04)",
1506
- padding: "36px 40px",
1506
+ padding,
1507
1507
  width: "100%"
1508
1508
  },
1509
1509
  children