@oliasoft-open-source/react-ui-library 3.5.2 → 3.5.3
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 +5 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -62503,7 +62503,8 @@ const Cell = (props) => {
|
|
|
62503
62503
|
} = props;
|
|
62504
62504
|
const {
|
|
62505
62505
|
style: style2,
|
|
62506
|
-
colSpan
|
|
62506
|
+
colSpan,
|
|
62507
|
+
rowSpan
|
|
62507
62508
|
} = cell2;
|
|
62508
62509
|
const ref2 = useRef(null);
|
|
62509
62510
|
const alignment = {
|
|
@@ -62527,6 +62528,7 @@ const Cell = (props) => {
|
|
|
62527
62528
|
} : {}
|
|
62528
62529
|
},
|
|
62529
62530
|
colSpan,
|
|
62531
|
+
rowSpan,
|
|
62530
62532
|
children: /* @__PURE__ */ jsx(CellWrapper, {
|
|
62531
62533
|
cell: cell2,
|
|
62532
62534
|
columnAlignment: cellAlignmentText,
|
|
@@ -62549,6 +62551,7 @@ const Cell = (props) => {
|
|
|
62549
62551
|
} : {}
|
|
62550
62552
|
},
|
|
62551
62553
|
colSpan,
|
|
62554
|
+
rowSpan,
|
|
62552
62555
|
children: /* @__PURE__ */ jsx(CellWrapper, {
|
|
62553
62556
|
cell: cell2,
|
|
62554
62557
|
columnAlignment: cellAlignmentText,
|
|
@@ -62562,6 +62565,7 @@ const cellShape = PropTypes__default.oneOfType([PropTypes__default.shape({
|
|
|
62562
62565
|
value: PropTypes__default.oneOfType([PropTypes__default.string, PropTypes__default.number]),
|
|
62563
62566
|
type: cellType,
|
|
62564
62567
|
colSpan: PropTypes__default.number,
|
|
62568
|
+
rowSpan: PropTypes__default.number,
|
|
62565
62569
|
error: PropTypes__default.oneOfType([PropTypes__default.string, PropTypes__default.number, PropTypes__default.node]),
|
|
62566
62570
|
warning: PropTypes__default.oneOfType([PropTypes__default.string, PropTypes__default.number, PropTypes__default.node]),
|
|
62567
62571
|
tooltip: PropTypes__default.oneOfType([PropTypes__default.string, PropTypes__default.number, PropTypes__default.node]),
|
package/package.json
CHANGED