@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.
@@ -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.448";
6573
+ const packageVersion = "0.14.449";
6566
6574
 
6567
6575
  exports.Blocks = Blocks;
6568
6576
  exports.ContentPage = ContentPage;