@dotcms/react 1.2.3-next.3 → 1.2.3-next.5
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/index.esm.js +3 -3
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -2468,11 +2468,11 @@ function Column({
|
|
|
2468
2468
|
const Row = ({
|
|
2469
2469
|
row
|
|
2470
2470
|
}) => {
|
|
2471
|
-
const customRowClass = combineClasses([row.styleClass || ''
|
|
2471
|
+
const customRowClass = combineClasses(['dot-row-container', row.styleClass || '']);
|
|
2472
2472
|
return jsx("div", {
|
|
2473
|
-
className:
|
|
2473
|
+
className: customRowClass,
|
|
2474
2474
|
children: jsx("div", {
|
|
2475
|
-
className:
|
|
2475
|
+
className: styles$1.row,
|
|
2476
2476
|
"data-dot-object": 'row',
|
|
2477
2477
|
children: row.columns.map((column, index) => jsx(Column, {
|
|
2478
2478
|
column: column
|