@reeverdev/ui 0.2.141 → 0.2.143

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.cts CHANGED
@@ -3610,6 +3610,8 @@ interface ColorSwatchProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonE
3610
3610
  showTransparency?: boolean;
3611
3611
  /** Callback when swatch is clicked */
3612
3612
  onSelect?: (color: string) => void;
3613
+ /** Custom ring color when selected (defaults to foreground) */
3614
+ selectedRingColor?: string;
3613
3615
  }
3614
3616
  declare const ColorSwatch: React$1.ForwardRefExoticComponent<ColorSwatchProps & React$1.RefAttributes<HTMLButtonElement>>;
3615
3617
  declare const colorSwatchPickerVariants: (props?: ({
@@ -3632,6 +3634,8 @@ interface ColorSwatchPickerProps extends Omit<React$1.HTMLAttributes<HTMLDivElem
3632
3634
  swatchShape?: "square" | "circle";
3633
3635
  /** Whether swatches are disabled */
3634
3636
  disabled?: boolean;
3637
+ /** Custom ring color when selected (defaults to foreground) */
3638
+ selectedRingColor?: string;
3635
3639
  }
3636
3640
  declare const ColorSwatchPicker: React$1.ForwardRefExoticComponent<ColorSwatchPickerProps & React$1.RefAttributes<HTMLDivElement>>;
3637
3641
 
package/dist/index.d.ts CHANGED
@@ -3610,6 +3610,8 @@ interface ColorSwatchProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonE
3610
3610
  showTransparency?: boolean;
3611
3611
  /** Callback when swatch is clicked */
3612
3612
  onSelect?: (color: string) => void;
3613
+ /** Custom ring color when selected (defaults to foreground) */
3614
+ selectedRingColor?: string;
3613
3615
  }
3614
3616
  declare const ColorSwatch: React$1.ForwardRefExoticComponent<ColorSwatchProps & React$1.RefAttributes<HTMLButtonElement>>;
3615
3617
  declare const colorSwatchPickerVariants: (props?: ({
@@ -3632,6 +3634,8 @@ interface ColorSwatchPickerProps extends Omit<React$1.HTMLAttributes<HTMLDivElem
3632
3634
  swatchShape?: "square" | "circle";
3633
3635
  /** Whether swatches are disabled */
3634
3636
  disabled?: boolean;
3637
+ /** Custom ring color when selected (defaults to foreground) */
3638
+ selectedRingColor?: string;
3635
3639
  }
3636
3640
  declare const ColorSwatchPicker: React$1.ForwardRefExoticComponent<ColorSwatchPickerProps & React$1.RefAttributes<HTMLDivElement>>;
3637
3641