Skip to content

Commit

Permalink
refactor(color): add/update pkg exports
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Jan 24, 2021
1 parent ee96412 commit f6826dd
Showing 1 changed file with 41 additions and 34 deletions.
75 changes: 41 additions & 34 deletions packages/color/src/index.ts
@@ -1,63 +1,70 @@
export * from "./alpha";
export * from "./analog";
export * from "./api";
export * from "./checks";
export * from "./clamp";
export * from "./closest-hue";
export * from "./color-range";
export * from "./constants";
export * from "./names";

export * from "./convert";
export * from "./cosine-gradients";
export * from "./css";
export * from "./distance";
export * from "./hcya";
export * from "./hcya-rgba";
export * from "./hsia";
export * from "./hsia-rgba";
export * from "./hsla";
export * from "./hsla-css";
export * from "./hsla-hsva";
export * from "./hsla-rgba";
export * from "./hsva";
export * from "./hsva-css";
export * from "./hsva-hsla";
export * from "./hsva-rgba";
export * from "./hue-rgba";
export * from "./int";
export * from "./int-css";
export * from "./int-rgba";
export * from "./int-srgba";
export * from "./invert";
export * from "./kelvin-rgba";
export * from "./lab";
export * from "./lab-css";
export * from "./lab-lch";
export * from "./lch";
export * from "./lch-css";
export * from "./linear";
export * from "./luminance";
export * from "./luminance-rgb";
export * from "./mix";
export * from "./names";
export * from "./oklab";
export * from "./oklab-css";
export * from "./oklab-rgba";
export * from "./oklab-xyza";
export * from "./parse-css";
export * from "./resolve";
export * from "./rgba";
export * from "./rgba-css";
export * from "./rgba-hcva";
export * from "./rgba-hcya";
export * from "./rgba-hsia";
export * from "./rgba-hsla";
export * from "./rgba-hsva";
export * from "./rgba-int";
export * from "./rgba-oklab";
export * from "./rgba-srgba";
export * from "./rgba-xyza";
export * from "./rgba-ycbcra";
export * from "./srgba";
export * from "./xyza-rgba";
export * from "./ycbcra-rgba";

export * from "./convert";
export * from "./parse-css";

export * from "./int";
export * from "./css";
export * from "./hcya";
export * from "./hsia";
export * from "./hsla";
export * from "./hsva";
export * from "./rgba";
export * from "./xyza";
export * from "./ycbcr";

export * from "./alpha";
export * from "./analog";
export * from "./checks";
export * from "./clamp";
export * from "./closest-hue";
export * from "./color-range";
export * from "./cosine-gradients";
export * from "./distance";
export * from "./invert";
export * from "./lab-lch";
export * from "./luminance";
export * from "./luminance-rgb";
export * from "./mix";
export * from "./sort";
export * from "./srgba";
export * from "./srgba-css";
export * from "./srgba-int";
export * from "./srgba-rgba";
export * from "./swatches";
export * from "./transform";
export * from "./wavelength-xyza";
export * from "./xyza";
export * from "./xyza-oklab";
export * from "./xyza-rgba";
export * from "./ycbcr";
export * from "./ycbcra-rgba";

0 comments on commit f6826dd

Please sign in to comment.