@aws505/sheetsite 1.0.4 → 1.0.5
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/components/index.d.mts +683 -0
- package/dist/components/index.d.ts +683 -0
- package/dist/components/index.js +24 -41
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +24 -41
- package/dist/components/index.mjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/ui/FloatingClaimBanner.tsx +1 -17
|
@@ -2386,58 +2386,41 @@ Thank you!`
|
|
|
2386
2386
|
"bottom-left": "bottom-4 left-4",
|
|
2387
2387
|
"bottom-center": "bottom-4 left-1/2 -translate-x-1/2"
|
|
2388
2388
|
};
|
|
2389
|
-
return /* @__PURE__ */
|
|
2389
|
+
return /* @__PURE__ */ jsx16(
|
|
2390
2390
|
"div",
|
|
2391
2391
|
{
|
|
2392
2392
|
className: `
|
|
2393
2393
|
fixed z-50 ${positionClasses[position]}
|
|
2394
|
-
|
|
2394
|
+
transition-all duration-500 ease-out
|
|
2395
2395
|
${className}
|
|
2396
2396
|
`,
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
/* @__PURE__ */
|
|
2403
|
-
/* @__PURE__ */ jsxs15("div", { className: "flex-1 min-w-0", children: [
|
|
2404
|
-
/* @__PURE__ */ jsx16("p", { className: "text-sm font-medium text-gray-900", children: message }),
|
|
2405
|
-
/* @__PURE__ */ jsx16("p", { className: "text-xs text-gray-500 mt-1", children: "We built this site for you. Claim it today!" }),
|
|
2406
|
-
/* @__PURE__ */ jsxs15(
|
|
2407
|
-
"button",
|
|
2408
|
-
{
|
|
2409
|
-
onClick: handleClaim,
|
|
2410
|
-
className: "mt-3 w-full inline-flex items-center justify-center px-4 py-2 bg-primary-600 text-white text-sm font-medium rounded-lg hover:bg-primary-700 transition-colors",
|
|
2411
|
-
children: [
|
|
2412
|
-
/* @__PURE__ */ jsx16("svg", { className: "w-4 h-4 mr-2", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx16("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" }) }),
|
|
2413
|
-
buttonText
|
|
2414
|
-
]
|
|
2415
|
-
}
|
|
2416
|
-
)
|
|
2417
|
-
] }),
|
|
2418
|
-
dismissible && /* @__PURE__ */ jsx16(
|
|
2397
|
+
children: /* @__PURE__ */ jsx16("div", { className: "bg-white rounded-lg shadow-2xl border border-gray-200 p-4 max-w-sm", children: /* @__PURE__ */ jsxs15("div", { className: "flex items-start gap-3", children: [
|
|
2398
|
+
/* @__PURE__ */ jsx16("div", { className: "flex-shrink-0 w-10 h-10 bg-primary-100 rounded-full flex items-center justify-center", children: /* @__PURE__ */ jsx16("svg", { className: "w-5 h-5 text-primary-600", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx16("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" }) }) }),
|
|
2399
|
+
/* @__PURE__ */ jsxs15("div", { className: "flex-1 min-w-0", children: [
|
|
2400
|
+
/* @__PURE__ */ jsx16("p", { className: "text-sm font-medium text-gray-900", children: message }),
|
|
2401
|
+
/* @__PURE__ */ jsx16("p", { className: "text-xs text-gray-500 mt-1", children: "We built this site for you. Claim it today!" }),
|
|
2402
|
+
/* @__PURE__ */ jsxs15(
|
|
2419
2403
|
"button",
|
|
2420
2404
|
{
|
|
2421
|
-
onClick:
|
|
2422
|
-
className: "flex-
|
|
2423
|
-
|
|
2424
|
-
|
|
2405
|
+
onClick: handleClaim,
|
|
2406
|
+
className: "mt-3 w-full inline-flex items-center justify-center px-4 py-2 bg-primary-600 text-white text-sm font-medium rounded-lg hover:bg-primary-700 transition-colors",
|
|
2407
|
+
children: [
|
|
2408
|
+
/* @__PURE__ */ jsx16("svg", { className: "w-4 h-4 mr-2", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx16("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" }) }),
|
|
2409
|
+
buttonText
|
|
2410
|
+
]
|
|
2425
2411
|
}
|
|
2426
2412
|
)
|
|
2427
|
-
] })
|
|
2428
|
-
/* @__PURE__ */ jsx16(
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
opacity: 1;
|
|
2436
|
-
transform: translateY(0);
|
|
2413
|
+
] }),
|
|
2414
|
+
dismissible && /* @__PURE__ */ jsx16(
|
|
2415
|
+
"button",
|
|
2416
|
+
{
|
|
2417
|
+
onClick: handleDismiss,
|
|
2418
|
+
className: "flex-shrink-0 text-gray-400 hover:text-gray-600 transition-colors",
|
|
2419
|
+
"aria-label": "Dismiss",
|
|
2420
|
+
children: /* @__PURE__ */ jsx16("svg", { className: "w-5 h-5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx16("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" }) })
|
|
2437
2421
|
}
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
]
|
|
2422
|
+
)
|
|
2423
|
+
] }) })
|
|
2441
2424
|
}
|
|
2442
2425
|
);
|
|
2443
2426
|
}
|