@helpdice/ui 1.2.2 → 1.2.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 +4 -1
- package/dist/table/index.js +4 -1
- package/esm/table/data-table.js +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -42877,10 +42877,13 @@ function DataTable(_ref) {
|
|
|
42877
42877
|
}
|
|
42878
42878
|
}, COLUMNS.map(function (column, index) {
|
|
42879
42879
|
return /*#__PURE__*/React.createElement(Table.Column, {
|
|
42880
|
+
fontSize: column === null || column === undefined ? undefined : column.fontSize,
|
|
42880
42881
|
key: "".concat(column.id, "-").concat(index),
|
|
42881
42882
|
prop: column.id,
|
|
42882
42883
|
label: column.name,
|
|
42883
|
-
filter: column.filter
|
|
42884
|
+
filter: column === null || column === undefined ? undefined : column.filter,
|
|
42885
|
+
noWrap: column === null || column === undefined ? undefined : column.noWrap,
|
|
42886
|
+
align: column === null || column === undefined ? undefined : column.align
|
|
42884
42887
|
});
|
|
42885
42888
|
})))));
|
|
42886
42889
|
}
|
package/dist/table/index.js
CHANGED
|
@@ -31469,10 +31469,13 @@ function DataTable(_ref) {
|
|
|
31469
31469
|
}
|
|
31470
31470
|
}, COLUMNS.map(function (column, index) {
|
|
31471
31471
|
return /*#__PURE__*/React.createElement(Table.Column, {
|
|
31472
|
+
fontSize: column === null || column === undefined ? undefined : column.fontSize,
|
|
31472
31473
|
key: "".concat(column.id, "-").concat(index),
|
|
31473
31474
|
prop: column.id,
|
|
31474
31475
|
label: column.name,
|
|
31475
|
-
filter: column.filter
|
|
31476
|
+
filter: column === null || column === undefined ? undefined : column.filter,
|
|
31477
|
+
noWrap: column === null || column === undefined ? undefined : column.noWrap,
|
|
31478
|
+
align: column === null || column === undefined ? undefined : column.align
|
|
31476
31479
|
});
|
|
31477
31480
|
})))));
|
|
31478
31481
|
}
|
package/esm/table/data-table.js
CHANGED
|
@@ -321,10 +321,13 @@ function DataTable(_ref) {
|
|
|
321
321
|
}
|
|
322
322
|
}, COLUMNS.map(function (column, index) {
|
|
323
323
|
return /*#__PURE__*/React.createElement(Table.Column, {
|
|
324
|
+
fontSize: column === null || column === void 0 ? void 0 : column.fontSize,
|
|
324
325
|
key: "".concat(column.id, "-").concat(index),
|
|
325
326
|
prop: column.id,
|
|
326
327
|
label: column.name,
|
|
327
|
-
filter: column.filter
|
|
328
|
+
filter: column === null || column === void 0 ? void 0 : column.filter,
|
|
329
|
+
noWrap: column === null || column === void 0 ? void 0 : column.noWrap,
|
|
330
|
+
align: column === null || column === void 0 ? void 0 : column.align
|
|
328
331
|
});
|
|
329
332
|
})))));
|
|
330
333
|
}
|