@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/globals.css +154 -9
- package/dist/index.cjs +732 -498
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +731 -497
- package/dist/index.js.map +1 -1
- package/dist/styles.css +164 -9
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
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
|
-
|
|
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
|
-
|
|
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
|
|