@clyrex-digital/clyrex-controls-dev 0.8.1-dev.20260722101954 → 0.8.1-dev.20260722104420
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/dist/index.js +4 -1
- package/dist/index.mjs +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6897,7 +6897,10 @@ var DivContainer = async (props) => {
|
|
|
6897
6897
|
Wrapper,
|
|
6898
6898
|
{
|
|
6899
6899
|
id: guid,
|
|
6900
|
-
style:
|
|
6900
|
+
style: {
|
|
6901
|
+
...combinedStyles,
|
|
6902
|
+
backgroundColor: "red"
|
|
6903
|
+
},
|
|
6901
6904
|
className: classNames || void 0,
|
|
6902
6905
|
...wrapperProps,
|
|
6903
6906
|
children: dataToRender.map(
|
package/dist/index.mjs
CHANGED
|
@@ -2658,7 +2658,10 @@ var DivContainer = async (props) => {
|
|
|
2658
2658
|
Wrapper,
|
|
2659
2659
|
{
|
|
2660
2660
|
id: guid,
|
|
2661
|
-
style:
|
|
2661
|
+
style: {
|
|
2662
|
+
...combinedStyles,
|
|
2663
|
+
backgroundColor: "red"
|
|
2664
|
+
},
|
|
2662
2665
|
className: classNames || void 0,
|
|
2663
2666
|
...wrapperProps,
|
|
2664
2667
|
children: dataToRender.map(
|