@facter/ds-core 1.30.0 → 1.31.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 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,7 +2526,7 @@ var DataTable = Object.assign(DataTableRoot, {
2526
2526
  ColumnHeader: DataTableColumnHeader
2527
2527
  });
2528
2528
  function DialogMeshEffect() {
2529
- return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "absolute inset-0 overflow-hidden rounded-t-lg pointer-events-none", children: [
2529
+ return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "absolute inset-0 overflow-hidden rounded-t-lg pointer-events-none z-[1]", children: [
2530
2530
  /* @__PURE__ */ jsxRuntime.jsx(
2531
2531
  "div",
2532
2532
  {
@@ -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",