pxengine 0.1.55 → 0.1.56
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 +231 -172
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -4
- package/dist/index.d.ts +10 -4
- package/dist/index.mjs +231 -172
- package/dist/index.mjs.map +1 -1
- package/dist/registry.json +18 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -408,19 +408,30 @@ var TextAtom = ({
|
|
|
408
408
|
markdown = false
|
|
409
409
|
}) => {
|
|
410
410
|
const baseStyles = {
|
|
411
|
-
h1: "scroll-m-20 text-4xl font-extrabold tracking-tight lg:text-5xl
|
|
412
|
-
h2: "scroll-m-20 border-b pb-2 text-3xl font-semibold tracking-tight first:mt-0
|
|
413
|
-
h3: "scroll-m-20 text-2xl font-semibold tracking-tight
|
|
414
|
-
h4: "scroll-m-20 text-xl font-semibold tracking-tight
|
|
415
|
-
p: "leading-7 [&:not(:first-child)]:mt-6
|
|
416
|
-
small: "text-sm font-medium leading-none
|
|
417
|
-
muted: "text-sm
|
|
418
|
-
label: "text-[10px] font-bold
|
|
411
|
+
h1: "scroll-m-20 text-4xl font-extrabold tracking-tight lg:text-5xl",
|
|
412
|
+
h2: "scroll-m-20 border-b pb-2 text-3xl font-semibold tracking-tight first:mt-0",
|
|
413
|
+
h3: "scroll-m-20 text-2xl font-semibold tracking-tight",
|
|
414
|
+
h4: "scroll-m-20 text-xl font-semibold tracking-tight",
|
|
415
|
+
p: "leading-7 [&:not(:first-child)]:mt-6",
|
|
416
|
+
small: "text-sm font-medium leading-none",
|
|
417
|
+
muted: "text-sm",
|
|
418
|
+
label: "text-[10px] font-bold uppercase tracking-widest pl-1"
|
|
419
|
+
};
|
|
420
|
+
const defaultColors = {
|
|
421
|
+
h1: "var(--gray900)",
|
|
422
|
+
h2: "var(--gray900)",
|
|
423
|
+
h3: "var(--gray900)",
|
|
424
|
+
h4: "var(--gray900)",
|
|
425
|
+
p: "var(--gray700)",
|
|
426
|
+
small: "var(--gray600)",
|
|
427
|
+
muted: "hsl(var(--muted-foreground))",
|
|
428
|
+
label: "var(--gray400)"
|
|
419
429
|
};
|
|
420
430
|
const Component2 = variant === "small" || variant === "muted" || variant === "label" ? "p" : variant;
|
|
421
431
|
const wrapperStyles = {
|
|
422
|
-
|
|
423
|
-
...backgroundColor && { backgroundColor }
|
|
432
|
+
color: `var(--px-text-color, ${defaultColors[variant] ?? "inherit"})`,
|
|
433
|
+
...backgroundColor && { backgroundColor },
|
|
434
|
+
...style
|
|
424
435
|
};
|
|
425
436
|
if (markdown) {
|
|
426
437
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
@@ -24873,6 +24884,7 @@ var IconAtom = ({
|
|
|
24873
24884
|
size = 20,
|
|
24874
24885
|
color,
|
|
24875
24886
|
strokeWidth,
|
|
24887
|
+
textColor = "text-dark",
|
|
24876
24888
|
className,
|
|
24877
24889
|
style
|
|
24878
24890
|
}) => {
|
|
@@ -24887,7 +24899,7 @@ var IconAtom = ({
|
|
|
24887
24899
|
size,
|
|
24888
24900
|
color,
|
|
24889
24901
|
strokeWidth,
|
|
24890
|
-
className: cn("shrink-0
|
|
24902
|
+
className: cn("shrink-0", textColor, className),
|
|
24891
24903
|
style
|
|
24892
24904
|
}
|
|
24893
24905
|
);
|
|
@@ -25404,17 +25416,43 @@ var InputAtom = ({
|
|
|
25404
25416
|
disabled,
|
|
25405
25417
|
options,
|
|
25406
25418
|
config,
|
|
25419
|
+
labelColor,
|
|
25407
25420
|
className,
|
|
25408
25421
|
style
|
|
25409
25422
|
}) => {
|
|
25410
25423
|
const containerClass = cn("flex flex-col gap-2 w-full", className);
|
|
25424
|
+
const getAlignmentClass = (textAlign2) => {
|
|
25425
|
+
switch (textAlign2) {
|
|
25426
|
+
case "center":
|
|
25427
|
+
return "items-center";
|
|
25428
|
+
case "right":
|
|
25429
|
+
return "items-end";
|
|
25430
|
+
default:
|
|
25431
|
+
return "items-start";
|
|
25432
|
+
}
|
|
25433
|
+
};
|
|
25434
|
+
const alignmentClass = getAlignmentClass(style?.textAlign);
|
|
25435
|
+
const alignedContainerClass = cn(containerClass, alignmentClass);
|
|
25436
|
+
const { textAlign, ...remainingStyle } = style || {};
|
|
25437
|
+
const labelBaseStyle = {
|
|
25438
|
+
color: labelColor,
|
|
25439
|
+
backgroundColor: "transparent",
|
|
25440
|
+
background: "none"
|
|
25441
|
+
};
|
|
25411
25442
|
const renderLabel = () => {
|
|
25412
25443
|
if (!label) return null;
|
|
25413
|
-
return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
25414
|
-
|
|
25415
|
-
|
|
25416
|
-
|
|
25417
|
-
|
|
25444
|
+
return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
25445
|
+
Label,
|
|
25446
|
+
{
|
|
25447
|
+
style: labelBaseStyle,
|
|
25448
|
+
className: "text-sm font-semibold text-foreground/80 pl-0.5 border-none shadow-none",
|
|
25449
|
+
children: [
|
|
25450
|
+
label,
|
|
25451
|
+
" ",
|
|
25452
|
+
required && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: "text-destructive", children: "*" })
|
|
25453
|
+
]
|
|
25454
|
+
}
|
|
25455
|
+
);
|
|
25418
25456
|
};
|
|
25419
25457
|
const renderInput = () => {
|
|
25420
25458
|
const commonProps = {
|
|
@@ -25424,10 +25462,10 @@ var InputAtom = ({
|
|
|
25424
25462
|
required,
|
|
25425
25463
|
readOnly: true,
|
|
25426
25464
|
className: cn(
|
|
25427
|
-
"rounded-xl border-border bg-
|
|
25465
|
+
"rounded-xl border-border bg-transparent focus:ring-primary shadow-none",
|
|
25428
25466
|
className
|
|
25429
25467
|
),
|
|
25430
|
-
style
|
|
25468
|
+
style: remainingStyle
|
|
25431
25469
|
};
|
|
25432
25470
|
switch (inputType) {
|
|
25433
25471
|
case "textarea":
|
|
@@ -25437,18 +25475,15 @@ var InputAtom = ({
|
|
|
25437
25475
|
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
25438
25476
|
SelectTrigger,
|
|
25439
25477
|
{
|
|
25440
|
-
className: cn(
|
|
25441
|
-
|
|
25442
|
-
className
|
|
25443
|
-
),
|
|
25444
|
-
style,
|
|
25478
|
+
className: cn("rounded-xl border-border bg-transparent shadow-none", className),
|
|
25479
|
+
style: remainingStyle,
|
|
25445
25480
|
children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(SelectValue, { placeholder: placeholder || "Select option" })
|
|
25446
25481
|
}
|
|
25447
25482
|
),
|
|
25448
25483
|
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(SelectContent, { className: "rounded-xl border-border shadow-xl", children: options?.map((opt) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(SelectItem, { value: opt.value, children: opt.label }, opt.value)) })
|
|
25449
25484
|
] });
|
|
25450
25485
|
case "slider":
|
|
25451
|
-
return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "pt-2 pb-1", style, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
25486
|
+
return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "pt-2 pb-1 w-full bg-transparent", style: remainingStyle, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
25452
25487
|
Slider,
|
|
25453
25488
|
{
|
|
25454
25489
|
value: [defaultValue || config?.min || 0],
|
|
@@ -25460,86 +25495,69 @@ var InputAtom = ({
|
|
|
25460
25495
|
}
|
|
25461
25496
|
) });
|
|
25462
25497
|
case "checkbox":
|
|
25463
|
-
return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
25464
|
-
|
|
25465
|
-
|
|
25466
|
-
|
|
25467
|
-
|
|
25468
|
-
|
|
25469
|
-
|
|
25470
|
-
|
|
25471
|
-
|
|
25472
|
-
|
|
25473
|
-
|
|
25474
|
-
|
|
25475
|
-
|
|
25476
|
-
|
|
25477
|
-
|
|
25478
|
-
|
|
25479
|
-
|
|
25480
|
-
|
|
25481
|
-
|
|
25482
|
-
|
|
25483
|
-
{
|
|
25484
|
-
htmlFor: label,
|
|
25485
|
-
className: "text-sm font-medium leading-none cursor-pointer text-foreground/90 group-hover:text-foreground transition-colors",
|
|
25486
|
-
children: label
|
|
25487
|
-
}
|
|
25488
|
-
)
|
|
25489
|
-
]
|
|
25490
|
-
}
|
|
25491
|
-
);
|
|
25498
|
+
return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "flex items-center space-x-3 py-1.5 px-0.5 group cursor-pointer bg-transparent", style: remainingStyle, children: [
|
|
25499
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
25500
|
+
Checkbox,
|
|
25501
|
+
{
|
|
25502
|
+
id: label,
|
|
25503
|
+
checked: defaultValue,
|
|
25504
|
+
disabled,
|
|
25505
|
+
className: "rounded-[6px] border-border data-[state=checked]:bg-primary"
|
|
25506
|
+
}
|
|
25507
|
+
),
|
|
25508
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
25509
|
+
"label",
|
|
25510
|
+
{
|
|
25511
|
+
htmlFor: label,
|
|
25512
|
+
style: labelBaseStyle,
|
|
25513
|
+
className: "text-sm font-medium leading-none cursor-pointer text-foreground/90 group-hover:text-foreground transition-colors",
|
|
25514
|
+
children: label
|
|
25515
|
+
}
|
|
25516
|
+
)
|
|
25517
|
+
] });
|
|
25492
25518
|
case "switch":
|
|
25493
|
-
return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
25494
|
-
|
|
25495
|
-
|
|
25496
|
-
|
|
25497
|
-
|
|
25498
|
-
|
|
25499
|
-
|
|
25500
|
-
|
|
25501
|
-
|
|
25502
|
-
|
|
25503
|
-
|
|
25504
|
-
|
|
25505
|
-
|
|
25506
|
-
|
|
25507
|
-
|
|
25508
|
-
|
|
25509
|
-
|
|
25510
|
-
|
|
25511
|
-
|
|
25512
|
-
|
|
25513
|
-
id: label,
|
|
25514
|
-
checked: defaultValue,
|
|
25515
|
-
disabled,
|
|
25516
|
-
className: "data-[state=checked]:bg-primary shadow-sm"
|
|
25517
|
-
}
|
|
25518
|
-
)
|
|
25519
|
-
]
|
|
25520
|
-
}
|
|
25521
|
-
);
|
|
25519
|
+
return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "flex items-center justify-between py-1.5 px-0.5 bg-transparent", style: remainingStyle, children: [
|
|
25520
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
25521
|
+
Label,
|
|
25522
|
+
{
|
|
25523
|
+
htmlFor: label,
|
|
25524
|
+
style: labelBaseStyle,
|
|
25525
|
+
className: "cursor-pointer text-foreground/90",
|
|
25526
|
+
children: label
|
|
25527
|
+
}
|
|
25528
|
+
),
|
|
25529
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
25530
|
+
Switch,
|
|
25531
|
+
{
|
|
25532
|
+
id: label,
|
|
25533
|
+
checked: defaultValue,
|
|
25534
|
+
disabled,
|
|
25535
|
+
className: "data-[state=checked]:bg-primary"
|
|
25536
|
+
}
|
|
25537
|
+
)
|
|
25538
|
+
] });
|
|
25522
25539
|
case "radio":
|
|
25523
25540
|
return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
25524
25541
|
RadioGroup,
|
|
25525
25542
|
{
|
|
25526
25543
|
value: defaultValue,
|
|
25527
25544
|
disabled,
|
|
25528
|
-
className: cn("gap-2.5", className),
|
|
25529
|
-
style,
|
|
25530
|
-
children: options?.map((opt) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "flex items-center space-x-3", children: [
|
|
25545
|
+
className: cn("gap-2.5 bg-transparent", className),
|
|
25546
|
+
style: remainingStyle,
|
|
25547
|
+
children: options?.map((opt) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "flex items-center space-x-3 bg-transparent", children: [
|
|
25531
25548
|
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
25532
25549
|
RadioGroupItem,
|
|
25533
25550
|
{
|
|
25534
25551
|
value: opt.value,
|
|
25535
25552
|
id: `${label}-${opt.value}`,
|
|
25536
|
-
className: "border-border text-primary
|
|
25553
|
+
className: "border-border text-primary"
|
|
25537
25554
|
}
|
|
25538
25555
|
),
|
|
25539
25556
|
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
25540
25557
|
Label,
|
|
25541
25558
|
{
|
|
25542
25559
|
htmlFor: `${label}-${opt.value}`,
|
|
25560
|
+
style: labelBaseStyle,
|
|
25543
25561
|
className: "cursor-pointer text-foreground/80 font-medium",
|
|
25544
25562
|
children: opt.label
|
|
25545
25563
|
}
|
|
@@ -25548,44 +25566,27 @@ var InputAtom = ({
|
|
|
25548
25566
|
}
|
|
25549
25567
|
);
|
|
25550
25568
|
case "otp":
|
|
25551
|
-
return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
25552
|
-
|
|
25569
|
+
return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { className: "flex justify-center py-2 bg-transparent", style: remainingStyle, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(InputOTP, { maxLength: config?.maxLength || 6, disabled, value: defaultValue, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(InputOTPGroup, { className: "gap-2 bg-transparent", children: Array.from({ length: config?.maxLength || 6 }).map((_, i) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
25570
|
+
InputOTPSlot,
|
|
25553
25571
|
{
|
|
25554
|
-
|
|
25555
|
-
|
|
25556
|
-
|
|
25557
|
-
|
|
25558
|
-
|
|
25559
|
-
maxLength: config?.maxLength || 6,
|
|
25560
|
-
disabled,
|
|
25561
|
-
value: defaultValue,
|
|
25562
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(InputOTPGroup, { className: "gap-2", children: Array.from({ length: config?.maxLength || 6 }).map((_, i) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
25563
|
-
InputOTPSlot,
|
|
25564
|
-
{
|
|
25565
|
-
index: i,
|
|
25566
|
-
className: "rounded-xl border border-border bg-background shadow-sm"
|
|
25567
|
-
},
|
|
25568
|
-
i
|
|
25569
|
-
)) })
|
|
25570
|
-
}
|
|
25571
|
-
)
|
|
25572
|
-
}
|
|
25573
|
-
);
|
|
25572
|
+
index: i,
|
|
25573
|
+
className: "rounded-xl border border-border bg-transparent"
|
|
25574
|
+
},
|
|
25575
|
+
i
|
|
25576
|
+
)) }) }) });
|
|
25574
25577
|
default:
|
|
25575
25578
|
return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
25576
25579
|
Input,
|
|
25577
25580
|
{
|
|
25578
25581
|
...commonProps,
|
|
25579
25582
|
type: inputType,
|
|
25580
|
-
className: cn(
|
|
25581
|
-
"rounded-xl border-border bg-background focus:ring-primary shadow-sm h-11",
|
|
25582
|
-
className
|
|
25583
|
-
)
|
|
25583
|
+
className: cn("rounded-xl border-border bg-transparent focus:ring-primary h-11 shadow-none", className)
|
|
25584
25584
|
}
|
|
25585
25585
|
);
|
|
25586
25586
|
}
|
|
25587
25587
|
};
|
|
25588
|
-
|
|
25588
|
+
const hasPxVars = style && Object.keys(style).some((key) => key.startsWith("--px-"));
|
|
25589
|
+
return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: alignedContainerClass, style: remainingStyle, "data-px-styled": hasPxVars ? "" : void 0, children: [
|
|
25589
25590
|
inputType !== "checkbox" && inputType !== "switch" && renderLabel(),
|
|
25590
25591
|
renderInput()
|
|
25591
25592
|
] });
|
|
@@ -25623,13 +25624,20 @@ var BadgeAtom = ({
|
|
|
25623
25624
|
className,
|
|
25624
25625
|
style
|
|
25625
25626
|
}) => {
|
|
25627
|
+
const hasPxVars = style && Object.keys(style).some((key) => key.startsWith("--px-"));
|
|
25626
25628
|
const customVariants = {
|
|
25627
|
-
purple: "
|
|
25628
|
-
green: "
|
|
25629
|
+
purple: "border-primary/20 hover:bg-primary/20",
|
|
25630
|
+
green: "border-emerald-500/20 hover:bg-emerald-500/20"
|
|
25629
25631
|
};
|
|
25630
25632
|
const isCustom = ["purple", "green"].includes(variant || "");
|
|
25631
25633
|
const shadcnVariant = isCustom ? "outline" : variant;
|
|
25632
25634
|
const customClass = isCustom ? customVariants[variant] : "";
|
|
25635
|
+
const resolvedStyle = {
|
|
25636
|
+
backgroundColor: "var(--px-bg-color, transparent)",
|
|
25637
|
+
color: "var(--px-text-color, inherit)",
|
|
25638
|
+
borderColor: "var(--px-border-color, currentColor)",
|
|
25639
|
+
...style
|
|
25640
|
+
};
|
|
25633
25641
|
return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
25634
25642
|
Badge2,
|
|
25635
25643
|
{
|
|
@@ -25639,7 +25647,8 @@ var BadgeAtom = ({
|
|
|
25639
25647
|
customClass,
|
|
25640
25648
|
className
|
|
25641
25649
|
),
|
|
25642
|
-
style,
|
|
25650
|
+
style: resolvedStyle,
|
|
25651
|
+
"data-px-styled": hasPxVars ? "" : void 0,
|
|
25643
25652
|
children: label
|
|
25644
25653
|
}
|
|
25645
25654
|
);
|
|
@@ -25858,9 +25867,11 @@ Progress.displayName = ProgressPrimitive.Root.displayName;
|
|
|
25858
25867
|
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
25859
25868
|
var ProgressAtom = ({
|
|
25860
25869
|
value,
|
|
25861
|
-
className
|
|
25870
|
+
className,
|
|
25871
|
+
style
|
|
25862
25872
|
}) => {
|
|
25863
|
-
|
|
25873
|
+
const hasPxVars = style && Object.keys(style).some((key) => key.startsWith("--px-"));
|
|
25874
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: cn("w-full py-2", className), style, "data-px-styled": hasPxVars ? "" : void 0, children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(Progress, { value, className: "h-2 bg-gray-100" }) });
|
|
25864
25875
|
};
|
|
25865
25876
|
|
|
25866
25877
|
// src/components/ui/skeleton.tsx
|
|
@@ -27033,7 +27044,8 @@ var BreadcrumbAtom = ({
|
|
|
27033
27044
|
var import_jsx_runtime54 = require("react/jsx-runtime");
|
|
27034
27045
|
var SpinnerAtom = ({
|
|
27035
27046
|
size = "md",
|
|
27036
|
-
className
|
|
27047
|
+
className,
|
|
27048
|
+
style
|
|
27037
27049
|
}) => {
|
|
27038
27050
|
const sizeMap = {
|
|
27039
27051
|
sm: "h-4 w-4",
|
|
@@ -27041,14 +27053,21 @@ var SpinnerAtom = ({
|
|
|
27041
27053
|
lg: "h-8 w-8",
|
|
27042
27054
|
xl: "h-12 w-12"
|
|
27043
27055
|
};
|
|
27056
|
+
const hasPxVars = style && Object.keys(style).some((key) => key.startsWith("--px-"));
|
|
27057
|
+
const resolvedStyle = {
|
|
27058
|
+
color: "var(--px-text-color, #a855f7)",
|
|
27059
|
+
...style
|
|
27060
|
+
};
|
|
27044
27061
|
return /* @__PURE__ */ (0, import_jsx_runtime54.jsx)(
|
|
27045
27062
|
LoaderCircle,
|
|
27046
27063
|
{
|
|
27047
27064
|
className: cn(
|
|
27048
|
-
"animate-spin
|
|
27065
|
+
"animate-spin",
|
|
27049
27066
|
sizeMap[size] || sizeMap.md,
|
|
27050
27067
|
className
|
|
27051
|
-
)
|
|
27068
|
+
),
|
|
27069
|
+
style: resolvedStyle,
|
|
27070
|
+
"data-px-styled": hasPxVars ? "" : void 0
|
|
27052
27071
|
}
|
|
27053
27072
|
);
|
|
27054
27073
|
};
|
|
@@ -32219,51 +32238,71 @@ var FormTextareaAtom = ({
|
|
|
32219
32238
|
|
|
32220
32239
|
// src/atoms/CheckboxAtom.tsx
|
|
32221
32240
|
var import_jsx_runtime65 = require("react/jsx-runtime");
|
|
32222
|
-
var CheckboxAtom = ({ id, label, checked, disabled, className, onCheckedChange }) => {
|
|
32223
|
-
|
|
32224
|
-
|
|
32225
|
-
|
|
32226
|
-
|
|
32227
|
-
|
|
32228
|
-
|
|
32229
|
-
|
|
32230
|
-
|
|
32231
|
-
|
|
32232
|
-
|
|
32233
|
-
|
|
32234
|
-
|
|
32235
|
-
|
|
32236
|
-
|
|
32237
|
-
|
|
32238
|
-
|
|
32239
|
-
|
|
32240
|
-
|
|
32241
|
-
|
|
32242
|
-
|
|
32241
|
+
var CheckboxAtom = ({ id, label, checked, disabled, className, style, onCheckedChange }) => {
|
|
32242
|
+
const hasPxVars = style && Object.keys(style).some((key) => key.startsWith("--px-"));
|
|
32243
|
+
return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(
|
|
32244
|
+
"div",
|
|
32245
|
+
{
|
|
32246
|
+
className: cn("flex items-center space-x-2", className),
|
|
32247
|
+
style,
|
|
32248
|
+
"data-px-styled": hasPxVars ? "" : void 0,
|
|
32249
|
+
children: [
|
|
32250
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
32251
|
+
Checkbox,
|
|
32252
|
+
{
|
|
32253
|
+
id,
|
|
32254
|
+
checked,
|
|
32255
|
+
disabled,
|
|
32256
|
+
onCheckedChange,
|
|
32257
|
+
className: "rounded"
|
|
32258
|
+
}
|
|
32259
|
+
),
|
|
32260
|
+
label && /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
32261
|
+
Label,
|
|
32262
|
+
{
|
|
32263
|
+
htmlFor: id,
|
|
32264
|
+
className: "text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70 cursor-pointer",
|
|
32265
|
+
style: { color: "var(--px-label-color, inherit)" },
|
|
32266
|
+
children: label
|
|
32267
|
+
}
|
|
32268
|
+
)
|
|
32269
|
+
]
|
|
32270
|
+
}
|
|
32271
|
+
);
|
|
32243
32272
|
};
|
|
32244
32273
|
|
|
32245
32274
|
// src/atoms/SwitchAtom.tsx
|
|
32246
32275
|
var import_jsx_runtime66 = require("react/jsx-runtime");
|
|
32247
|
-
var SwitchAtom = ({ id, label, checked, disabled, className, onCheckedChange }) => {
|
|
32248
|
-
|
|
32249
|
-
|
|
32250
|
-
|
|
32251
|
-
|
|
32252
|
-
|
|
32253
|
-
|
|
32254
|
-
|
|
32255
|
-
|
|
32256
|
-
|
|
32257
|
-
|
|
32258
|
-
|
|
32259
|
-
|
|
32260
|
-
|
|
32261
|
-
|
|
32262
|
-
|
|
32263
|
-
|
|
32264
|
-
|
|
32265
|
-
|
|
32266
|
-
|
|
32276
|
+
var SwitchAtom = ({ id, label, checked, disabled, className, style, onCheckedChange }) => {
|
|
32277
|
+
const hasPxVars = style && Object.keys(style).some((key) => key.startsWith("--px-"));
|
|
32278
|
+
return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
|
|
32279
|
+
"div",
|
|
32280
|
+
{
|
|
32281
|
+
className: cn("flex items-center space-x-2", className),
|
|
32282
|
+
style,
|
|
32283
|
+
"data-px-styled": hasPxVars ? "" : void 0,
|
|
32284
|
+
children: [
|
|
32285
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
32286
|
+
Switch,
|
|
32287
|
+
{
|
|
32288
|
+
id,
|
|
32289
|
+
checked,
|
|
32290
|
+
disabled,
|
|
32291
|
+
onCheckedChange
|
|
32292
|
+
}
|
|
32293
|
+
),
|
|
32294
|
+
label && /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
32295
|
+
Label,
|
|
32296
|
+
{
|
|
32297
|
+
htmlFor: id,
|
|
32298
|
+
className: "text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70 cursor-pointer",
|
|
32299
|
+
style: { color: "var(--px-label-color, inherit)" },
|
|
32300
|
+
children: label
|
|
32301
|
+
}
|
|
32302
|
+
)
|
|
32303
|
+
]
|
|
32304
|
+
}
|
|
32305
|
+
);
|
|
32267
32306
|
};
|
|
32268
32307
|
|
|
32269
32308
|
// src/atoms/LabelAtom.tsx
|
|
@@ -32274,12 +32313,16 @@ var LabelAtom = ({
|
|
|
32274
32313
|
className,
|
|
32275
32314
|
style
|
|
32276
32315
|
}) => {
|
|
32316
|
+
const resolvedStyle = {
|
|
32317
|
+
color: "var(--px-text-color, inherit)",
|
|
32318
|
+
...style
|
|
32319
|
+
};
|
|
32277
32320
|
return /* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
32278
32321
|
Label,
|
|
32279
32322
|
{
|
|
32280
32323
|
htmlFor,
|
|
32281
32324
|
className: cn("text-sm font-semibold", className),
|
|
32282
|
-
style,
|
|
32325
|
+
style: resolvedStyle,
|
|
32283
32326
|
children: content
|
|
32284
32327
|
}
|
|
32285
32328
|
);
|
|
@@ -32364,6 +32407,7 @@ var ToggleAtom = ({
|
|
|
32364
32407
|
style,
|
|
32365
32408
|
onPressedChange
|
|
32366
32409
|
}) => {
|
|
32410
|
+
const hasPxVars = style && Object.keys(style).some((key) => key.startsWith("--px-"));
|
|
32367
32411
|
return /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
32368
32412
|
Toggle,
|
|
32369
32413
|
{
|
|
@@ -32374,6 +32418,7 @@ var ToggleAtom = ({
|
|
|
32374
32418
|
onPressedChange,
|
|
32375
32419
|
className: cn(className),
|
|
32376
32420
|
style,
|
|
32421
|
+
"data-px-styled": hasPxVars ? "" : void 0,
|
|
32377
32422
|
children: label
|
|
32378
32423
|
}
|
|
32379
32424
|
);
|
|
@@ -32388,18 +32433,28 @@ var SliderAtom = ({
|
|
|
32388
32433
|
step = 1,
|
|
32389
32434
|
disabled,
|
|
32390
32435
|
className,
|
|
32436
|
+
style,
|
|
32391
32437
|
onValueChange
|
|
32392
32438
|
}) => {
|
|
32439
|
+
const hasPxVars = style && Object.keys(style).some((key) => key.startsWith("--px-"));
|
|
32393
32440
|
return /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
|
|
32394
|
-
|
|
32441
|
+
"div",
|
|
32395
32442
|
{
|
|
32396
|
-
|
|
32397
|
-
|
|
32398
|
-
|
|
32399
|
-
|
|
32400
|
-
|
|
32401
|
-
|
|
32402
|
-
|
|
32443
|
+
style,
|
|
32444
|
+
"data-px-styled": hasPxVars ? "" : void 0,
|
|
32445
|
+
className: "w-full py-4",
|
|
32446
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
|
|
32447
|
+
Slider,
|
|
32448
|
+
{
|
|
32449
|
+
defaultValue,
|
|
32450
|
+
max: max2,
|
|
32451
|
+
min: min2,
|
|
32452
|
+
step,
|
|
32453
|
+
disabled,
|
|
32454
|
+
onValueChange,
|
|
32455
|
+
className: cn("w-full", className)
|
|
32456
|
+
}
|
|
32457
|
+
)
|
|
32403
32458
|
}
|
|
32404
32459
|
);
|
|
32405
32460
|
};
|
|
@@ -32407,6 +32462,7 @@ var SliderAtom = ({
|
|
|
32407
32462
|
// src/atoms/RadioGroupAtom.tsx
|
|
32408
32463
|
var import_jsx_runtime72 = require("react/jsx-runtime");
|
|
32409
32464
|
var RadioGroupAtom = ({ options, defaultValue, disabled, className, style, onValueChange }) => {
|
|
32465
|
+
const hasPxVars = style && Object.keys(style).some((key) => key.startsWith("--px-"));
|
|
32410
32466
|
return /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
32411
32467
|
RadioGroup,
|
|
32412
32468
|
{
|
|
@@ -32415,6 +32471,7 @@ var RadioGroupAtom = ({ options, defaultValue, disabled, className, style, onVal
|
|
|
32415
32471
|
onValueChange,
|
|
32416
32472
|
className: cn("grid gap-2", className),
|
|
32417
32473
|
style,
|
|
32474
|
+
"data-px-styled": hasPxVars ? "" : void 0,
|
|
32418
32475
|
children: options.map((option) => /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)("div", { className: "flex items-center space-x-2", children: [
|
|
32419
32476
|
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
32420
32477
|
RadioGroupItem,
|
|
@@ -32441,6 +32498,7 @@ var RadioGroupAtom = ({ options, defaultValue, disabled, className, style, onVal
|
|
|
32441
32498
|
// src/atoms/RadioAtom.tsx
|
|
32442
32499
|
var import_jsx_runtime73 = require("react/jsx-runtime");
|
|
32443
32500
|
var RadioAtom = ({ id, label, value, checked, disabled, className, style, onValueChange }) => {
|
|
32501
|
+
const hasPxVars = style && Object.keys(style).some((key) => key.startsWith("--px-"));
|
|
32444
32502
|
return /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)(
|
|
32445
32503
|
RadioGroup,
|
|
32446
32504
|
{
|
|
@@ -32453,6 +32511,7 @@ var RadioAtom = ({ id, label, value, checked, disabled, className, style, onValu
|
|
|
32453
32511
|
className
|
|
32454
32512
|
),
|
|
32455
32513
|
style,
|
|
32514
|
+
"data-px-styled": hasPxVars ? "" : void 0,
|
|
32456
32515
|
children: [
|
|
32457
32516
|
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
32458
32517
|
RadioGroupItem,
|
|
@@ -32470,7 +32529,7 @@ var RadioAtom = ({ id, label, value, checked, disabled, className, style, onValu
|
|
|
32470
32529
|
"cursor-pointer text-sm transition-colors",
|
|
32471
32530
|
checked ? "text-primary font-semibold" : "text-muted-foreground"
|
|
32472
32531
|
),
|
|
32473
|
-
style: { color: "inherit" },
|
|
32532
|
+
style: { color: "var(--px-label-color, inherit)" },
|
|
32474
32533
|
children: label
|
|
32475
32534
|
}
|
|
32476
32535
|
)
|