@redneckz/wildless-cms-uni-blocks 0.14.449 → 0.14.450
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/bundle/bundle.umd.js +9 -1
- package/bundle/bundle.umd.min.js +1 -1
- package/bundle/utils/style.d.ts +2 -1
- package/dist/utils/style.d.ts +2 -1
- package/dist/utils/style.js +8 -0
- package/dist/utils/style.js.map +1 -1
- package/lib/utils/style.d.ts +2 -1
- package/lib/utils/style.js +8 -0
- package/lib/utils/style.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +9 -1
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/bundle/utils/style.d.ts +2 -1
- package/mobile/dist/utils/style.d.ts +2 -1
- package/mobile/dist/utils/style.js +8 -0
- package/mobile/dist/utils/style.js.map +1 -1
- package/mobile/lib/utils/style.d.ts +2 -1
- package/mobile/lib/utils/style.js +8 -0
- package/mobile/lib/utils/style.js.map +1 -1
- package/mobile/src/utils/style.ts +14 -1
- package/package.json +1 -1
- package/src/utils/style.ts +14 -1
package/bundle/bundle.umd.js
CHANGED
|
@@ -127,6 +127,14 @@
|
|
|
127
127
|
};
|
|
128
128
|
|
|
129
129
|
const style = (...atoms) => atoms
|
|
130
|
+
.map((_) => {
|
|
131
|
+
if (_ && typeof _ === 'object' && !Array.isArray(_)) {
|
|
132
|
+
return style(Object.entries(_)
|
|
133
|
+
.filter(([, v]) => v)
|
|
134
|
+
.map(([k]) => k));
|
|
135
|
+
}
|
|
136
|
+
return _;
|
|
137
|
+
})
|
|
130
138
|
.flatMap((_) => _)
|
|
131
139
|
.filter(Boolean)
|
|
132
140
|
.join(' ');
|
|
@@ -6562,7 +6570,7 @@
|
|
|
6562
6570
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
6563
6571
|
});
|
|
6564
6572
|
|
|
6565
|
-
const packageVersion = "0.14.
|
|
6573
|
+
const packageVersion = "0.14.449";
|
|
6566
6574
|
|
|
6567
6575
|
exports.Blocks = Blocks;
|
|
6568
6576
|
exports.ContentPage = ContentPage;
|