@nswds/app 1.100.0 → 1.102.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.cts CHANGED
@@ -827,7 +827,10 @@ declare function CollapsibleContent$1({ ...props }: React.ComponentProps<typeof
827
827
 
828
828
  declare function ColorCard({ name, token, hex, rgb, hsl, oklch, format, viewMode }: ColorCardProps): react_jsx_runtime.JSX.Element;
829
829
 
830
- declare function ColorPairingTool(): react_jsx_runtime.JSX.Element;
830
+ type ColorPairingToolProps = {
831
+ visibleFormats?: Format[];
832
+ };
833
+ declare function ColorPairingTool({ visibleFormats, }?: ColorPairingToolProps): react_jsx_runtime.JSX.Element;
831
834
 
832
835
  declare function ColorSwatches({ theme, format, viewMode }: ColorSwatchesProps): react_jsx_runtime.JSX.Element;
833
836
 
package/dist/index.d.ts CHANGED
@@ -827,7 +827,10 @@ declare function CollapsibleContent$1({ ...props }: React.ComponentProps<typeof
827
827
 
828
828
  declare function ColorCard({ name, token, hex, rgb, hsl, oklch, format, viewMode }: ColorCardProps): react_jsx_runtime.JSX.Element;
829
829
 
830
- declare function ColorPairingTool(): react_jsx_runtime.JSX.Element;
830
+ type ColorPairingToolProps = {
831
+ visibleFormats?: Format[];
832
+ };
833
+ declare function ColorPairingTool({ visibleFormats, }?: ColorPairingToolProps): react_jsx_runtime.JSX.Element;
831
834
 
832
835
  declare function ColorSwatches({ theme, format, viewMode }: ColorSwatchesProps): react_jsx_runtime.JSX.Element;
833
836