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.mjs
CHANGED
|
@@ -85,19 +85,30 @@ var TextAtom = ({
|
|
|
85
85
|
markdown = false
|
|
86
86
|
}) => {
|
|
87
87
|
const baseStyles = {
|
|
88
|
-
h1: "scroll-m-20 text-4xl font-extrabold tracking-tight lg:text-5xl
|
|
89
|
-
h2: "scroll-m-20 border-b pb-2 text-3xl font-semibold tracking-tight first:mt-0
|
|
90
|
-
h3: "scroll-m-20 text-2xl font-semibold tracking-tight
|
|
91
|
-
h4: "scroll-m-20 text-xl font-semibold tracking-tight
|
|
92
|
-
p: "leading-7 [&:not(:first-child)]:mt-6
|
|
93
|
-
small: "text-sm font-medium leading-none
|
|
94
|
-
muted: "text-sm
|
|
95
|
-
label: "text-[10px] font-bold
|
|
88
|
+
h1: "scroll-m-20 text-4xl font-extrabold tracking-tight lg:text-5xl",
|
|
89
|
+
h2: "scroll-m-20 border-b pb-2 text-3xl font-semibold tracking-tight first:mt-0",
|
|
90
|
+
h3: "scroll-m-20 text-2xl font-semibold tracking-tight",
|
|
91
|
+
h4: "scroll-m-20 text-xl font-semibold tracking-tight",
|
|
92
|
+
p: "leading-7 [&:not(:first-child)]:mt-6",
|
|
93
|
+
small: "text-sm font-medium leading-none",
|
|
94
|
+
muted: "text-sm",
|
|
95
|
+
label: "text-[10px] font-bold uppercase tracking-widest pl-1"
|
|
96
|
+
};
|
|
97
|
+
const defaultColors = {
|
|
98
|
+
h1: "var(--gray900)",
|
|
99
|
+
h2: "var(--gray900)",
|
|
100
|
+
h3: "var(--gray900)",
|
|
101
|
+
h4: "var(--gray900)",
|
|
102
|
+
p: "var(--gray700)",
|
|
103
|
+
small: "var(--gray600)",
|
|
104
|
+
muted: "hsl(var(--muted-foreground))",
|
|
105
|
+
label: "var(--gray400)"
|
|
96
106
|
};
|
|
97
107
|
const Component2 = variant === "small" || variant === "muted" || variant === "label" ? "p" : variant;
|
|
98
108
|
const wrapperStyles = {
|
|
99
|
-
|
|
100
|
-
...backgroundColor && { backgroundColor }
|
|
109
|
+
color: `var(--px-text-color, ${defaultColors[variant] ?? "inherit"})`,
|
|
110
|
+
...backgroundColor && { backgroundColor },
|
|
111
|
+
...style
|
|
101
112
|
};
|
|
102
113
|
if (markdown) {
|
|
103
114
|
return /* @__PURE__ */ jsx(
|
|
@@ -24550,6 +24561,7 @@ var IconAtom = ({
|
|
|
24550
24561
|
size = 20,
|
|
24551
24562
|
color,
|
|
24552
24563
|
strokeWidth,
|
|
24564
|
+
textColor = "text-dark",
|
|
24553
24565
|
className,
|
|
24554
24566
|
style
|
|
24555
24567
|
}) => {
|
|
@@ -24564,7 +24576,7 @@ var IconAtom = ({
|
|
|
24564
24576
|
size,
|
|
24565
24577
|
color,
|
|
24566
24578
|
strokeWidth,
|
|
24567
|
-
className: cn("shrink-0
|
|
24579
|
+
className: cn("shrink-0", textColor, className),
|
|
24568
24580
|
style
|
|
24569
24581
|
}
|
|
24570
24582
|
);
|
|
@@ -25081,17 +25093,43 @@ var InputAtom = ({
|
|
|
25081
25093
|
disabled,
|
|
25082
25094
|
options,
|
|
25083
25095
|
config,
|
|
25096
|
+
labelColor,
|
|
25084
25097
|
className,
|
|
25085
25098
|
style
|
|
25086
25099
|
}) => {
|
|
25087
25100
|
const containerClass = cn("flex flex-col gap-2 w-full", className);
|
|
25101
|
+
const getAlignmentClass = (textAlign2) => {
|
|
25102
|
+
switch (textAlign2) {
|
|
25103
|
+
case "center":
|
|
25104
|
+
return "items-center";
|
|
25105
|
+
case "right":
|
|
25106
|
+
return "items-end";
|
|
25107
|
+
default:
|
|
25108
|
+
return "items-start";
|
|
25109
|
+
}
|
|
25110
|
+
};
|
|
25111
|
+
const alignmentClass = getAlignmentClass(style?.textAlign);
|
|
25112
|
+
const alignedContainerClass = cn(containerClass, alignmentClass);
|
|
25113
|
+
const { textAlign, ...remainingStyle } = style || {};
|
|
25114
|
+
const labelBaseStyle = {
|
|
25115
|
+
color: labelColor,
|
|
25116
|
+
backgroundColor: "transparent",
|
|
25117
|
+
background: "none"
|
|
25118
|
+
};
|
|
25088
25119
|
const renderLabel = () => {
|
|
25089
25120
|
if (!label) return null;
|
|
25090
|
-
return /* @__PURE__ */ jsxs6(
|
|
25091
|
-
|
|
25092
|
-
|
|
25093
|
-
|
|
25094
|
-
|
|
25121
|
+
return /* @__PURE__ */ jsxs6(
|
|
25122
|
+
Label,
|
|
25123
|
+
{
|
|
25124
|
+
style: labelBaseStyle,
|
|
25125
|
+
className: "text-sm font-semibold text-foreground/80 pl-0.5 border-none shadow-none",
|
|
25126
|
+
children: [
|
|
25127
|
+
label,
|
|
25128
|
+
" ",
|
|
25129
|
+
required && /* @__PURE__ */ jsx17("span", { className: "text-destructive", children: "*" })
|
|
25130
|
+
]
|
|
25131
|
+
}
|
|
25132
|
+
);
|
|
25095
25133
|
};
|
|
25096
25134
|
const renderInput = () => {
|
|
25097
25135
|
const commonProps = {
|
|
@@ -25101,10 +25139,10 @@ var InputAtom = ({
|
|
|
25101
25139
|
required,
|
|
25102
25140
|
readOnly: true,
|
|
25103
25141
|
className: cn(
|
|
25104
|
-
"rounded-xl border-border bg-
|
|
25142
|
+
"rounded-xl border-border bg-transparent focus:ring-primary shadow-none",
|
|
25105
25143
|
className
|
|
25106
25144
|
),
|
|
25107
|
-
style
|
|
25145
|
+
style: remainingStyle
|
|
25108
25146
|
};
|
|
25109
25147
|
switch (inputType) {
|
|
25110
25148
|
case "textarea":
|
|
@@ -25114,18 +25152,15 @@ var InputAtom = ({
|
|
|
25114
25152
|
/* @__PURE__ */ jsx17(
|
|
25115
25153
|
SelectTrigger,
|
|
25116
25154
|
{
|
|
25117
|
-
className: cn(
|
|
25118
|
-
|
|
25119
|
-
className
|
|
25120
|
-
),
|
|
25121
|
-
style,
|
|
25155
|
+
className: cn("rounded-xl border-border bg-transparent shadow-none", className),
|
|
25156
|
+
style: remainingStyle,
|
|
25122
25157
|
children: /* @__PURE__ */ jsx17(SelectValue, { placeholder: placeholder || "Select option" })
|
|
25123
25158
|
}
|
|
25124
25159
|
),
|
|
25125
25160
|
/* @__PURE__ */ jsx17(SelectContent, { className: "rounded-xl border-border shadow-xl", children: options?.map((opt) => /* @__PURE__ */ jsx17(SelectItem, { value: opt.value, children: opt.label }, opt.value)) })
|
|
25126
25161
|
] });
|
|
25127
25162
|
case "slider":
|
|
25128
|
-
return /* @__PURE__ */ jsx17("div", { className: "pt-2 pb-1", style, children: /* @__PURE__ */ jsx17(
|
|
25163
|
+
return /* @__PURE__ */ jsx17("div", { className: "pt-2 pb-1 w-full bg-transparent", style: remainingStyle, children: /* @__PURE__ */ jsx17(
|
|
25129
25164
|
Slider,
|
|
25130
25165
|
{
|
|
25131
25166
|
value: [defaultValue || config?.min || 0],
|
|
@@ -25137,86 +25172,69 @@ var InputAtom = ({
|
|
|
25137
25172
|
}
|
|
25138
25173
|
) });
|
|
25139
25174
|
case "checkbox":
|
|
25140
|
-
return /* @__PURE__ */ jsxs6(
|
|
25141
|
-
|
|
25142
|
-
|
|
25143
|
-
|
|
25144
|
-
|
|
25145
|
-
|
|
25146
|
-
|
|
25147
|
-
|
|
25148
|
-
|
|
25149
|
-
|
|
25150
|
-
|
|
25151
|
-
|
|
25152
|
-
|
|
25153
|
-
|
|
25154
|
-
|
|
25155
|
-
|
|
25156
|
-
|
|
25157
|
-
|
|
25158
|
-
|
|
25159
|
-
|
|
25160
|
-
{
|
|
25161
|
-
htmlFor: label,
|
|
25162
|
-
className: "text-sm font-medium leading-none cursor-pointer text-foreground/90 group-hover:text-foreground transition-colors",
|
|
25163
|
-
children: label
|
|
25164
|
-
}
|
|
25165
|
-
)
|
|
25166
|
-
]
|
|
25167
|
-
}
|
|
25168
|
-
);
|
|
25175
|
+
return /* @__PURE__ */ jsxs6("div", { className: "flex items-center space-x-3 py-1.5 px-0.5 group cursor-pointer bg-transparent", style: remainingStyle, children: [
|
|
25176
|
+
/* @__PURE__ */ jsx17(
|
|
25177
|
+
Checkbox,
|
|
25178
|
+
{
|
|
25179
|
+
id: label,
|
|
25180
|
+
checked: defaultValue,
|
|
25181
|
+
disabled,
|
|
25182
|
+
className: "rounded-[6px] border-border data-[state=checked]:bg-primary"
|
|
25183
|
+
}
|
|
25184
|
+
),
|
|
25185
|
+
/* @__PURE__ */ jsx17(
|
|
25186
|
+
"label",
|
|
25187
|
+
{
|
|
25188
|
+
htmlFor: label,
|
|
25189
|
+
style: labelBaseStyle,
|
|
25190
|
+
className: "text-sm font-medium leading-none cursor-pointer text-foreground/90 group-hover:text-foreground transition-colors",
|
|
25191
|
+
children: label
|
|
25192
|
+
}
|
|
25193
|
+
)
|
|
25194
|
+
] });
|
|
25169
25195
|
case "switch":
|
|
25170
|
-
return /* @__PURE__ */ jsxs6(
|
|
25171
|
-
|
|
25172
|
-
|
|
25173
|
-
|
|
25174
|
-
|
|
25175
|
-
|
|
25176
|
-
|
|
25177
|
-
|
|
25178
|
-
|
|
25179
|
-
|
|
25180
|
-
|
|
25181
|
-
|
|
25182
|
-
|
|
25183
|
-
|
|
25184
|
-
|
|
25185
|
-
|
|
25186
|
-
|
|
25187
|
-
|
|
25188
|
-
|
|
25189
|
-
|
|
25190
|
-
id: label,
|
|
25191
|
-
checked: defaultValue,
|
|
25192
|
-
disabled,
|
|
25193
|
-
className: "data-[state=checked]:bg-primary shadow-sm"
|
|
25194
|
-
}
|
|
25195
|
-
)
|
|
25196
|
-
]
|
|
25197
|
-
}
|
|
25198
|
-
);
|
|
25196
|
+
return /* @__PURE__ */ jsxs6("div", { className: "flex items-center justify-between py-1.5 px-0.5 bg-transparent", style: remainingStyle, children: [
|
|
25197
|
+
/* @__PURE__ */ jsx17(
|
|
25198
|
+
Label,
|
|
25199
|
+
{
|
|
25200
|
+
htmlFor: label,
|
|
25201
|
+
style: labelBaseStyle,
|
|
25202
|
+
className: "cursor-pointer text-foreground/90",
|
|
25203
|
+
children: label
|
|
25204
|
+
}
|
|
25205
|
+
),
|
|
25206
|
+
/* @__PURE__ */ jsx17(
|
|
25207
|
+
Switch,
|
|
25208
|
+
{
|
|
25209
|
+
id: label,
|
|
25210
|
+
checked: defaultValue,
|
|
25211
|
+
disabled,
|
|
25212
|
+
className: "data-[state=checked]:bg-primary"
|
|
25213
|
+
}
|
|
25214
|
+
)
|
|
25215
|
+
] });
|
|
25199
25216
|
case "radio":
|
|
25200
25217
|
return /* @__PURE__ */ jsx17(
|
|
25201
25218
|
RadioGroup,
|
|
25202
25219
|
{
|
|
25203
25220
|
value: defaultValue,
|
|
25204
25221
|
disabled,
|
|
25205
|
-
className: cn("gap-2.5", className),
|
|
25206
|
-
style,
|
|
25207
|
-
children: options?.map((opt) => /* @__PURE__ */ jsxs6("div", { className: "flex items-center space-x-3", children: [
|
|
25222
|
+
className: cn("gap-2.5 bg-transparent", className),
|
|
25223
|
+
style: remainingStyle,
|
|
25224
|
+
children: options?.map((opt) => /* @__PURE__ */ jsxs6("div", { className: "flex items-center space-x-3 bg-transparent", children: [
|
|
25208
25225
|
/* @__PURE__ */ jsx17(
|
|
25209
25226
|
RadioGroupItem,
|
|
25210
25227
|
{
|
|
25211
25228
|
value: opt.value,
|
|
25212
25229
|
id: `${label}-${opt.value}`,
|
|
25213
|
-
className: "border-border text-primary
|
|
25230
|
+
className: "border-border text-primary"
|
|
25214
25231
|
}
|
|
25215
25232
|
),
|
|
25216
25233
|
/* @__PURE__ */ jsx17(
|
|
25217
25234
|
Label,
|
|
25218
25235
|
{
|
|
25219
25236
|
htmlFor: `${label}-${opt.value}`,
|
|
25237
|
+
style: labelBaseStyle,
|
|
25220
25238
|
className: "cursor-pointer text-foreground/80 font-medium",
|
|
25221
25239
|
children: opt.label
|
|
25222
25240
|
}
|
|
@@ -25225,44 +25243,27 @@ var InputAtom = ({
|
|
|
25225
25243
|
}
|
|
25226
25244
|
);
|
|
25227
25245
|
case "otp":
|
|
25228
|
-
return /* @__PURE__ */ jsx17(
|
|
25229
|
-
|
|
25246
|
+
return /* @__PURE__ */ jsx17("div", { className: "flex justify-center py-2 bg-transparent", style: remainingStyle, children: /* @__PURE__ */ jsx17(InputOTP, { maxLength: config?.maxLength || 6, disabled, value: defaultValue, children: /* @__PURE__ */ jsx17(InputOTPGroup, { className: "gap-2 bg-transparent", children: Array.from({ length: config?.maxLength || 6 }).map((_, i) => /* @__PURE__ */ jsx17(
|
|
25247
|
+
InputOTPSlot,
|
|
25230
25248
|
{
|
|
25231
|
-
|
|
25232
|
-
|
|
25233
|
-
|
|
25234
|
-
|
|
25235
|
-
|
|
25236
|
-
maxLength: config?.maxLength || 6,
|
|
25237
|
-
disabled,
|
|
25238
|
-
value: defaultValue,
|
|
25239
|
-
children: /* @__PURE__ */ jsx17(InputOTPGroup, { className: "gap-2", children: Array.from({ length: config?.maxLength || 6 }).map((_, i) => /* @__PURE__ */ jsx17(
|
|
25240
|
-
InputOTPSlot,
|
|
25241
|
-
{
|
|
25242
|
-
index: i,
|
|
25243
|
-
className: "rounded-xl border border-border bg-background shadow-sm"
|
|
25244
|
-
},
|
|
25245
|
-
i
|
|
25246
|
-
)) })
|
|
25247
|
-
}
|
|
25248
|
-
)
|
|
25249
|
-
}
|
|
25250
|
-
);
|
|
25249
|
+
index: i,
|
|
25250
|
+
className: "rounded-xl border border-border bg-transparent"
|
|
25251
|
+
},
|
|
25252
|
+
i
|
|
25253
|
+
)) }) }) });
|
|
25251
25254
|
default:
|
|
25252
25255
|
return /* @__PURE__ */ jsx17(
|
|
25253
25256
|
Input,
|
|
25254
25257
|
{
|
|
25255
25258
|
...commonProps,
|
|
25256
25259
|
type: inputType,
|
|
25257
|
-
className: cn(
|
|
25258
|
-
"rounded-xl border-border bg-background focus:ring-primary shadow-sm h-11",
|
|
25259
|
-
className
|
|
25260
|
-
)
|
|
25260
|
+
className: cn("rounded-xl border-border bg-transparent focus:ring-primary h-11 shadow-none", className)
|
|
25261
25261
|
}
|
|
25262
25262
|
);
|
|
25263
25263
|
}
|
|
25264
25264
|
};
|
|
25265
|
-
|
|
25265
|
+
const hasPxVars = style && Object.keys(style).some((key) => key.startsWith("--px-"));
|
|
25266
|
+
return /* @__PURE__ */ jsxs6("div", { className: alignedContainerClass, style: remainingStyle, "data-px-styled": hasPxVars ? "" : void 0, children: [
|
|
25266
25267
|
inputType !== "checkbox" && inputType !== "switch" && renderLabel(),
|
|
25267
25268
|
renderInput()
|
|
25268
25269
|
] });
|
|
@@ -25300,13 +25301,20 @@ var BadgeAtom = ({
|
|
|
25300
25301
|
className,
|
|
25301
25302
|
style
|
|
25302
25303
|
}) => {
|
|
25304
|
+
const hasPxVars = style && Object.keys(style).some((key) => key.startsWith("--px-"));
|
|
25303
25305
|
const customVariants = {
|
|
25304
|
-
purple: "
|
|
25305
|
-
green: "
|
|
25306
|
+
purple: "border-primary/20 hover:bg-primary/20",
|
|
25307
|
+
green: "border-emerald-500/20 hover:bg-emerald-500/20"
|
|
25306
25308
|
};
|
|
25307
25309
|
const isCustom = ["purple", "green"].includes(variant || "");
|
|
25308
25310
|
const shadcnVariant = isCustom ? "outline" : variant;
|
|
25309
25311
|
const customClass = isCustom ? customVariants[variant] : "";
|
|
25312
|
+
const resolvedStyle = {
|
|
25313
|
+
backgroundColor: "var(--px-bg-color, transparent)",
|
|
25314
|
+
color: "var(--px-text-color, inherit)",
|
|
25315
|
+
borderColor: "var(--px-border-color, currentColor)",
|
|
25316
|
+
...style
|
|
25317
|
+
};
|
|
25310
25318
|
return /* @__PURE__ */ jsx19(
|
|
25311
25319
|
Badge2,
|
|
25312
25320
|
{
|
|
@@ -25316,7 +25324,8 @@ var BadgeAtom = ({
|
|
|
25316
25324
|
customClass,
|
|
25317
25325
|
className
|
|
25318
25326
|
),
|
|
25319
|
-
style,
|
|
25327
|
+
style: resolvedStyle,
|
|
25328
|
+
"data-px-styled": hasPxVars ? "" : void 0,
|
|
25320
25329
|
children: label
|
|
25321
25330
|
}
|
|
25322
25331
|
);
|
|
@@ -25535,9 +25544,11 @@ Progress.displayName = ProgressPrimitive.Root.displayName;
|
|
|
25535
25544
|
import { jsx as jsx27 } from "react/jsx-runtime";
|
|
25536
25545
|
var ProgressAtom = ({
|
|
25537
25546
|
value,
|
|
25538
|
-
className
|
|
25547
|
+
className,
|
|
25548
|
+
style
|
|
25539
25549
|
}) => {
|
|
25540
|
-
|
|
25550
|
+
const hasPxVars = style && Object.keys(style).some((key) => key.startsWith("--px-"));
|
|
25551
|
+
return /* @__PURE__ */ jsx27("div", { className: cn("w-full py-2", className), style, "data-px-styled": hasPxVars ? "" : void 0, children: /* @__PURE__ */ jsx27(Progress, { value, className: "h-2 bg-gray-100" }) });
|
|
25541
25552
|
};
|
|
25542
25553
|
|
|
25543
25554
|
// src/components/ui/skeleton.tsx
|
|
@@ -26710,7 +26721,8 @@ var BreadcrumbAtom = ({
|
|
|
26710
26721
|
import { jsx as jsx54 } from "react/jsx-runtime";
|
|
26711
26722
|
var SpinnerAtom = ({
|
|
26712
26723
|
size = "md",
|
|
26713
|
-
className
|
|
26724
|
+
className,
|
|
26725
|
+
style
|
|
26714
26726
|
}) => {
|
|
26715
26727
|
const sizeMap = {
|
|
26716
26728
|
sm: "h-4 w-4",
|
|
@@ -26718,14 +26730,21 @@ var SpinnerAtom = ({
|
|
|
26718
26730
|
lg: "h-8 w-8",
|
|
26719
26731
|
xl: "h-12 w-12"
|
|
26720
26732
|
};
|
|
26733
|
+
const hasPxVars = style && Object.keys(style).some((key) => key.startsWith("--px-"));
|
|
26734
|
+
const resolvedStyle = {
|
|
26735
|
+
color: "var(--px-text-color, #a855f7)",
|
|
26736
|
+
...style
|
|
26737
|
+
};
|
|
26721
26738
|
return /* @__PURE__ */ jsx54(
|
|
26722
26739
|
LoaderCircle,
|
|
26723
26740
|
{
|
|
26724
26741
|
className: cn(
|
|
26725
|
-
"animate-spin
|
|
26742
|
+
"animate-spin",
|
|
26726
26743
|
sizeMap[size] || sizeMap.md,
|
|
26727
26744
|
className
|
|
26728
|
-
)
|
|
26745
|
+
),
|
|
26746
|
+
style: resolvedStyle,
|
|
26747
|
+
"data-px-styled": hasPxVars ? "" : void 0
|
|
26729
26748
|
}
|
|
26730
26749
|
);
|
|
26731
26750
|
};
|
|
@@ -31900,51 +31919,71 @@ var FormTextareaAtom = ({
|
|
|
31900
31919
|
|
|
31901
31920
|
// src/atoms/CheckboxAtom.tsx
|
|
31902
31921
|
import { jsx as jsx65, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
31903
|
-
var CheckboxAtom = ({ id, label, checked, disabled, className, onCheckedChange }) => {
|
|
31904
|
-
|
|
31905
|
-
|
|
31906
|
-
|
|
31907
|
-
|
|
31908
|
-
|
|
31909
|
-
|
|
31910
|
-
|
|
31911
|
-
|
|
31912
|
-
|
|
31913
|
-
|
|
31914
|
-
|
|
31915
|
-
|
|
31916
|
-
|
|
31917
|
-
|
|
31918
|
-
|
|
31919
|
-
|
|
31920
|
-
|
|
31921
|
-
|
|
31922
|
-
|
|
31923
|
-
|
|
31922
|
+
var CheckboxAtom = ({ id, label, checked, disabled, className, style, onCheckedChange }) => {
|
|
31923
|
+
const hasPxVars = style && Object.keys(style).some((key) => key.startsWith("--px-"));
|
|
31924
|
+
return /* @__PURE__ */ jsxs35(
|
|
31925
|
+
"div",
|
|
31926
|
+
{
|
|
31927
|
+
className: cn("flex items-center space-x-2", className),
|
|
31928
|
+
style,
|
|
31929
|
+
"data-px-styled": hasPxVars ? "" : void 0,
|
|
31930
|
+
children: [
|
|
31931
|
+
/* @__PURE__ */ jsx65(
|
|
31932
|
+
Checkbox,
|
|
31933
|
+
{
|
|
31934
|
+
id,
|
|
31935
|
+
checked,
|
|
31936
|
+
disabled,
|
|
31937
|
+
onCheckedChange,
|
|
31938
|
+
className: "rounded"
|
|
31939
|
+
}
|
|
31940
|
+
),
|
|
31941
|
+
label && /* @__PURE__ */ jsx65(
|
|
31942
|
+
Label,
|
|
31943
|
+
{
|
|
31944
|
+
htmlFor: id,
|
|
31945
|
+
className: "text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70 cursor-pointer",
|
|
31946
|
+
style: { color: "var(--px-label-color, inherit)" },
|
|
31947
|
+
children: label
|
|
31948
|
+
}
|
|
31949
|
+
)
|
|
31950
|
+
]
|
|
31951
|
+
}
|
|
31952
|
+
);
|
|
31924
31953
|
};
|
|
31925
31954
|
|
|
31926
31955
|
// src/atoms/SwitchAtom.tsx
|
|
31927
31956
|
import { jsx as jsx66, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
31928
|
-
var SwitchAtom = ({ id, label, checked, disabled, className, onCheckedChange }) => {
|
|
31929
|
-
|
|
31930
|
-
|
|
31931
|
-
|
|
31932
|
-
|
|
31933
|
-
|
|
31934
|
-
|
|
31935
|
-
|
|
31936
|
-
|
|
31937
|
-
|
|
31938
|
-
|
|
31939
|
-
|
|
31940
|
-
|
|
31941
|
-
|
|
31942
|
-
|
|
31943
|
-
|
|
31944
|
-
|
|
31945
|
-
|
|
31946
|
-
|
|
31947
|
-
|
|
31957
|
+
var SwitchAtom = ({ id, label, checked, disabled, className, style, onCheckedChange }) => {
|
|
31958
|
+
const hasPxVars = style && Object.keys(style).some((key) => key.startsWith("--px-"));
|
|
31959
|
+
return /* @__PURE__ */ jsxs36(
|
|
31960
|
+
"div",
|
|
31961
|
+
{
|
|
31962
|
+
className: cn("flex items-center space-x-2", className),
|
|
31963
|
+
style,
|
|
31964
|
+
"data-px-styled": hasPxVars ? "" : void 0,
|
|
31965
|
+
children: [
|
|
31966
|
+
/* @__PURE__ */ jsx66(
|
|
31967
|
+
Switch,
|
|
31968
|
+
{
|
|
31969
|
+
id,
|
|
31970
|
+
checked,
|
|
31971
|
+
disabled,
|
|
31972
|
+
onCheckedChange
|
|
31973
|
+
}
|
|
31974
|
+
),
|
|
31975
|
+
label && /* @__PURE__ */ jsx66(
|
|
31976
|
+
Label,
|
|
31977
|
+
{
|
|
31978
|
+
htmlFor: id,
|
|
31979
|
+
className: "text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70 cursor-pointer",
|
|
31980
|
+
style: { color: "var(--px-label-color, inherit)" },
|
|
31981
|
+
children: label
|
|
31982
|
+
}
|
|
31983
|
+
)
|
|
31984
|
+
]
|
|
31985
|
+
}
|
|
31986
|
+
);
|
|
31948
31987
|
};
|
|
31949
31988
|
|
|
31950
31989
|
// src/atoms/LabelAtom.tsx
|
|
@@ -31955,12 +31994,16 @@ var LabelAtom = ({
|
|
|
31955
31994
|
className,
|
|
31956
31995
|
style
|
|
31957
31996
|
}) => {
|
|
31997
|
+
const resolvedStyle = {
|
|
31998
|
+
color: "var(--px-text-color, inherit)",
|
|
31999
|
+
...style
|
|
32000
|
+
};
|
|
31958
32001
|
return /* @__PURE__ */ jsx67(
|
|
31959
32002
|
Label,
|
|
31960
32003
|
{
|
|
31961
32004
|
htmlFor,
|
|
31962
32005
|
className: cn("text-sm font-semibold", className),
|
|
31963
|
-
style,
|
|
32006
|
+
style: resolvedStyle,
|
|
31964
32007
|
children: content
|
|
31965
32008
|
}
|
|
31966
32009
|
);
|
|
@@ -32045,6 +32088,7 @@ var ToggleAtom = ({
|
|
|
32045
32088
|
style,
|
|
32046
32089
|
onPressedChange
|
|
32047
32090
|
}) => {
|
|
32091
|
+
const hasPxVars = style && Object.keys(style).some((key) => key.startsWith("--px-"));
|
|
32048
32092
|
return /* @__PURE__ */ jsx70(
|
|
32049
32093
|
Toggle,
|
|
32050
32094
|
{
|
|
@@ -32055,6 +32099,7 @@ var ToggleAtom = ({
|
|
|
32055
32099
|
onPressedChange,
|
|
32056
32100
|
className: cn(className),
|
|
32057
32101
|
style,
|
|
32102
|
+
"data-px-styled": hasPxVars ? "" : void 0,
|
|
32058
32103
|
children: label
|
|
32059
32104
|
}
|
|
32060
32105
|
);
|
|
@@ -32069,18 +32114,28 @@ var SliderAtom = ({
|
|
|
32069
32114
|
step = 1,
|
|
32070
32115
|
disabled,
|
|
32071
32116
|
className,
|
|
32117
|
+
style,
|
|
32072
32118
|
onValueChange
|
|
32073
32119
|
}) => {
|
|
32120
|
+
const hasPxVars = style && Object.keys(style).some((key) => key.startsWith("--px-"));
|
|
32074
32121
|
return /* @__PURE__ */ jsx71(
|
|
32075
|
-
|
|
32122
|
+
"div",
|
|
32076
32123
|
{
|
|
32077
|
-
|
|
32078
|
-
|
|
32079
|
-
|
|
32080
|
-
|
|
32081
|
-
|
|
32082
|
-
|
|
32083
|
-
|
|
32124
|
+
style,
|
|
32125
|
+
"data-px-styled": hasPxVars ? "" : void 0,
|
|
32126
|
+
className: "w-full py-4",
|
|
32127
|
+
children: /* @__PURE__ */ jsx71(
|
|
32128
|
+
Slider,
|
|
32129
|
+
{
|
|
32130
|
+
defaultValue,
|
|
32131
|
+
max: max2,
|
|
32132
|
+
min: min2,
|
|
32133
|
+
step,
|
|
32134
|
+
disabled,
|
|
32135
|
+
onValueChange,
|
|
32136
|
+
className: cn("w-full", className)
|
|
32137
|
+
}
|
|
32138
|
+
)
|
|
32084
32139
|
}
|
|
32085
32140
|
);
|
|
32086
32141
|
};
|
|
@@ -32088,6 +32143,7 @@ var SliderAtom = ({
|
|
|
32088
32143
|
// src/atoms/RadioGroupAtom.tsx
|
|
32089
32144
|
import { jsx as jsx72, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
32090
32145
|
var RadioGroupAtom = ({ options, defaultValue, disabled, className, style, onValueChange }) => {
|
|
32146
|
+
const hasPxVars = style && Object.keys(style).some((key) => key.startsWith("--px-"));
|
|
32091
32147
|
return /* @__PURE__ */ jsx72(
|
|
32092
32148
|
RadioGroup,
|
|
32093
32149
|
{
|
|
@@ -32096,6 +32152,7 @@ var RadioGroupAtom = ({ options, defaultValue, disabled, className, style, onVal
|
|
|
32096
32152
|
onValueChange,
|
|
32097
32153
|
className: cn("grid gap-2", className),
|
|
32098
32154
|
style,
|
|
32155
|
+
"data-px-styled": hasPxVars ? "" : void 0,
|
|
32099
32156
|
children: options.map((option) => /* @__PURE__ */ jsxs38("div", { className: "flex items-center space-x-2", children: [
|
|
32100
32157
|
/* @__PURE__ */ jsx72(
|
|
32101
32158
|
RadioGroupItem,
|
|
@@ -32122,6 +32179,7 @@ var RadioGroupAtom = ({ options, defaultValue, disabled, className, style, onVal
|
|
|
32122
32179
|
// src/atoms/RadioAtom.tsx
|
|
32123
32180
|
import { jsx as jsx73, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
32124
32181
|
var RadioAtom = ({ id, label, value, checked, disabled, className, style, onValueChange }) => {
|
|
32182
|
+
const hasPxVars = style && Object.keys(style).some((key) => key.startsWith("--px-"));
|
|
32125
32183
|
return /* @__PURE__ */ jsxs39(
|
|
32126
32184
|
RadioGroup,
|
|
32127
32185
|
{
|
|
@@ -32134,6 +32192,7 @@ var RadioAtom = ({ id, label, value, checked, disabled, className, style, onValu
|
|
|
32134
32192
|
className
|
|
32135
32193
|
),
|
|
32136
32194
|
style,
|
|
32195
|
+
"data-px-styled": hasPxVars ? "" : void 0,
|
|
32137
32196
|
children: [
|
|
32138
32197
|
/* @__PURE__ */ jsx73(
|
|
32139
32198
|
RadioGroupItem,
|
|
@@ -32151,7 +32210,7 @@ var RadioAtom = ({ id, label, value, checked, disabled, className, style, onValu
|
|
|
32151
32210
|
"cursor-pointer text-sm transition-colors",
|
|
32152
32211
|
checked ? "text-primary font-semibold" : "text-muted-foreground"
|
|
32153
32212
|
),
|
|
32154
|
-
style: { color: "inherit" },
|
|
32213
|
+
style: { color: "var(--px-label-color, inherit)" },
|
|
32155
32214
|
children: label
|
|
32156
32215
|
}
|
|
32157
32216
|
)
|