@design-edito/tools 0.4.4 → 0.4.6
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/TODO.md +269 -0
- package/agnostic/arrays/dedupe/index.js +9 -9
- package/agnostic/arrays/dedupe/index.test.js +24 -0
- package/agnostic/arrays/find-duplicates/index.js +34 -24
- package/agnostic/arrays/find-duplicates/index.test.js +31 -0
- package/agnostic/arrays/index.d.ts +1 -1
- package/agnostic/arrays/index.js +1 -1
- package/agnostic/arrays/is-array-of/index.js +28 -26
- package/agnostic/arrays/is-array-of/index.test.js +56 -0
- package/agnostic/arrays/make/index.js +11 -8
- package/agnostic/arrays/make/index.test.js +10 -0
- package/agnostic/arrays/random-pick/index.js +40 -9
- package/agnostic/arrays/random-pick/index.test.js +23 -0
- package/agnostic/arrays/shuffle/index.js +15 -13
- package/agnostic/arrays/shuffle/index.test.js +14 -0
- package/agnostic/booleans/is-falsy/index.js +26 -12
- package/agnostic/booleans/is-falsy/index.test.js +26 -0
- package/agnostic/colors/channels/index.js +145 -19
- package/agnostic/colors/channels/index.test.js +64 -0
- package/agnostic/colors/contrast/index.js +23 -30
- package/agnostic/colors/contrast/index.test.js +21 -0
- package/agnostic/colors/convert/index.js +839 -46
- package/agnostic/colors/convert/index.test.js +98 -0
- package/agnostic/colors/cssColorsMap.js +153 -0
- package/agnostic/colors/distance/index.js +65 -53
- package/agnostic/colors/distance/index.test.js +21 -0
- package/agnostic/colors/grayscale/index.js +96 -137
- package/agnostic/colors/grayscale/index.test.js +34 -0
- package/agnostic/colors/invert/index.js +33 -44
- package/agnostic/colors/invert/index.test.js +31 -0
- package/agnostic/colors/lerp/index.js +74 -88
- package/agnostic/colors/lerp/index.test.js +55 -0
- package/agnostic/colors/luminance/index.js +19 -13
- package/agnostic/colors/luminance/index.test.js +30 -0
- package/agnostic/colors/palette/index.js +80 -87
- package/agnostic/colors/palette/index.test.js +35 -0
- package/agnostic/colors/rotate/index.js +41 -14
- package/agnostic/colors/rotate/index.test.js +45 -0
- package/agnostic/colors/tidy/index.js +80 -12
- package/agnostic/colors/tidy/index.test.js +45 -0
- package/agnostic/colors/typechecks/index.js +196 -25
- package/agnostic/colors/typechecks/index.test.js +113 -0
- package/agnostic/colors/types.js +1 -0
- package/agnostic/css/bem/index.js +135 -160
- package/agnostic/css/clss/index.js +66 -7
- package/agnostic/css/clss/index.test.js +60 -0
- package/agnostic/css/generate-nice-color/index.js +26 -73
- package/agnostic/css/generate-nice-color/index.test.js +8 -0
- package/agnostic/css/index.d.ts +1 -1
- package/agnostic/css/index.js +1 -1
- package/agnostic/css/is-valid-css-class-name/index.js +15 -9
- package/agnostic/css/is-valid-css-class-name/index.test.js +36 -0
- package/agnostic/css/scale/index.js +37 -37
- package/agnostic/css/scale/index.test.js +71 -0
- package/agnostic/css/styles-set/index.js +151 -169
- package/agnostic/errors/register/index.js +45 -51
- package/agnostic/errors/unknown-to-string/index.js +18 -7
- package/agnostic/errors/unknown-to-string/index.test.js +35 -0
- package/agnostic/html/get-node-ancestors/index.js +31 -8
- package/agnostic/html/get-node-ancestors/index.test.js +58 -0
- package/agnostic/html/get-position-inside-parent/index.js +13 -10
- package/agnostic/html/get-position-inside-parent/index.test.js +56 -0
- package/agnostic/html/hyper-json/cast/index.js +137 -24
- package/agnostic/html/hyper-json/index.js +23 -50
- package/agnostic/html/hyper-json/method/index.js +10 -7
- package/agnostic/html/hyper-json/serialize/index.js +91 -11
- package/agnostic/html/hyper-json/smart-tags/coalesced/add/index.js +16 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/addclass/index.js +30 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/and/index.js +15 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/append/index.js +36 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/at/index.js +47 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/call/index.js +50 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/clone/index.js +11 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/deleteproperties/index.js +49 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/equals/index.js +24 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/getattribute/index.js +28 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/getproperties/index.js +21 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/getproperty/index.js +73 -26
- package/agnostic/html/hyper-json/smart-tags/coalesced/hjparse/index.js +24 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/hjstringify/index.js +93 -28
- package/agnostic/html/hyper-json/smart-tags/coalesced/if/index.js +22 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/index.d.ts +14 -14
- package/agnostic/html/hyper-json/smart-tags/coalesced/index.js +14 -14
- package/agnostic/html/hyper-json/smart-tags/coalesced/initialize/index.js +39 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/join/index.js +18 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/length/index.js +23 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/map/index.js +33 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/negate/index.js +11 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/notrailing/index.js +35 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/or/index.js +15 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/pickrandom/index.js +19 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/populate/index.js +61 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/print/index.js +25 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/push/index.js +11 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/pusheach/index.js +28 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/recordtoarray/index.js +11 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/removeattribute/index.js +58 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/removeclass/index.js +30 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/renameproperty/index.js +34 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/replace/index.js +56 -26
- package/agnostic/html/hyper-json/smart-tags/coalesced/select/index.js +34 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/set/index.js +31 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/setattribute/index.js +58 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/setproperty/index.js +237 -26
- package/agnostic/html/hyper-json/smart-tags/coalesced/sorton/index.js +93 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/split/index.js +22 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/spread/index.js +24 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/toarray/index.js +12 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/toboolean/index.js +12 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/toelement/index.js +19 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/toggleclass/index.js +30 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/tonodelist/index.js +12 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/tonull/index.js +11 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/tonumber/index.js +12 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/torecord/index.js +12 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/toref/index.js +12 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/tostring/index.js +12 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/totext/index.js +12 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/transformselected/index.js +86 -24
- package/agnostic/html/hyper-json/smart-tags/coalesced/trim/index.js +16 -24
- package/agnostic/html/hyper-json/smart-tags/index.js +31 -10
- package/agnostic/html/hyper-json/smart-tags/isolated/any/index.js +14 -11
- package/agnostic/html/hyper-json/smart-tags/isolated/array/index.js +14 -11
- package/agnostic/html/hyper-json/smart-tags/isolated/boolean/index.js +13 -24
- package/agnostic/html/hyper-json/smart-tags/isolated/element/index.js +26 -24
- package/agnostic/html/hyper-json/smart-tags/isolated/get/index.js +20 -24
- package/agnostic/html/hyper-json/smart-tags/isolated/guess/index.js +59 -24
- package/agnostic/html/hyper-json/smart-tags/isolated/index.d.ts +1 -1
- package/agnostic/html/hyper-json/smart-tags/isolated/index.js +1 -1
- package/agnostic/html/hyper-json/smart-tags/isolated/nodelist/index.js +20 -24
- package/agnostic/html/hyper-json/smart-tags/isolated/null/index.js +10 -11
- package/agnostic/html/hyper-json/smart-tags/isolated/number/index.js +18 -24
- package/agnostic/html/hyper-json/smart-tags/isolated/record/index.js +14 -24
- package/agnostic/html/hyper-json/smart-tags/isolated/ref/index.js +45 -25
- package/agnostic/html/hyper-json/smart-tags/isolated/string/index.js +18 -24
- package/agnostic/html/hyper-json/smart-tags/isolated/text/index.js +20 -24
- package/agnostic/html/hyper-json/transformer/index.js +113 -9
- package/agnostic/html/hyper-json/tree/index.js +423 -24
- package/agnostic/html/hyper-json/types/index.js +28 -7
- package/agnostic/html/hyper-json/utils/index.js +516 -24
- package/agnostic/html/index.d.ts +2 -2
- package/agnostic/html/index.js +2 -2
- package/agnostic/html/insert-node/index.js +28 -7
- package/agnostic/html/insert-node/index.test.js +73 -0
- package/agnostic/html/placeholders/index.js +26 -31
- package/agnostic/html/replace-in-element/index.js +31 -25
- package/agnostic/html/replace-in-element/index.test.js +80 -0
- package/agnostic/html/selector-to-element/index.js +53 -33
- package/agnostic/html/selector-to-element/index.test.js +69 -0
- package/agnostic/html/string-to-nodes/index.js +24 -19
- package/agnostic/html/string-to-nodes/index.test.js +54 -0
- package/agnostic/index.d.ts +1 -1
- package/agnostic/index.js +1 -1
- package/agnostic/misc/assert/index.js +60 -58
- package/agnostic/misc/cast/index.js +132 -23
- package/agnostic/misc/cast/index.test.js +134 -0
- package/agnostic/misc/connection/index.js +55 -30
- package/agnostic/misc/connection/index.test.js +143 -0
- package/agnostic/misc/crawler/index.js +68 -44
- package/agnostic/misc/crawler/index.test.js +56 -0
- package/agnostic/misc/crossenv/detect-runtime/index.js +41 -16
- package/agnostic/misc/crossenv/detect-runtime/index.test.js +24 -0
- package/agnostic/misc/crossenv/types.js +21 -7
- package/agnostic/misc/crossenv/window/index.js +49 -13
- package/agnostic/misc/crossenv/window/index.test.js +24 -0
- package/agnostic/misc/data-size/index.js +182 -296
- package/agnostic/misc/data-size/index.test.js +100 -0
- package/agnostic/misc/data-size/types.js +1 -0
- package/agnostic/misc/index.d.ts +1 -1
- package/agnostic/misc/index.js +1 -1
- package/agnostic/misc/is-constructor-function/index.js +13 -7
- package/agnostic/misc/is-constructor-function/index.test.js +36 -0
- package/agnostic/misc/is-nullish/index.js +26 -11
- package/agnostic/misc/is-nullish/index.test.js +44 -0
- package/agnostic/misc/logs/logger/index.js +115 -142
- package/agnostic/misc/logs/make-text-block/index.js +14 -7
- package/agnostic/misc/logs/styles/index.js +30 -7
- package/agnostic/misc/lorem-ipsum/index.js +51 -186
- package/agnostic/misc/lorem-ipsum/index.test.js +49 -0
- package/agnostic/misc/normalize-extension/index.js +99 -90
- package/agnostic/misc/normalize-extension/index.test.js +40 -0
- package/agnostic/misc/outcome/index.js +21 -11
- package/agnostic/misc/outcome/index.test.js +40 -0
- package/agnostic/numbers/absolute-modulo/index.js +10 -7
- package/agnostic/numbers/absolute-modulo/index.test.js +23 -0
- package/agnostic/numbers/approximate-rational/index.js +86 -71
- package/agnostic/numbers/approximate-rational/index.test.js +90 -0
- package/agnostic/numbers/clamp/index.js +13 -7
- package/agnostic/numbers/clamp/index.test.js +24 -0
- package/agnostic/numbers/geometric-progressions/index.js +26 -7
- package/agnostic/numbers/geometric-progressions/index.test.js +45 -0
- package/agnostic/numbers/index.d.ts +1 -1
- package/agnostic/numbers/index.js +1 -1
- package/agnostic/numbers/interpolate/index.js +25 -12
- package/agnostic/numbers/interpolate/index.test.js +40 -0
- package/agnostic/numbers/round/index.js +33 -11
- package/agnostic/numbers/round/index.test.js +56 -0
- package/agnostic/objects/deep-get-property/index.js +30 -26
- package/agnostic/objects/deep-get-property/index.test.js +59 -0
- package/agnostic/objects/enums/is-in-enum/index.js +18 -7
- package/agnostic/objects/enums/is-in-enum/index.test.js +100 -0
- package/agnostic/objects/flatten-getters/index.js +15 -16
- package/agnostic/objects/flatten-getters/index.test.js +78 -0
- package/agnostic/objects/index.d.ts +3 -3
- package/agnostic/objects/index.js +3 -3
- package/agnostic/objects/is-object/index.js +18 -9
- package/agnostic/objects/is-object/index.test.js +60 -0
- package/agnostic/objects/is-record/index.js +13 -7
- package/agnostic/objects/is-record/index.test.js +48 -0
- package/agnostic/objects/record-format/index.js +18 -14
- package/agnostic/objects/record-format/index.test.js +92 -0
- package/agnostic/objects/record-map/index.js +18 -7
- package/agnostic/objects/record-map/index.test.js +56 -0
- package/agnostic/objects/sort-keys/index.js +15 -13
- package/agnostic/objects/sort-keys/index.test.js +37 -0
- package/agnostic/objects/validation/index.js +21 -10
- package/agnostic/objects/validation/index.test.js +72 -0
- package/agnostic/optim/index.d.ts +1 -1
- package/agnostic/optim/index.js +1 -1
- package/agnostic/optim/memoize/index.js +24 -18
- package/agnostic/optim/memoize/index.test.js +30 -0
- package/agnostic/optim/throttle-debounce/index.js +120 -104
- package/agnostic/optim/throttle-debounce/index.test.js +44 -0
- package/agnostic/optim/throttle-debounce/types.js +1 -0
- package/agnostic/random/hex-char/index.js +9 -9
- package/agnostic/random/hex-char/index.test.js +20 -0
- package/agnostic/random/index.d.ts +1 -1
- package/agnostic/random/index.js +1 -1
- package/agnostic/random/random/index.js +19 -9
- package/agnostic/random/random/index.test.js +73 -0
- package/agnostic/random/uuid/index.js +31 -12
- package/agnostic/random/uuid/index.test.js +45 -0
- package/agnostic/regexps/index.js +126 -86
- package/agnostic/regexps/index.test.js +108 -0
- package/agnostic/sanitization/file-name/index.js +25 -7
- package/agnostic/sanitization/file-name/index.test.js +23 -0
- package/agnostic/sanitization/html/index.js +172 -116
- package/agnostic/sanitization/path/index.js +23 -13
- package/agnostic/sanitization/path/index.test.js +18 -0
- package/agnostic/sanitization/types.js +1 -0
- package/agnostic/sanitization/user-input/index.js +36 -26
- package/agnostic/sanitization/user-input/index.test.js +31 -0
- package/agnostic/strings/char-codes/index.js +123 -57
- package/agnostic/strings/matches/index.js +38 -11
- package/agnostic/strings/normalize-indent/index.js +34 -18
- package/agnostic/strings/parse-table/index.js +153 -84
- package/agnostic/strings/replace-all/index.js +36 -17
- package/agnostic/strings/to-alphanum/index.js +23 -10
- package/agnostic/strings/trim/index.js +24 -9
- package/agnostic/time/dates/format-date/index.js +140 -74
- package/agnostic/time/duration/index.js +106 -142
- package/agnostic/time/timeout/index.js +24 -18
- package/agnostic/time/transitions/index.js +200 -156
- package/agnostic/time/wait/index.js +11 -7
- package/agnostic/typescript/types.js +1 -0
- package/components/BeforeAfter/index.controlled.js +95 -0
- package/components/BeforeAfter/index.js +54 -152
- package/components/BeforeAfter/utils.js +9 -0
- package/components/Disclaimer/index.js +50 -9
- package/components/Drawer/index.js +82 -88
- package/components/EventListener/index.js +29 -47
- package/components/Gallery/index.js +146 -190
- package/components/Gallery/utils.js +12 -0
- package/components/Image/index.js +67 -106
- package/components/IntersectionObserver/index.js +62 -9
- package/components/Overlayer/index.js +59 -66
- package/components/Paginator/index.js +125 -9
- package/components/ResizeObserver/index.js +68 -9
- package/components/ResizeObserver/style.module.css +0 -0
- package/components/Scrllgngn/index.js +176 -183
- package/components/ScrollListener/index.js +97 -171
- package/components/ScrollListener/utils.js +51 -0
- package/components/Sequencer/index.controlled.js +67 -0
- package/components/Sequencer/index.js +105 -160
- package/components/ShadowRoot/index.js +42 -63
- package/components/Subtitles/index.js +107 -13
- package/components/Subtitles/types.js +1 -0
- package/components/Subtitles/utils.js +102 -0
- package/components/Theatre/index.js +89 -9
- package/components/UIModule/index.js +156 -146
- package/components/Video/index.d.ts +10 -0
- package/components/Video/index.js +292 -503
- package/components/Video/utils.js +137 -0
- package/components/_WIP_AudioQuote/index.js +1 -0
- package/components/_WIP_Icon/index.js +1 -0
- package/components/index.d.ts +2 -2
- package/components/index.js +2 -2
- package/components/public-classnames.js +18 -0
- package/components/utils/index.js +12 -7
- package/components/utils/types.js +1 -0
- package/index.d.ts +1 -2
- package/index.js +1 -2
- package/node/@aws-s3/index.test.js +6 -0
- package/node/@aws-s3/storage/directory/copy-dir/index.js +68 -9
- package/node/@aws-s3/storage/directory/index.d.ts +1 -1
- package/node/@aws-s3/storage/directory/index.js +1 -1
- package/node/@aws-s3/storage/directory/list/index.js +33 -9
- package/node/@aws-s3/storage/directory/move-dir/index.js +69 -9
- package/node/@aws-s3/storage/directory/remove-dir/index.js +59 -9
- package/node/@aws-s3/storage/file/copy/index.js +43 -9
- package/node/@aws-s3/storage/file/download/index.js +30 -9
- package/node/@aws-s3/storage/file/exists/index.js +37 -9
- package/node/@aws-s3/storage/file/index.d.ts +1 -1
- package/node/@aws-s3/storage/file/index.js +1 -1
- package/node/@aws-s3/storage/file/move/index.js +60 -9
- package/node/@aws-s3/storage/file/remove/index.js +38 -9
- package/node/@aws-s3/storage/file/stat/index.js +34 -9
- package/node/@aws-s3/storage/file/upload/index.js +55 -9
- package/node/@design-edito/index.js +1 -0
- package/node/@express/@multer/index.js +61 -45
- package/node/@google-cloud/storage/bucket/get-metadata/index.js +25 -21
- package/node/@google-cloud/storage/directory/copy-dir/index.js +38 -9
- package/node/@google-cloud/storage/directory/list/index.js +29 -9
- package/node/@google-cloud/storage/directory/move-dir/index.js +45 -9
- package/node/@google-cloud/storage/directory/remove-dir/index.js +36 -9
- package/node/@google-cloud/storage/file/copy/index.js +37 -9
- package/node/@google-cloud/storage/file/download/index.js +28 -9
- package/node/@google-cloud/storage/file/exists/index.js +26 -9
- package/node/@google-cloud/storage/file/generate-signed-url/index.js +33 -27
- package/node/@google-cloud/storage/file/get-metadata/index.js +28 -23
- package/node/@google-cloud/storage/file/get-permissions/index.js +25 -23
- package/node/@google-cloud/storage/file/index.d.ts +1 -1
- package/node/@google-cloud/storage/file/index.js +1 -1
- package/node/@google-cloud/storage/file/move/index.js +40 -9
- package/node/@google-cloud/storage/file/remove/index.js +36 -9
- package/node/@google-cloud/storage/file/revoke-signed-urls/index.js +32 -29
- package/node/@google-cloud/storage/file/stat/index.js +35 -9
- package/node/@google-cloud/storage/file/update-metadata/index.js +30 -23
- package/node/@google-cloud/storage/file/upload/index.js +47 -9
- package/node/cloud-storage/clients/index.js +35 -13
- package/node/cloud-storage/operations/copy-dir/index.js +30 -34
- package/node/cloud-storage/operations/copy-file/index.js +30 -34
- package/node/cloud-storage/operations/download-file/index.js +30 -34
- package/node/cloud-storage/operations/exists-file/index.js +30 -34
- package/node/cloud-storage/operations/list-dir/index.js +29 -34
- package/node/cloud-storage/operations/move-dir/index.js +30 -34
- package/node/cloud-storage/operations/move-file/index.js +30 -34
- package/node/cloud-storage/operations/remove-dir/index.js +29 -34
- package/node/cloud-storage/operations/remove-file/index.js +29 -34
- package/node/cloud-storage/operations/stat-file/index.js +29 -34
- package/node/cloud-storage/operations/upload-file/index.js +30 -34
- package/node/encryption/@aes-256-gcm/buffer/index.js +31 -26
- package/node/encryption/@aes-256-gcm/index.d.ts +1 -1
- package/node/encryption/@aes-256-gcm/index.js +1 -1
- package/node/encryption/@aes-256-gcm/uint8-array/index.js +57 -11
- package/node/encryption/key/index.js +19 -14
- package/node/files/is-in-directory/index.js +11 -10
- package/node/files/read-write/index.js +11 -17
- package/node/files/subpaths/index.js +156 -113
- package/node/ftps/directory/copy-dir/index.js +58 -9
- package/node/ftps/directory/index.d.ts +1 -1
- package/node/ftps/directory/index.js +1 -1
- package/node/ftps/directory/list/index.js +25 -9
- package/node/ftps/directory/move-dir/index.js +41 -9
- package/node/ftps/directory/remove-dir/index.js +42 -9
- package/node/ftps/file/copy/index.js +45 -9
- package/node/ftps/file/download/index.js +30 -9
- package/node/ftps/file/exists/index.js +39 -9
- package/node/ftps/file/index.d.ts +1 -1
- package/node/ftps/file/index.js +1 -1
- package/node/ftps/file/move/index.js +49 -9
- package/node/ftps/file/remove/index.js +40 -9
- package/node/ftps/file/stat/index.js +31 -9
- package/node/ftps/file/upload/index.js +44 -9
- package/node/images/create/index.js +10 -18
- package/node/images/format/index.js +264 -251
- package/node/images/index.d.ts +1 -1
- package/node/images/index.js +1 -1
- package/node/images/metadata/index.js +10 -18
- package/node/images/transform/index.js +168 -203
- package/node/images/transform/operations/blur/index.js +12 -10
- package/node/images/transform/operations/brighten/index.js +12 -10
- package/node/images/transform/operations/extend/index.js +26 -17
- package/node/images/transform/operations/extract/index.js +17 -10
- package/node/images/transform/operations/flatten/index.js +21 -17
- package/node/images/transform/operations/flip/index.js +3 -7
- package/node/images/transform/operations/flop/index.js +3 -7
- package/node/images/transform/operations/hue/index.js +14 -10
- package/node/images/transform/operations/index.d.ts +2 -2
- package/node/images/transform/operations/index.js +2 -2
- package/node/images/transform/operations/level/index.js +15 -10
- package/node/images/transform/operations/lighten/index.js +14 -10
- package/node/images/transform/operations/normalize/index.js +15 -10
- package/node/images/transform/operations/overlay/index.js +90 -17
- package/node/images/transform/operations/resize/index.js +47 -17
- package/node/images/transform/operations/rotate/index.js +21 -17
- package/node/images/transform/operations/saturate/index.js +16 -10
- package/node/images/types.js +34 -9
- package/node/images/utils/index.js +85 -19
- package/node/index.d.ts +3 -3
- package/node/index.js +3 -3
- package/node/process/on-exit/index.js +45 -28
- package/node/process/prompt-continue/index.js +29 -16
- package/node/process/spawner/index.js +104 -80
- package/node/sftp/directory/copy-dir/index.js +55 -9
- package/node/sftp/directory/list/index.js +23 -9
- package/node/sftp/directory/move-dir/index.js +38 -9
- package/node/sftp/directory/remove-dir/index.js +42 -9
- package/node/sftp/file/copy/index.js +40 -9
- package/node/sftp/file/download/index.js +27 -9
- package/node/sftp/file/exists/index.js +30 -9
- package/node/sftp/file/index.d.ts +2 -2
- package/node/sftp/file/index.js +2 -2
- package/node/sftp/file/move/index.js +42 -9
- package/node/sftp/file/remove/index.js +33 -9
- package/node/sftp/file/stat/index.js +28 -9
- package/node/sftp/file/upload/index.js +36 -9
- package/package.json +1 -8
- package/chunks/chunk-2FNCUXAX.js +0 -27
- package/chunks/chunk-2GJSPEO4.js +0 -31
- package/chunks/chunk-2IGP6V77.js +0 -22
- package/chunks/chunk-3QI2MSDK.js +0 -34
- package/chunks/chunk-3RNLPW7B.js +0 -101
- package/chunks/chunk-3RZMW72G.js +0 -33
- package/chunks/chunk-4KLCJX2T.js +0 -36
- package/chunks/chunk-4LTN4SCD.js +0 -55
- package/chunks/chunk-4Q4T7QQO.js +0 -27
- package/chunks/chunk-4Q5TKOIG.js +0 -53
- package/chunks/chunk-57YKZBJR.js +0 -29
- package/chunks/chunk-5H3IRSOB.js +0 -8
- package/chunks/chunk-5NTPCRFH.js +0 -32
- package/chunks/chunk-5TM235Z3.js +0 -40
- package/chunks/chunk-5WVGUZL5.js +0 -35
- package/chunks/chunk-6XL25OZX.js +0 -12
- package/chunks/chunk-75BICI4L.js +0 -20
- package/chunks/chunk-77SWZUHV.js +0 -31
- package/chunks/chunk-AC4UMIWM.js +0 -124
- package/chunks/chunk-AG4VERYN.js +0 -25
- package/chunks/chunk-AP3VYSVF.js +0 -36
- package/chunks/chunk-ASXK7XCC.js +0 -18
- package/chunks/chunk-AVIMGMTP.js +0 -17
- package/chunks/chunk-B4HGXMP3.js +0 -20
- package/chunks/chunk-B5V7D2ZL.js +0 -77
- package/chunks/chunk-B6653QJD.js +0 -37
- package/chunks/chunk-BCX4HPD7.js +0 -33
- package/chunks/chunk-CVMYA5XK.js +0 -632
- package/chunks/chunk-DMWGHBIL.js +0 -25
- package/chunks/chunk-DNIOWD7K.js +0 -8
- package/chunks/chunk-E2ZY3SEW.js +0 -26
- package/chunks/chunk-E6MSDKON.js +0 -13
- package/chunks/chunk-E7BBN5JC.js +0 -22
- package/chunks/chunk-EX2QKFY5.js +0 -41
- package/chunks/chunk-EYYNCLVR.js +0 -33
- package/chunks/chunk-F2YJXIT7.js +0 -78
- package/chunks/chunk-FSNNEPY5.js +0 -37
- package/chunks/chunk-GG4EFNMU.js +0 -89
- package/chunks/chunk-GQBFMP6N.js +0 -32
- package/chunks/chunk-H3HRQ52T.js +0 -32
- package/chunks/chunk-H4PP6AHP.js +0 -15
- package/chunks/chunk-HC6ZOHCS.js +0 -14
- package/chunks/chunk-HMMPT3UM.js +0 -47
- package/chunks/chunk-HQLRJ7XW.js +0 -12
- package/chunks/chunk-HYGUIF2O.js +0 -23
- package/chunks/chunk-HYPEWMYZ.js +0 -10
- package/chunks/chunk-I5MRXMHR.js +0 -32
- package/chunks/chunk-I6ZP5T5V.js +0 -10
- package/chunks/chunk-IEZ3O5OF.js +0 -40
- package/chunks/chunk-IPRWXI27.js +0 -31
- package/chunks/chunk-IRKZUMWZ.js +0 -38
- package/chunks/chunk-ISJONMNA.js +0 -16
- package/chunks/chunk-JB27MAKY.js +0 -22
- package/chunks/chunk-JZ6GM444.js +0 -43
- package/chunks/chunk-K5UF634H.js +0 -25
- package/chunks/chunk-LEBGVBYD.js +0 -138
- package/chunks/chunk-LJ5MGLLU.js +0 -56
- package/chunks/chunk-LUAYN7VJ.js +0 -27
- package/chunks/chunk-MDVGDZU6.js +0 -25
- package/chunks/chunk-ML22TIBW.js +0 -37
- package/chunks/chunk-MO4TRYNI.js +0 -29
- package/chunks/chunk-MSU7JU63.js +0 -49
- package/chunks/chunk-NIBRPZJD.js +0 -58
- package/chunks/chunk-O32IRXDX.js +0 -78
- package/chunks/chunk-OAX7GS7C.js +0 -36
- package/chunks/chunk-OBSTP7YR.js +0 -257
- package/chunks/chunk-OFCSIK6J.js +0 -13
- package/chunks/chunk-OFYGPRWE.js +0 -21
- package/chunks/chunk-OGBUSUE6.js +0 -12
- package/chunks/chunk-OSAXBA7G.js +0 -10
- package/chunks/chunk-OT7QXCH6.js +0 -23
- package/chunks/chunk-P4J6S2WQ.js +0 -64
- package/chunks/chunk-PUQUSA6S.js +0 -12
- package/chunks/chunk-PYJKFOMV.js +0 -193
- package/chunks/chunk-QHEWBOQI.js +0 -19
- package/chunks/chunk-QXAJXTXV.js +0 -19
- package/chunks/chunk-R3AWQXMY.js +0 -20
- package/chunks/chunk-R66GH2MQ.js +0 -38
- package/chunks/chunk-RART44AF.js +0 -21
- package/chunks/chunk-REXSJULD.js +0 -28
- package/chunks/chunk-RJRNYRPM.js +0 -23
- package/chunks/chunk-RKX6KLPQ.js +0 -47
- package/chunks/chunk-RW7VAKJW.js +0 -15
- package/chunks/chunk-RZOR7ZC3.js +0 -35
- package/chunks/chunk-S2UZ3HZR.js +0 -31
- package/chunks/chunk-SYH5LYQC.js +0 -28
- package/chunks/chunk-TAXFCVFE.js +0 -30
- package/chunks/chunk-TNZGRXKJ.js +0 -24
- package/chunks/chunk-TRFZSKNB.js +0 -32
- package/chunks/chunk-U664BT44.js +0 -45
- package/chunks/chunk-U6SGKHHA.js +0 -32
- package/chunks/chunk-UTQNGKGQ.js +0 -60
- package/chunks/chunk-VPBZS3S4.js +0 -27
- package/chunks/chunk-W5A2TON3.js +0 -10
- package/chunks/chunk-W7PJ5NQQ.js +0 -23
- package/chunks/chunk-WGRQXVBK.js +0 -207
- package/chunks/chunk-WIFHP4X7.js +0 -56
- package/chunks/chunk-WL4WNJ2Y.js +0 -39
- package/chunks/chunk-WNDMYNDU.js +0 -8
- package/chunks/chunk-WSFCRVEQ.js +0 -9
- package/chunks/chunk-WZS4Q3G3.js +0 -36
- package/chunks/chunk-X4YSGOKG.js +0 -2673
- package/chunks/chunk-XA4HVHJ4.js +0 -18
- package/chunks/chunk-XEQ2PBT2.js +0 -20
- package/chunks/chunk-XFB4PUXO.js +0 -78
- package/chunks/chunk-XIIJYVJZ.js +0 -15
- package/chunks/chunk-XNF5MLCQ.js +0 -14
- package/chunks/chunk-XQUMWHCH.js +0 -25
- package/chunks/chunk-YA2YCZUF.js +0 -8
- package/chunks/chunk-YDIBNEGA.js +0 -9
- package/chunks/chunk-YHMR7IBA.js +0 -24
- package/chunks/chunk-YWSXCFYY.js +0 -61
- package/chunks/chunk-YY3TSU22.js +0 -48
- package/chunks/chunk-ZAP3ELDE.js +0 -40
- package/chunks/chunk-ZJNQRKEJ.js +0 -105
- package/chunks/chunk-ZJR5ASR3.js +0 -26
- package/chunks/index.d.ts +0 -1
- package/chunks/index.js +0 -1
|
@@ -1,46 +1,839 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
1
|
+
import { absoluteModulo } from '../../numbers/absolute-modulo/index.js';
|
|
2
|
+
import { tidy } from '../tidy/index.js';
|
|
3
|
+
import { cssColors } from '../cssColorsMap.js';
|
|
4
|
+
import { isHex, isRgb, isHsl, isHsb, isCmyk, isCssColor, isXyz, isLab, isLch } from '../typechecks/index.js';
|
|
5
|
+
import { unknownToString } from '../../errors/unknown-to-string/index.js';
|
|
6
|
+
/* * * * * * * * * * * * * * * * * *
|
|
7
|
+
* Convertion building blocks
|
|
8
|
+
* * * * * * * * * * * * * * * * * */
|
|
9
|
+
// RGB ↔ Hex
|
|
10
|
+
// [WIP] maybe use absoluteModulo where needed?
|
|
11
|
+
// needs rewrite, hex char checks, etc
|
|
12
|
+
function _hex2rgb(hex) {
|
|
13
|
+
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
|
|
14
|
+
if (!isHex(hex))
|
|
15
|
+
throw new Error(`invalid hex color ${unknownToString(hex)}`);
|
|
16
|
+
let hexString = hex;
|
|
17
|
+
const inputHex = hexString;
|
|
18
|
+
const startsWithHash = hexString.startsWith('#');
|
|
19
|
+
if (!startsWithHash)
|
|
20
|
+
throw new Error(`invalid hex color ${inputHex}`);
|
|
21
|
+
hexString = hexString.slice(1);
|
|
22
|
+
if (hexString.length === 3) {
|
|
23
|
+
hexString = hexString.split('').map(c => c + c).join('') + 'ff';
|
|
24
|
+
}
|
|
25
|
+
else if (hexString.length === 4) {
|
|
26
|
+
hexString = hexString.split('').map(c => c + c).join('');
|
|
27
|
+
}
|
|
28
|
+
else if (hexString.length === 6) {
|
|
29
|
+
hexString = hexString + 'ff';
|
|
30
|
+
}
|
|
31
|
+
else if (hexString.length !== 8)
|
|
32
|
+
throw new Error(`invalid hex color ${inputHex}`);
|
|
33
|
+
const r = parseInt(hexString.slice(0, 2), 16);
|
|
34
|
+
const g = parseInt(hexString.slice(2, 4), 16);
|
|
35
|
+
const b = parseInt(hexString.slice(4, 6), 16);
|
|
36
|
+
const a = parseInt(hexString.slice(6, 8), 16) / 255;
|
|
37
|
+
return { r, g, b, a };
|
|
38
|
+
}
|
|
39
|
+
function _rgb2hex(rgb) {
|
|
40
|
+
const { r, g, b, a = 1 } = rgb;
|
|
41
|
+
const rHex = Math.round(r).toString(16).padStart(2, '0');
|
|
42
|
+
const gHex = Math.round(g).toString(16).padStart(2, '0');
|
|
43
|
+
const bHex = Math.round(b).toString(16).padStart(2, '0');
|
|
44
|
+
const aHex = Math.round(a * 255).toString(16).padStart(2, '0');
|
|
45
|
+
const returned = `#${rHex}${gHex}${bHex}${aHex}`;
|
|
46
|
+
if (!isHex(returned)) {
|
|
47
|
+
// Here typescript says returned is 'never' but this is because
|
|
48
|
+
// isHex function is more strict than Hex type, so technically
|
|
49
|
+
// isHex(hex) can return false, for instance if hex === '#zzz'
|
|
50
|
+
throw new Error(`invalid hex color output ${unknownToString(returned)}`);
|
|
51
|
+
}
|
|
52
|
+
return returned;
|
|
53
|
+
}
|
|
54
|
+
function _css2rgb(color) {
|
|
55
|
+
if (color in cssColors)
|
|
56
|
+
return cssColors[color];
|
|
57
|
+
return undefined;
|
|
58
|
+
}
|
|
59
|
+
const cssColorsWithHex = Object.entries(cssColors).map(([cssColor, rgba]) => ({
|
|
60
|
+
name: cssColor,
|
|
61
|
+
hex: _rgb2hex(rgba),
|
|
62
|
+
rgba
|
|
63
|
+
}));
|
|
64
|
+
function _rgb2css(rgb) {
|
|
65
|
+
const hexTarget = _rgb2hex(rgb);
|
|
66
|
+
return cssColorsWithHex.find(c => c.hex === hexTarget)?.name;
|
|
67
|
+
}
|
|
68
|
+
// RGB ↔ HSL
|
|
69
|
+
function _hsl2rgb(hsl) {
|
|
70
|
+
const { h, s, l, a = 1 } = hsl;
|
|
71
|
+
const H = absoluteModulo(h, 360) / 360;
|
|
72
|
+
const S = Math.max(0, Math.min(1, s / 100));
|
|
73
|
+
const L = Math.max(0, Math.min(1, l / 100));
|
|
74
|
+
const A = Math.max(0, Math.min(1, a));
|
|
75
|
+
const hue2rgb = (p, q, t) => {
|
|
76
|
+
if (t < 0)
|
|
77
|
+
t += 1;
|
|
78
|
+
if (t > 1)
|
|
79
|
+
t -= 1;
|
|
80
|
+
if (t < 1 / 6)
|
|
81
|
+
return p + (q - p) * 6 * t;
|
|
82
|
+
if (t < 1 / 2)
|
|
83
|
+
return q;
|
|
84
|
+
if (t < 2 / 3)
|
|
85
|
+
return p + (q - p) * (2 / 3 - t) * 6;
|
|
86
|
+
return p;
|
|
87
|
+
};
|
|
88
|
+
let r;
|
|
89
|
+
let g;
|
|
90
|
+
let b;
|
|
91
|
+
if (S === 0) {
|
|
92
|
+
r = g = b = L; // achromatic
|
|
93
|
+
}
|
|
94
|
+
else {
|
|
95
|
+
const q = L < 0.5 ? L * (1 + S) : L + S - L * S;
|
|
96
|
+
const p = 2 * L - q;
|
|
97
|
+
r = hue2rgb(p, q, H + 1 / 3);
|
|
98
|
+
g = hue2rgb(p, q, H);
|
|
99
|
+
b = hue2rgb(p, q, H - 1 / 3);
|
|
100
|
+
}
|
|
101
|
+
return {
|
|
102
|
+
r: Math.round(r * 255),
|
|
103
|
+
g: Math.round(g * 255),
|
|
104
|
+
b: Math.round(b * 255),
|
|
105
|
+
a: A
|
|
106
|
+
};
|
|
107
|
+
}
|
|
108
|
+
function _rgb2hsl(rgb) {
|
|
109
|
+
const { r, g, b, a = 1 } = rgb;
|
|
110
|
+
const R = r / 255;
|
|
111
|
+
const G = g / 255;
|
|
112
|
+
const B = b / 255;
|
|
113
|
+
const max = Math.max(R, G, B);
|
|
114
|
+
const min = Math.min(R, G, B);
|
|
115
|
+
const delta = max - min;
|
|
116
|
+
let h = 0;
|
|
117
|
+
let s = 0;
|
|
118
|
+
const l = (max + min) / 2;
|
|
119
|
+
if (delta !== 0) {
|
|
120
|
+
s = l > 0.5 ? delta / (2 - max - min) : delta / (max + min);
|
|
121
|
+
if (max === R) {
|
|
122
|
+
h = ((G - B) / delta + (G < B ? 6 : 0)) / 6;
|
|
123
|
+
}
|
|
124
|
+
else if (max === G) {
|
|
125
|
+
h = ((B - R) / delta + 2) / 6;
|
|
126
|
+
}
|
|
127
|
+
else {
|
|
128
|
+
h = ((R - G) / delta + 4) / 6;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
return {
|
|
132
|
+
h: Math.round(h * 360),
|
|
133
|
+
s: Math.round(s * 100),
|
|
134
|
+
l: Math.round(l * 100),
|
|
135
|
+
a
|
|
136
|
+
};
|
|
137
|
+
}
|
|
138
|
+
// RGB ↔ HSB
|
|
139
|
+
function _hsb2rgb(hsb) {
|
|
140
|
+
const { h, s, b, a = 1 } = hsb;
|
|
141
|
+
const H = absoluteModulo(h, 360) / 360;
|
|
142
|
+
const S = Math.max(0, Math.min(1, s / 100));
|
|
143
|
+
const B = Math.max(0, Math.min(1, b / 100));
|
|
144
|
+
const A = Math.max(0, Math.min(1, a));
|
|
145
|
+
const i = Math.floor(H * 6);
|
|
146
|
+
const f = H * 6 - i;
|
|
147
|
+
const p = B * (1 - S);
|
|
148
|
+
const q = B * (1 - f * S);
|
|
149
|
+
const t = B * (1 - (1 - f) * S);
|
|
150
|
+
let r;
|
|
151
|
+
let g;
|
|
152
|
+
let blue;
|
|
153
|
+
switch (absoluteModulo(i, 6)) {
|
|
154
|
+
case 0:
|
|
155
|
+
r = B;
|
|
156
|
+
g = t;
|
|
157
|
+
blue = p;
|
|
158
|
+
break;
|
|
159
|
+
case 1:
|
|
160
|
+
r = q;
|
|
161
|
+
g = B;
|
|
162
|
+
blue = p;
|
|
163
|
+
break;
|
|
164
|
+
case 2:
|
|
165
|
+
r = p;
|
|
166
|
+
g = B;
|
|
167
|
+
blue = t;
|
|
168
|
+
break;
|
|
169
|
+
case 3:
|
|
170
|
+
r = p;
|
|
171
|
+
g = q;
|
|
172
|
+
blue = B;
|
|
173
|
+
break;
|
|
174
|
+
case 4:
|
|
175
|
+
r = t;
|
|
176
|
+
g = p;
|
|
177
|
+
blue = B;
|
|
178
|
+
break;
|
|
179
|
+
case 5:
|
|
180
|
+
r = B;
|
|
181
|
+
g = p;
|
|
182
|
+
blue = q;
|
|
183
|
+
break;
|
|
184
|
+
default: r = g = blue = 0;
|
|
185
|
+
}
|
|
186
|
+
return {
|
|
187
|
+
r: Math.round(r * 255),
|
|
188
|
+
g: Math.round(g * 255),
|
|
189
|
+
b: Math.round(blue * 255),
|
|
190
|
+
a: A
|
|
191
|
+
};
|
|
192
|
+
}
|
|
193
|
+
function _rgb2hsb(rgb) {
|
|
194
|
+
const { r, g, b, a = 1 } = rgb;
|
|
195
|
+
const R = r / 255;
|
|
196
|
+
const G = g / 255;
|
|
197
|
+
const B = b / 255;
|
|
198
|
+
const max = Math.max(R, G, B);
|
|
199
|
+
const min = Math.min(R, G, B);
|
|
200
|
+
const delta = max - min;
|
|
201
|
+
let h = 0;
|
|
202
|
+
let s = 0;
|
|
203
|
+
const brightness = max;
|
|
204
|
+
if (max !== 0) {
|
|
205
|
+
s = delta / max;
|
|
206
|
+
}
|
|
207
|
+
if (delta !== 0) {
|
|
208
|
+
if (max === R) {
|
|
209
|
+
h = ((G - B) / delta + (G < B ? 6 : 0)) / 6;
|
|
210
|
+
}
|
|
211
|
+
else if (max === G) {
|
|
212
|
+
h = ((B - R) / delta + 2) / 6;
|
|
213
|
+
}
|
|
214
|
+
else {
|
|
215
|
+
h = ((R - G) / delta + 4) / 6;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
return {
|
|
219
|
+
h: Math.round(h * 360),
|
|
220
|
+
s: Math.round(s * 100),
|
|
221
|
+
b: Math.round(brightness * 100),
|
|
222
|
+
a
|
|
223
|
+
};
|
|
224
|
+
}
|
|
225
|
+
// RGB ↔ CMYK
|
|
226
|
+
function _cmyk2rgb(cmyka) {
|
|
227
|
+
const { c, m, y, k, a = 1 } = cmyka;
|
|
228
|
+
// Clamp input to 0–100
|
|
229
|
+
const C = Math.max(0, Math.min(100, c)) / 100;
|
|
230
|
+
const M = Math.max(0, Math.min(100, m)) / 100;
|
|
231
|
+
const Y = Math.max(0, Math.min(100, y)) / 100;
|
|
232
|
+
const K = Math.max(0, Math.min(100, k)) / 100;
|
|
233
|
+
const A = Math.max(0, Math.min(1, a));
|
|
234
|
+
// CMYK → RGB formula
|
|
235
|
+
const R = 1 - Math.min(1, C * (1 - K) + K);
|
|
236
|
+
const G = 1 - Math.min(1, M * (1 - K) + K);
|
|
237
|
+
const B = 1 - Math.min(1, Y * (1 - K) + K);
|
|
238
|
+
return {
|
|
239
|
+
r: Math.round(R * 255),
|
|
240
|
+
g: Math.round(G * 255),
|
|
241
|
+
b: Math.round(B * 255),
|
|
242
|
+
a: A
|
|
243
|
+
};
|
|
244
|
+
}
|
|
245
|
+
function _rgb2cmyk(rgb) {
|
|
246
|
+
const { r, g, b, a = 1 } = rgb;
|
|
247
|
+
// Normalize RGB to 0–1
|
|
248
|
+
const R = Math.max(0, Math.min(1, r / 255));
|
|
249
|
+
const G = Math.max(0, Math.min(1, g / 255));
|
|
250
|
+
const B = Math.max(0, Math.min(1, b / 255));
|
|
251
|
+
const A = Math.max(0, Math.min(1, a));
|
|
252
|
+
// Compute K (black)
|
|
253
|
+
const K = 1 - Math.max(R, G, B);
|
|
254
|
+
// Avoid division by zero
|
|
255
|
+
// eslint-disable-next-line @typescript-eslint/strict-boolean-expressions
|
|
256
|
+
const denom = 1 - K || 1;
|
|
257
|
+
// Compute C, M, Y
|
|
258
|
+
const C = (1 - R - K) / denom;
|
|
259
|
+
const M = (1 - G - K) / denom;
|
|
260
|
+
const Y = (1 - B - K) / denom;
|
|
261
|
+
return {
|
|
262
|
+
c: Math.round(C * 100),
|
|
263
|
+
m: Math.round(M * 100),
|
|
264
|
+
y: Math.round(Y * 100),
|
|
265
|
+
k: Math.round(K * 100),
|
|
266
|
+
a: A
|
|
267
|
+
};
|
|
268
|
+
}
|
|
269
|
+
// Rgb ↔ XYZ
|
|
270
|
+
function _xyz2rgb(xyza) {
|
|
271
|
+
const { x, y, z, a = 1 } = xyza;
|
|
272
|
+
// Normalize XYZ to 0–1
|
|
273
|
+
const X = x / 100;
|
|
274
|
+
const Y = y / 100;
|
|
275
|
+
const Z = z / 100;
|
|
276
|
+
const A = Math.max(0, Math.min(1, a));
|
|
277
|
+
// XYZ → linear RGB (D65)
|
|
278
|
+
let R = X * 3.2404542 + Y * -1.5371385 + Z * -0.4985314;
|
|
279
|
+
let G = X * -0.9692660 + Y * 1.8760108 + Z * 0.0415560;
|
|
280
|
+
let B = X * 0.0556434 + Y * -0.2040259 + Z * 1.0572252;
|
|
281
|
+
// Apply gamma correction
|
|
282
|
+
const GAMMA_THRESHOLD = 0.0031308;
|
|
283
|
+
const GAMMA_EXPONENT = 1 / 2.4;
|
|
284
|
+
const GAMMA_MULT = 1.055;
|
|
285
|
+
const GAMMA_OFFSET = 0.055;
|
|
286
|
+
const LINEAR_DIVISOR = 12.92;
|
|
287
|
+
const gammaCorrect = (c) => c <= GAMMA_THRESHOLD
|
|
288
|
+
? c * LINEAR_DIVISOR
|
|
289
|
+
: GAMMA_MULT * Math.pow(c, GAMMA_EXPONENT) - GAMMA_OFFSET;
|
|
290
|
+
R = gammaCorrect(R);
|
|
291
|
+
G = gammaCorrect(G);
|
|
292
|
+
B = gammaCorrect(B);
|
|
293
|
+
return {
|
|
294
|
+
r: Math.round(Math.max(0, Math.min(1, R)) * 255),
|
|
295
|
+
g: Math.round(Math.max(0, Math.min(1, G)) * 255),
|
|
296
|
+
b: Math.round(Math.max(0, Math.min(1, B)) * 255),
|
|
297
|
+
a: A
|
|
298
|
+
};
|
|
299
|
+
}
|
|
300
|
+
function _rgb2xyz(rgb) {
|
|
301
|
+
const { r, g, b, a = 1 } = rgb;
|
|
302
|
+
// Normalize RGB to 0–1
|
|
303
|
+
let R = Math.max(0, Math.min(1, r / 255));
|
|
304
|
+
let G = Math.max(0, Math.min(1, g / 255));
|
|
305
|
+
let B = Math.max(0, Math.min(1, b / 255));
|
|
306
|
+
const A = Math.max(0, Math.min(1, a));
|
|
307
|
+
// Apply inverse gamma correction (sRGB → linear)
|
|
308
|
+
const SRGB_THRESHOLD = 0.04045;
|
|
309
|
+
const SRGB_OFFSET = 0.055;
|
|
310
|
+
const SRGB_DIVISOR = 1.055;
|
|
311
|
+
const SRGB_EXPONENT = 2.4;
|
|
312
|
+
const SRGB_LINEAR_DIVISOR = 12.92;
|
|
313
|
+
const linearize = (c) => c > SRGB_THRESHOLD
|
|
314
|
+
? Math.pow((c + SRGB_OFFSET) / SRGB_DIVISOR, SRGB_EXPONENT)
|
|
315
|
+
: c / SRGB_LINEAR_DIVISOR;
|
|
316
|
+
R = linearize(R);
|
|
317
|
+
G = linearize(G);
|
|
318
|
+
B = linearize(B);
|
|
319
|
+
// Linear RGB → XYZ (D65)
|
|
320
|
+
const X = R * 0.4124564 + G * 0.3575761 + B * 0.1804375;
|
|
321
|
+
const Y = R * 0.2126729 + G * 0.7151522 + B * 0.0721750;
|
|
322
|
+
const Z = R * 0.0193339 + G * 0.1191920 + B * 0.9503041;
|
|
323
|
+
return {
|
|
324
|
+
x: X * 100,
|
|
325
|
+
y: Y * 100,
|
|
326
|
+
z: Z * 100,
|
|
327
|
+
a: A
|
|
328
|
+
};
|
|
329
|
+
}
|
|
330
|
+
// XYZ ↔ LAB
|
|
331
|
+
function _lab2xyz(lab) {
|
|
332
|
+
const { l, a: A = 0, b: B = 0, al: alpha = 1 } = lab;
|
|
333
|
+
// D65 reference white
|
|
334
|
+
const REF_X = 95.047;
|
|
335
|
+
const REF_Y = 100.0;
|
|
336
|
+
const REF_Z = 108.883;
|
|
337
|
+
const fy = (l + 16) / 116;
|
|
338
|
+
const fx = fy + A / 500;
|
|
339
|
+
const fz = fy - B / 200;
|
|
340
|
+
const fx3 = Math.pow(fx, 3);
|
|
341
|
+
const fz3 = Math.pow(fz, 3);
|
|
342
|
+
const fy3 = Math.pow(fy, 3);
|
|
343
|
+
const epsilon = 0.008856; // CIE standard
|
|
344
|
+
const kappa = 903.3; // CIE standard
|
|
345
|
+
const X = fx3 > epsilon ? fx3 : (116 * fx - 16) / kappa;
|
|
346
|
+
const Y = l > (kappa * epsilon) ? fy3 : l / kappa;
|
|
347
|
+
const Z = fz3 > epsilon ? fz3 : (116 * fz - 16) / kappa;
|
|
348
|
+
return {
|
|
349
|
+
x: X * REF_X,
|
|
350
|
+
y: Y * REF_Y,
|
|
351
|
+
z: Z * REF_Z,
|
|
352
|
+
a: Math.max(0, Math.min(1, alpha))
|
|
353
|
+
};
|
|
354
|
+
}
|
|
355
|
+
function _xyz2lab(xyza) {
|
|
356
|
+
const { x, y, z, a: alpha = 1 } = xyza;
|
|
357
|
+
// D65 reference white
|
|
358
|
+
const REF_X = 95.047;
|
|
359
|
+
const REF_Y = 100.0;
|
|
360
|
+
const REF_Z = 108.883;
|
|
361
|
+
const X = x / REF_X;
|
|
362
|
+
const Y = y / REF_Y;
|
|
363
|
+
const Z = z / REF_Z;
|
|
364
|
+
const epsilon = 0.008856; // CIE standard
|
|
365
|
+
const kappa = 903.3; // CIE standard
|
|
366
|
+
const fx = X > epsilon ? Math.cbrt(X) : (kappa * X + 16) / 116;
|
|
367
|
+
const fy = Y > epsilon ? Math.cbrt(Y) : (kappa * Y + 16) / 116;
|
|
368
|
+
const fz = Z > epsilon ? Math.cbrt(Z) : (kappa * Z + 16) / 116;
|
|
369
|
+
const L = 116 * fy - 16;
|
|
370
|
+
const A = 500 * (fx - fy);
|
|
371
|
+
const B = 200 * (fy - fz);
|
|
372
|
+
return {
|
|
373
|
+
l: L,
|
|
374
|
+
a: A,
|
|
375
|
+
b: B,
|
|
376
|
+
al: Math.max(0, Math.min(1, alpha))
|
|
377
|
+
};
|
|
378
|
+
}
|
|
379
|
+
// LAB ↔ LCH
|
|
380
|
+
function _lab2lch(lab) {
|
|
381
|
+
const { l, a, b, al = 1 } = lab;
|
|
382
|
+
const c = Math.sqrt(a * a + b * b);
|
|
383
|
+
let h = Math.atan2(b, a) * (180 / Math.PI); // convert to degrees
|
|
384
|
+
if (h < 0)
|
|
385
|
+
h += 360;
|
|
386
|
+
return { l, c, h, a: al };
|
|
387
|
+
}
|
|
388
|
+
function _lch2lab(lch) {
|
|
389
|
+
const { l, c, h, a = 1 } = lch;
|
|
390
|
+
const hRad = (h * Math.PI) / 180;
|
|
391
|
+
const A = c * Math.cos(hRad);
|
|
392
|
+
const B = c * Math.sin(hRad);
|
|
393
|
+
return { l, a: A, b: B, al: a };
|
|
394
|
+
}
|
|
395
|
+
/* * * * * * * * * * * * * * * * * *
|
|
396
|
+
* Converters
|
|
397
|
+
* * * * * * * * * * * * * * * * * */
|
|
398
|
+
/**
|
|
399
|
+
* Converts any supported color format to RGBA.
|
|
400
|
+
*
|
|
401
|
+
* @param {Color} color - The color to convert.
|
|
402
|
+
* @returns {Rgba} The color in RGBA format.
|
|
403
|
+
* @throws {Error} If the color format is invalid or unsupported.
|
|
404
|
+
*/
|
|
405
|
+
export function toRgb(color) {
|
|
406
|
+
if (isRgb(color))
|
|
407
|
+
return color;
|
|
408
|
+
if (isHsl(color))
|
|
409
|
+
return _hsl2rgb(color);
|
|
410
|
+
if (isHsb(color))
|
|
411
|
+
return _hsb2rgb(color);
|
|
412
|
+
if (isCmyk(color))
|
|
413
|
+
return _cmyk2rgb(color);
|
|
414
|
+
if (isCssColor(color))
|
|
415
|
+
return _css2rgb(color);
|
|
416
|
+
if (isHex(color))
|
|
417
|
+
return _hex2rgb(color);
|
|
418
|
+
if (isXyz(color))
|
|
419
|
+
return _xyz2rgb(color);
|
|
420
|
+
if (isLab(color))
|
|
421
|
+
return _xyz2rgb(_lab2xyz(color));
|
|
422
|
+
if (isLch(color))
|
|
423
|
+
return _xyz2rgb(_lab2xyz(_lch2lab(color)));
|
|
424
|
+
throw new Error(`Invalid color input: ${unknownToString(color)}`);
|
|
425
|
+
}
|
|
426
|
+
/**
|
|
427
|
+
* Converts any supported color format to CIE XYZ.
|
|
428
|
+
*
|
|
429
|
+
* @param {Color} color - The color to convert.
|
|
430
|
+
* @returns {Xyza} The color in CIE XYZ format.
|
|
431
|
+
* @throws {Error} If the color format is invalid or unsupported.
|
|
432
|
+
*/
|
|
433
|
+
export function toXyz(color) {
|
|
434
|
+
if (isXyz(color))
|
|
435
|
+
return color;
|
|
436
|
+
if (isLab(color))
|
|
437
|
+
return _lab2xyz(color);
|
|
438
|
+
if (isLch(color))
|
|
439
|
+
return _lab2xyz(_lch2lab(color));
|
|
440
|
+
if (isRgb(color))
|
|
441
|
+
return _rgb2xyz(color);
|
|
442
|
+
if (isHsl(color))
|
|
443
|
+
return _rgb2xyz(_hsl2rgb(color));
|
|
444
|
+
if (isHsb(color))
|
|
445
|
+
return _rgb2xyz(_hsb2rgb(color));
|
|
446
|
+
if (isCmyk(color))
|
|
447
|
+
return _rgb2xyz(_cmyk2rgb(color));
|
|
448
|
+
if (isCssColor(color))
|
|
449
|
+
return _rgb2xyz(_css2rgb(color));
|
|
450
|
+
if (isHex(color))
|
|
451
|
+
return _rgb2xyz(_hex2rgb(color));
|
|
452
|
+
throw new Error(`Invalid color input: ${unknownToString(color)}`);
|
|
453
|
+
}
|
|
454
|
+
/**
|
|
455
|
+
* Converts any supported color format to CIELAB.
|
|
456
|
+
*
|
|
457
|
+
* @param {Color} color - The color to convert.
|
|
458
|
+
* @returns {Laba} The color in CIELAB format.
|
|
459
|
+
* @throws {Error} If the color format is invalid or unsupported.
|
|
460
|
+
*/
|
|
461
|
+
export function toLab(color) {
|
|
462
|
+
if (isLab(color))
|
|
463
|
+
return color;
|
|
464
|
+
if (isLch(color))
|
|
465
|
+
return _lch2lab(color);
|
|
466
|
+
const xyzColor = toXyz(color);
|
|
467
|
+
return _xyz2lab(xyzColor);
|
|
468
|
+
}
|
|
469
|
+
/**
|
|
470
|
+
* Converts any supported color format to CIELCh.
|
|
471
|
+
*
|
|
472
|
+
* @param {Color} color - The color to convert.
|
|
473
|
+
* @returns {Lcha} The color in CIELCh format.
|
|
474
|
+
* @throws {Error} If the color format is invalid or unsupported.
|
|
475
|
+
*/
|
|
476
|
+
export function toLch(color) {
|
|
477
|
+
if (isLch(color))
|
|
478
|
+
return color;
|
|
479
|
+
const labColor = toLab(color);
|
|
480
|
+
return _lab2lch(labColor);
|
|
481
|
+
}
|
|
482
|
+
/**
|
|
483
|
+
* Converts any supported color format to HSLA.
|
|
484
|
+
*
|
|
485
|
+
* @param {Color} color - The color to convert.
|
|
486
|
+
* @returns {Hsla} The color in HSLA format.
|
|
487
|
+
* @throws {Error} If the color format is invalid or unsupported.
|
|
488
|
+
*/
|
|
489
|
+
export function toHsl(color) {
|
|
490
|
+
if (isHsl(color))
|
|
491
|
+
return color;
|
|
492
|
+
const rgbColor = toRgb(color);
|
|
493
|
+
return _rgb2hsl(rgbColor);
|
|
494
|
+
}
|
|
495
|
+
/**
|
|
496
|
+
* Converts any supported color format to HSBA (HSB/HSV).
|
|
497
|
+
*
|
|
498
|
+
* @param {Color} color - The color to convert.
|
|
499
|
+
* @returns {Hsba} The color in HSBA format.
|
|
500
|
+
* @throws {Error} If the color format is invalid or unsupported.
|
|
501
|
+
*/
|
|
502
|
+
export function toHsb(color) {
|
|
503
|
+
if (isHsb(color))
|
|
504
|
+
return color;
|
|
505
|
+
const rgbColor = toRgb(color);
|
|
506
|
+
return _rgb2hsb(rgbColor);
|
|
507
|
+
}
|
|
508
|
+
/**
|
|
509
|
+
* Converts any supported color format to CMYK.
|
|
510
|
+
*
|
|
511
|
+
* @param {Color} color - The color to convert.
|
|
512
|
+
* @returns {Cmyka} The color in CMYK format.
|
|
513
|
+
* @throws {Error} If the color format is invalid or unsupported.
|
|
514
|
+
*/
|
|
515
|
+
export function toCmyk(color) {
|
|
516
|
+
if (isCmyk(color))
|
|
517
|
+
return color;
|
|
518
|
+
const rgbColor = toRgb(color);
|
|
519
|
+
return _rgb2cmyk(rgbColor);
|
|
520
|
+
}
|
|
521
|
+
export function toCss(color) {
|
|
522
|
+
if (isCssColor(color))
|
|
523
|
+
return color;
|
|
524
|
+
const rgbColor = toRgb(color);
|
|
525
|
+
return _rgb2css(rgbColor);
|
|
526
|
+
}
|
|
527
|
+
/**
|
|
528
|
+
* Converts any supported color format to hexadecimal.
|
|
529
|
+
*
|
|
530
|
+
* @param {Color} color - The color to convert.
|
|
531
|
+
* @returns {Hex} The color in hexadecimal format.
|
|
532
|
+
* @throws {Error} If the color format is invalid or unsupported.
|
|
533
|
+
*/
|
|
534
|
+
export function toHex(color) {
|
|
535
|
+
if (isHex(color))
|
|
536
|
+
return color;
|
|
537
|
+
const rgbColor = toRgb(color);
|
|
538
|
+
return _rgb2hex(rgbColor);
|
|
539
|
+
}
|
|
540
|
+
/* * * * * * * * * * * * * * * * * *
|
|
541
|
+
* Transformers
|
|
542
|
+
* * * * * * * * * * * * * * * * * */
|
|
543
|
+
/**
|
|
544
|
+
* Transforms a color by converting it to RGBA, applying a transformation function,
|
|
545
|
+
* then converting back to the original color format.
|
|
546
|
+
*
|
|
547
|
+
* @template C - The input color type.
|
|
548
|
+
* @param {C} color - The color to transform.
|
|
549
|
+
* @param {(rgb: Rgba) => Rgba} transformer - Function that transforms the RGBA representation.
|
|
550
|
+
* @returns {TransformedColor<C>} The transformed color in the original format.
|
|
551
|
+
* @throws {Error} If the color format is invalid or unsupported.
|
|
552
|
+
*/
|
|
553
|
+
export function viaRgb(color, transformer) {
|
|
554
|
+
const _color = color;
|
|
555
|
+
const rgb = toRgb(_color);
|
|
556
|
+
const transformedRgb = transformer(rgb);
|
|
557
|
+
if (isRgb(_color))
|
|
558
|
+
return transformedRgb;
|
|
559
|
+
if (isHsl(_color))
|
|
560
|
+
return toHsl(transformedRgb);
|
|
561
|
+
if (isHsb(_color))
|
|
562
|
+
return toHsb(transformedRgb);
|
|
563
|
+
if (isCmyk(_color))
|
|
564
|
+
return toCmyk(transformedRgb);
|
|
565
|
+
if (isXyz(_color))
|
|
566
|
+
return toXyz(transformedRgb);
|
|
567
|
+
if (isLab(_color))
|
|
568
|
+
return toLab(transformedRgb);
|
|
569
|
+
if (isLch(_color))
|
|
570
|
+
return toLch(transformedRgb);
|
|
571
|
+
if (isHex(_color))
|
|
572
|
+
return toRgb(transformedRgb);
|
|
573
|
+
if (isCssColor(_color))
|
|
574
|
+
return transformedRgb;
|
|
575
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
576
|
+
const _typecheck = true;
|
|
577
|
+
throw new Error(`Invalid color input: ${unknownToString(_color)}`);
|
|
578
|
+
}
|
|
579
|
+
/**
|
|
580
|
+
* Transforms a color by converting it to HSLA, applying a transformation function,
|
|
581
|
+
* then converting back to the original color format.
|
|
582
|
+
*
|
|
583
|
+
* @template C - The input color type.
|
|
584
|
+
* @param {C} color - The color to transform.
|
|
585
|
+
* @param {(hsl: Hsla) => Hsla} transformer - Function that transforms the HSLA representation.
|
|
586
|
+
* @returns {TransformedColor<C>} The transformed color in the original format.
|
|
587
|
+
* @throws {Error} If the color format is invalid or unsupported.
|
|
588
|
+
*/
|
|
589
|
+
export function viaHsl(color, transformer) {
|
|
590
|
+
const _color = color;
|
|
591
|
+
const hsl = toHsl(_color);
|
|
592
|
+
const transformedHsl = transformer(hsl);
|
|
593
|
+
if (isHsl(_color))
|
|
594
|
+
return transformedHsl;
|
|
595
|
+
if (isRgb(_color))
|
|
596
|
+
return toRgb(transformedHsl);
|
|
597
|
+
if (isHsb(_color))
|
|
598
|
+
return toHsb(transformedHsl);
|
|
599
|
+
if (isCmyk(_color))
|
|
600
|
+
return toCmyk(transformedHsl);
|
|
601
|
+
if (isXyz(_color))
|
|
602
|
+
return toXyz(transformedHsl);
|
|
603
|
+
if (isLab(_color))
|
|
604
|
+
return toLab(transformedHsl);
|
|
605
|
+
if (isLch(_color))
|
|
606
|
+
return toLch(transformedHsl);
|
|
607
|
+
if (isHex(_color))
|
|
608
|
+
return toHex(transformedHsl);
|
|
609
|
+
if (isCssColor(_color))
|
|
610
|
+
return transformedHsl;
|
|
611
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
612
|
+
const _typecheck = true;
|
|
613
|
+
throw new Error(`Invalid color input: ${unknownToString(_color)}`);
|
|
614
|
+
}
|
|
615
|
+
/**
|
|
616
|
+
* Transforms a color by converting it to HSBA, applying a transformation function,
|
|
617
|
+
* then converting back to the original color format.
|
|
618
|
+
*
|
|
619
|
+
* @template C - The input color type.
|
|
620
|
+
* @param {C} color - The color to transform.
|
|
621
|
+
* @param {(hsb: Hsba) => Hsba} transformer - Function that transforms the HSBA representation.
|
|
622
|
+
* @returns {TransformedColor<C>} The transformed color in the original format.
|
|
623
|
+
* @throws {Error} If the color format is invalid or unsupported.
|
|
624
|
+
*/
|
|
625
|
+
export function viaHsb(color, transformer) {
|
|
626
|
+
const _color = color;
|
|
627
|
+
const hsb = toHsb(_color);
|
|
628
|
+
const transformedHsb = transformer(hsb);
|
|
629
|
+
if (isHsb(_color))
|
|
630
|
+
return transformedHsb;
|
|
631
|
+
if (isRgb(_color))
|
|
632
|
+
return toRgb(transformedHsb);
|
|
633
|
+
if (isHsl(_color))
|
|
634
|
+
return toHsl(transformedHsb);
|
|
635
|
+
if (isCmyk(_color))
|
|
636
|
+
return toCmyk(transformedHsb);
|
|
637
|
+
if (isXyz(_color))
|
|
638
|
+
return toXyz(transformedHsb);
|
|
639
|
+
if (isLab(_color))
|
|
640
|
+
return toLab(transformedHsb);
|
|
641
|
+
if (isLch(_color))
|
|
642
|
+
return toLch(transformedHsb);
|
|
643
|
+
if (isHex(_color))
|
|
644
|
+
return toHex(transformedHsb);
|
|
645
|
+
if (isCssColor(_color))
|
|
646
|
+
return transformedHsb;
|
|
647
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
648
|
+
const _typecheck = true;
|
|
649
|
+
throw new Error(`Invalid color input: ${unknownToString(_color)}`);
|
|
650
|
+
}
|
|
651
|
+
/**
|
|
652
|
+
* Transforms a color by converting it to CMYK, applying a transformation function,
|
|
653
|
+
* then converting back to the original color format.
|
|
654
|
+
*
|
|
655
|
+
* @template C - The input color type.
|
|
656
|
+
* @param {C} color - The color to transform.
|
|
657
|
+
* @param {(cmyk: Cmyka) => Cmyka} transformer - Function that transforms the CMYK representation.
|
|
658
|
+
* @returns {TransformedColor<C>} The transformed color in the original format.
|
|
659
|
+
* @throws {Error} If the color format is invalid or unsupported.
|
|
660
|
+
*/
|
|
661
|
+
export function viaCmyk(color, transformer) {
|
|
662
|
+
const _color = color;
|
|
663
|
+
const cmyk = toCmyk(_color);
|
|
664
|
+
const transformedCmyk = transformer(cmyk);
|
|
665
|
+
if (isHsb(_color))
|
|
666
|
+
return transformedCmyk;
|
|
667
|
+
if (isRgb(_color))
|
|
668
|
+
return toRgb(transformedCmyk);
|
|
669
|
+
if (isHsl(_color))
|
|
670
|
+
return toHsl(transformedCmyk);
|
|
671
|
+
if (isCmyk(_color))
|
|
672
|
+
return toCmyk(transformedCmyk);
|
|
673
|
+
if (isXyz(_color))
|
|
674
|
+
return toXyz(transformedCmyk);
|
|
675
|
+
if (isLab(_color))
|
|
676
|
+
return toLab(transformedCmyk);
|
|
677
|
+
if (isLch(_color))
|
|
678
|
+
return toLch(transformedCmyk);
|
|
679
|
+
if (isHex(_color))
|
|
680
|
+
return toHex(transformedCmyk);
|
|
681
|
+
if (isCssColor(_color))
|
|
682
|
+
return transformedCmyk;
|
|
683
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
684
|
+
const _typecheck = true;
|
|
685
|
+
throw new Error(`Invalid color input: ${unknownToString(_color)}`);
|
|
686
|
+
}
|
|
687
|
+
/**
|
|
688
|
+
* Transforms a color by converting it to CIE XYZ, applying a transformation function,
|
|
689
|
+
* then converting back to the original color format.
|
|
690
|
+
*
|
|
691
|
+
* @template C - The input color type.
|
|
692
|
+
* @param {C} color - The color to transform.
|
|
693
|
+
* @param {(xyz: Xyza) => Xyza} transformer - Function that transforms the XYZ representation.
|
|
694
|
+
* @returns {TransformedColor<C>} The transformed color in the original format.
|
|
695
|
+
* @throws {Error} If the color format is invalid or unsupported.
|
|
696
|
+
*/
|
|
697
|
+
export function viaXyz(color, transformer) {
|
|
698
|
+
const _color = color;
|
|
699
|
+
const xyz = toXyz(_color);
|
|
700
|
+
const transformedXyz = transformer(xyz);
|
|
701
|
+
if (isHsb(_color))
|
|
702
|
+
return transformedXyz;
|
|
703
|
+
if (isRgb(_color))
|
|
704
|
+
return toRgb(transformedXyz);
|
|
705
|
+
if (isHsl(_color))
|
|
706
|
+
return toHsl(transformedXyz);
|
|
707
|
+
if (isCmyk(_color))
|
|
708
|
+
return toCmyk(transformedXyz);
|
|
709
|
+
if (isXyz(_color))
|
|
710
|
+
return toXyz(transformedXyz);
|
|
711
|
+
if (isLab(_color))
|
|
712
|
+
return toLab(transformedXyz);
|
|
713
|
+
if (isLch(_color))
|
|
714
|
+
return toLch(transformedXyz);
|
|
715
|
+
if (isHex(_color))
|
|
716
|
+
return toHex(transformedXyz);
|
|
717
|
+
if (isCssColor(_color))
|
|
718
|
+
return transformedXyz;
|
|
719
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
720
|
+
const _typecheck = true;
|
|
721
|
+
throw new Error(`Invalid color input: ${unknownToString(_color)}`);
|
|
722
|
+
}
|
|
723
|
+
/**
|
|
724
|
+
* Transforms a color by converting it to CIELAB, applying a transformation function,
|
|
725
|
+
* then converting back to the original color format.
|
|
726
|
+
*
|
|
727
|
+
* @template C - The input color type.
|
|
728
|
+
* @param {C} color - The color to transform.
|
|
729
|
+
* @param {(lab: Laba) => Laba} transformer - Function that transforms the CIELAB representation.
|
|
730
|
+
* @returns {TransformedColor<C>} The transformed color in the original format.
|
|
731
|
+
* @throws {Error} If the color format is invalid or unsupported.
|
|
732
|
+
*/
|
|
733
|
+
export function viaLab(color, transformer) {
|
|
734
|
+
const _color = color;
|
|
735
|
+
const lab = toLab(_color);
|
|
736
|
+
const transformedLab = transformer(lab);
|
|
737
|
+
if (isHsb(_color))
|
|
738
|
+
return transformedLab;
|
|
739
|
+
if (isRgb(_color))
|
|
740
|
+
return toRgb(transformedLab);
|
|
741
|
+
if (isHsl(_color))
|
|
742
|
+
return toHsl(transformedLab);
|
|
743
|
+
if (isCmyk(_color))
|
|
744
|
+
return toCmyk(transformedLab);
|
|
745
|
+
if (isXyz(_color))
|
|
746
|
+
return toXyz(transformedLab);
|
|
747
|
+
if (isLab(_color))
|
|
748
|
+
return toLab(transformedLab);
|
|
749
|
+
if (isLch(_color))
|
|
750
|
+
return toLch(transformedLab);
|
|
751
|
+
if (isHex(_color))
|
|
752
|
+
return toHex(transformedLab);
|
|
753
|
+
if (isCssColor(_color))
|
|
754
|
+
return transformedLab;
|
|
755
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
756
|
+
const _typecheck = true;
|
|
757
|
+
throw new Error(`Invalid color input: ${unknownToString(_color)}`);
|
|
758
|
+
}
|
|
759
|
+
/**
|
|
760
|
+
* Transforms a color by converting it to CIELCh, applying a transformation function,
|
|
761
|
+
* then converting back to the original color format.
|
|
762
|
+
*
|
|
763
|
+
* @template C - The input color type.
|
|
764
|
+
* @param {C} color - The color to transform.
|
|
765
|
+
* @param {(lch: Lcha) => Lcha} transformer - Function that transforms the CIELCh representation.
|
|
766
|
+
* @returns {TransformedColor<C>} The transformed color in the original format.
|
|
767
|
+
* @throws {Error} If the color format is invalid or unsupported.
|
|
768
|
+
*/
|
|
769
|
+
export function viaLch(color, transformer) {
|
|
770
|
+
const _color = color;
|
|
771
|
+
const lch = toLch(_color);
|
|
772
|
+
const transformedLch = transformer(lch);
|
|
773
|
+
if (isHsb(_color))
|
|
774
|
+
return transformedLch;
|
|
775
|
+
if (isRgb(_color))
|
|
776
|
+
return toRgb(transformedLch);
|
|
777
|
+
if (isHsl(_color))
|
|
778
|
+
return toHsl(transformedLch);
|
|
779
|
+
if (isCmyk(_color))
|
|
780
|
+
return toCmyk(transformedLch);
|
|
781
|
+
if (isXyz(_color))
|
|
782
|
+
return toXyz(transformedLch);
|
|
783
|
+
if (isLab(_color))
|
|
784
|
+
return toLab(transformedLch);
|
|
785
|
+
if (isLch(_color))
|
|
786
|
+
return toLch(transformedLch);
|
|
787
|
+
if (isHex(_color))
|
|
788
|
+
return toHex(transformedLch);
|
|
789
|
+
if (isCssColor(_color))
|
|
790
|
+
return transformedLch;
|
|
791
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
792
|
+
const _typecheck = true;
|
|
793
|
+
throw new Error(`Invalid color input: ${unknownToString(_color)}`);
|
|
794
|
+
}
|
|
795
|
+
/* * * * * * * * * * * * * * * * * *
|
|
796
|
+
* sRGB linearization / delinearization
|
|
797
|
+
* * * * * * * * * * * * * * * * * */
|
|
798
|
+
/**
|
|
799
|
+
* Converts an RGBA color to linear sRGB color space by applying inverse gamma correction.
|
|
800
|
+
*
|
|
801
|
+
* @param {Rgba} rgb - The RGBA color to linearize.
|
|
802
|
+
* @returns {Srgba} The linearized color in sRGB color space.
|
|
803
|
+
*/
|
|
804
|
+
export function linearizeToSRgb(rgb) {
|
|
805
|
+
const cleanRgb = tidy(rgb);
|
|
806
|
+
const linearChannel = (v) => {
|
|
807
|
+
const n = v / 255;
|
|
808
|
+
if (n <= 0.04045)
|
|
809
|
+
return n / 12.92;
|
|
810
|
+
else
|
|
811
|
+
return Math.pow((n + 0.055) / 1.055, 2.4);
|
|
812
|
+
};
|
|
813
|
+
return {
|
|
814
|
+
linearR: linearChannel(cleanRgb.r),
|
|
815
|
+
linearG: linearChannel(cleanRgb.g),
|
|
816
|
+
linearB: linearChannel(cleanRgb.b),
|
|
817
|
+
a: cleanRgb.a
|
|
818
|
+
};
|
|
819
|
+
}
|
|
820
|
+
/**
|
|
821
|
+
* Converts a linear sRGB color to RGBA by applying gamma correction.
|
|
822
|
+
*
|
|
823
|
+
* @param {Srgba} srgb - The linear sRGB color to delinearize.
|
|
824
|
+
* @returns {Rgba} The delinearized color in RGBA format.
|
|
825
|
+
*/
|
|
826
|
+
export function delinearizeToRgb(srgb) {
|
|
827
|
+
const gammaChannel = (v) => {
|
|
828
|
+
if (v <= 0.0031308)
|
|
829
|
+
return v * 12.92;
|
|
830
|
+
else
|
|
831
|
+
return 1.055 * Math.pow(v, 1 / 2.4) - 0.055;
|
|
832
|
+
};
|
|
833
|
+
return tidy({
|
|
834
|
+
r: gammaChannel(srgb.linearR) * 255,
|
|
835
|
+
g: gammaChannel(srgb.linearG) * 255,
|
|
836
|
+
b: gammaChannel(srgb.linearB) * 255,
|
|
837
|
+
a: srgb.a
|
|
838
|
+
});
|
|
839
|
+
}
|