@thi.ng/hiccup-css 2.7.72 → 2.7.74
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/README.md +1 -1
- package/conditional.js +1 -1
- package/impl.js +2 -2
- package/keyframes.js +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
> This is one of
|
|
10
|
+
> This is one of 211 standalone projects, maintained as part
|
|
11
11
|
> of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
|
|
12
12
|
> and anti-framework.
|
|
13
13
|
>
|
package/conditional.js
CHANGED
package/impl.js
CHANGED
|
@@ -84,7 +84,7 @@ const formatDecls = (rules, opts) => {
|
|
|
84
84
|
const prefixes = opts.autoprefix || EMPTY;
|
|
85
85
|
const space = indent(opts, opts.depth + 1);
|
|
86
86
|
const acc = [];
|
|
87
|
-
for (
|
|
87
|
+
for (const r in rules) {
|
|
88
88
|
if (rules.hasOwnProperty(r)) {
|
|
89
89
|
let val = rules[r];
|
|
90
90
|
if (isFunction(val)) {
|
|
@@ -94,7 +94,7 @@ const formatDecls = (rules, opts) => {
|
|
|
94
94
|
val = val.map((v) => isArray(v) ? v.join(" ") : v).join(f.ruleSep);
|
|
95
95
|
}
|
|
96
96
|
if (prefixes.has(r)) {
|
|
97
|
-
for (
|
|
97
|
+
for (const v of opts.vendors) {
|
|
98
98
|
acc.push(`${space}${v}${r}:${f.valSep}${val};`);
|
|
99
99
|
}
|
|
100
100
|
}
|
package/keyframes.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/hiccup-css",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.74",
|
|
4
4
|
"description": "CSS from nested JS data structures",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@thi.ng/api": "^8.12.
|
|
43
|
-
"@thi.ng/checks": "^3.
|
|
44
|
-
"@thi.ng/errors": "^2.5.
|
|
45
|
-
"@thi.ng/transducers": "^9.6.
|
|
42
|
+
"@thi.ng/api": "^8.12.10",
|
|
43
|
+
"@thi.ng/checks": "^3.8.0",
|
|
44
|
+
"@thi.ng/errors": "^2.5.50",
|
|
45
|
+
"@thi.ng/transducers": "^9.6.19"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"esbuild": "^0.27.0",
|
|
@@ -129,5 +129,5 @@
|
|
|
129
129
|
],
|
|
130
130
|
"year": 2016
|
|
131
131
|
},
|
|
132
|
-
"gitHead": "
|
|
132
|
+
"gitHead": "824bf9047b5a10f777c5c5b4aeecf0c750a22c75\n"
|
|
133
133
|
}
|