@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.
Files changed (2) hide show
  1. package/index.esm.js +3 -3
  2. 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 || '', styles$1.row]);
2471
+ const customRowClass = combineClasses(['dot-row-container', row.styleClass || '']);
2472
2472
  return jsx("div", {
2473
- className: "dot-row-container",
2473
+ className: customRowClass,
2474
2474
  children: jsx("div", {
2475
- className: customRowClass,
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dotcms/react",
3
- "version": "1.2.3-next.3",
3
+ "version": "1.2.3-next.5",
4
4
  "peerDependencies": {
5
5
  "react": ">=18",
6
6
  "react-dom": ">=18"