@facter/ds-core 1.30.1 → 1.32.0
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.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +8 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -742,7 +742,7 @@ interface RippleBackgroundProps extends RippleEffectProps {
|
|
|
742
742
|
declare const RippleBackground: React$1.NamedExoticComponent<RippleBackgroundProps>;
|
|
743
743
|
|
|
744
744
|
declare const iconWrapperVariants: (props?: ({
|
|
745
|
-
variant?: "default" | "destructive" | "secondary" | "success" | "accent" | null | undefined;
|
|
745
|
+
variant?: "default" | "destructive" | "secondary" | "success" | "muted" | "accent" | null | undefined;
|
|
746
746
|
size?: "sm" | "lg" | "md" | null | undefined;
|
|
747
747
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
748
748
|
interface DialogWrapperProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof iconWrapperVariants> {
|
package/dist/index.d.ts
CHANGED
|
@@ -742,7 +742,7 @@ interface RippleBackgroundProps extends RippleEffectProps {
|
|
|
742
742
|
declare const RippleBackground: React$1.NamedExoticComponent<RippleBackgroundProps>;
|
|
743
743
|
|
|
744
744
|
declare const iconWrapperVariants: (props?: ({
|
|
745
|
-
variant?: "default" | "destructive" | "secondary" | "success" | "accent" | null | undefined;
|
|
745
|
+
variant?: "default" | "destructive" | "secondary" | "success" | "muted" | "accent" | null | undefined;
|
|
746
746
|
size?: "sm" | "lg" | "md" | null | undefined;
|
|
747
747
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
748
748
|
interface DialogWrapperProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof iconWrapperVariants> {
|
package/dist/index.js
CHANGED
|
@@ -2526,16 +2526,16 @@ var DataTable = Object.assign(DataTableRoot, {
|
|
|
2526
2526
|
ColumnHeader: DataTableColumnHeader
|
|
2527
2527
|
});
|
|
2528
2528
|
function DialogMeshEffect() {
|
|
2529
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "absolute
|
|
2529
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "absolute top-0 left-0 right-0 h-[180px] overflow-hidden rounded-t-lg pointer-events-none z-[1]", children: [
|
|
2530
2530
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
2531
2531
|
"div",
|
|
2532
2532
|
{
|
|
2533
2533
|
className: "absolute inset-0",
|
|
2534
2534
|
style: {
|
|
2535
2535
|
background: `
|
|
2536
|
-
radial-gradient(ellipse at 30% -
|
|
2537
|
-
radial-gradient(ellipse at 80% -
|
|
2538
|
-
linear-gradient(to bottom, hsl(var(--primary) / 0.06), transparent
|
|
2536
|
+
radial-gradient(ellipse at 30% -30%, hsl(var(--primary) / 0.2) 0%, transparent 70%),
|
|
2537
|
+
radial-gradient(ellipse at 80% -20%, hsl(var(--primary) / 0.14) 0%, transparent 65%),
|
|
2538
|
+
linear-gradient(to bottom, hsl(var(--primary) / 0.06), transparent 80%)
|
|
2539
2539
|
`
|
|
2540
2540
|
}
|
|
2541
2541
|
}
|
|
@@ -2550,8 +2550,8 @@ function DialogMeshEffect() {
|
|
|
2550
2550
|
linear-gradient(90deg, hsl(var(--primary) / 0.07) 1px, transparent 1px)
|
|
2551
2551
|
`,
|
|
2552
2552
|
backgroundSize: "28px 28px",
|
|
2553
|
-
mask: "linear-gradient(to bottom, black 0%, transparent
|
|
2554
|
-
WebkitMask: "linear-gradient(to bottom, black 0%, transparent
|
|
2553
|
+
mask: "linear-gradient(to bottom, black 0%, transparent 90%)",
|
|
2554
|
+
WebkitMask: "linear-gradient(to bottom, black 0%, transparent 90%)"
|
|
2555
2555
|
}
|
|
2556
2556
|
}
|
|
2557
2557
|
)
|
|
@@ -2805,7 +2805,8 @@ var iconWrapperVariants2 = classVarianceAuthority.cva(
|
|
|
2805
2805
|
secondary: "bg-secondary shadow-secondary/25",
|
|
2806
2806
|
accent: "bg-accent shadow-accent/25",
|
|
2807
2807
|
destructive: "bg-red-600 shadow-red-600/25",
|
|
2808
|
-
success: "bg-green-600 shadow-green-600/25"
|
|
2808
|
+
success: "bg-green-600 shadow-green-600/25",
|
|
2809
|
+
muted: "bg-muted-foreground shadow-muted-foreground/25"
|
|
2809
2810
|
},
|
|
2810
2811
|
size: {
|
|
2811
2812
|
sm: "p-2",
|