@thi.ng/color-palettes 1.2.44 → 1.2.45
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/CHANGELOG.md +1 -1
- package/filter.d.ts +2 -2
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
package/filter.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export declare const defFilter: (pred: ColorPredicate, threshold?: number) => Th
|
|
|
15
15
|
* which only succeeds if *all* given predicates pass.
|
|
16
16
|
*
|
|
17
17
|
* @example
|
|
18
|
-
* ```ts
|
|
18
|
+
* ```ts tangle:../export/comp-filter.ts
|
|
19
19
|
* import { compFilter, chroma, luma, cssThemes } from "@thi.ng/color-palettes";
|
|
20
20
|
*
|
|
21
21
|
* // pre-compose combined query filter
|
|
@@ -26,7 +26,7 @@ export declare const defFilter: (pred: ColorPredicate, threshold?: number) => Th
|
|
|
26
26
|
* luma(0.5, 1, 3)
|
|
27
27
|
* );
|
|
28
28
|
*
|
|
29
|
-
* [...cssThemes(pastels)]
|
|
29
|
+
* console.log([...cssThemes(pastels)])
|
|
30
30
|
* // [
|
|
31
31
|
* // [ '#453f38', '#746b5d', '#b39777', '#c1c2b2', '#e3dccf', '#f1ede7' ],
|
|
32
32
|
* // [ '#857b84', '#b1a7b0', '#d0c7d0', '#e7e0e8', '#faeceb', '#e4e9fa' ]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/color-palettes",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.45",
|
|
4
4
|
"description": "Collection of 200+ image based color themes & composable theme query filters",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -38,19 +38,19 @@
|
|
|
38
38
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@thi.ng/api": "^8.9.
|
|
42
|
-
"@thi.ng/base-n": "^2.7.
|
|
43
|
-
"@thi.ng/checks": "^3.5.
|
|
44
|
-
"@thi.ng/color": "^5.6.
|
|
45
|
-
"@thi.ng/errors": "^2.
|
|
46
|
-
"@thi.ng/hex": "^2.3.
|
|
41
|
+
"@thi.ng/api": "^8.9.30",
|
|
42
|
+
"@thi.ng/base-n": "^2.7.7",
|
|
43
|
+
"@thi.ng/checks": "^3.5.3",
|
|
44
|
+
"@thi.ng/color": "^5.6.32",
|
|
45
|
+
"@thi.ng/errors": "^2.5.0",
|
|
46
|
+
"@thi.ng/hex": "^2.3.40"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@microsoft/api-extractor": "^7.
|
|
50
|
-
"esbuild": "^0.20.
|
|
49
|
+
"@microsoft/api-extractor": "^7.42.3",
|
|
50
|
+
"esbuild": "^0.20.1",
|
|
51
51
|
"rimraf": "^5.0.5",
|
|
52
|
-
"typedoc": "^0.25.
|
|
53
|
-
"typescript": "^5.
|
|
52
|
+
"typedoc": "^0.25.12",
|
|
53
|
+
"typescript": "^5.4.2"
|
|
54
54
|
},
|
|
55
55
|
"keywords": [
|
|
56
56
|
"css",
|
|
@@ -91,5 +91,5 @@
|
|
|
91
91
|
"parent": "@thi.ng/color",
|
|
92
92
|
"year": 2021
|
|
93
93
|
},
|
|
94
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "7f3fcbd6c0462b0ce45afa141fe163d1f297fd51\n"
|
|
95
95
|
}
|