ods-component-lib 1.17.3 → 1.17.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/dist/index.css +5 -18
- package/dist/index.js +27 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +27 -3
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -1215,7 +1215,15 @@ function grid(props) {
|
|
|
1215
1215
|
var _ref;
|
|
1216
1216
|
var headerCellRender = function headerCellRender(colProperties) {
|
|
1217
1217
|
return React.createElement("th", {
|
|
1218
|
-
className: "dx-datagrid-headers"
|
|
1218
|
+
className: "dx-datagrid-headers",
|
|
1219
|
+
style: {
|
|
1220
|
+
fontFamily: "Manrope",
|
|
1221
|
+
fontSize: "14px",
|
|
1222
|
+
fontStyle: "normal",
|
|
1223
|
+
fontWeight: "600",
|
|
1224
|
+
lineHeight: "22px",
|
|
1225
|
+
background: "#E6F4FF"
|
|
1226
|
+
}
|
|
1219
1227
|
}, colProperties.column.caption);
|
|
1220
1228
|
};
|
|
1221
1229
|
var fileName = props.exportFileName ? props.exportFileName + moment().format("YYYYMMDD") : "DatagridExportFile" + moment().format("YYYYMMDD");
|
|
@@ -1424,7 +1432,15 @@ function OdsDisplayGrid(props) {
|
|
|
1424
1432
|
function grid$1(props) {
|
|
1425
1433
|
var headerCellRender = function headerCellRender(colProperties) {
|
|
1426
1434
|
return React.createElement("th", {
|
|
1427
|
-
className: "dx-datagrid-headers"
|
|
1435
|
+
className: "dx-datagrid-headers",
|
|
1436
|
+
style: {
|
|
1437
|
+
fontFamily: "Manrope",
|
|
1438
|
+
fontSize: "14px",
|
|
1439
|
+
fontStyle: "normal",
|
|
1440
|
+
fontWeight: "600",
|
|
1441
|
+
lineHeight: "22px",
|
|
1442
|
+
background: "#E6F4FF"
|
|
1443
|
+
}
|
|
1428
1444
|
}, colProperties.column.caption);
|
|
1429
1445
|
};
|
|
1430
1446
|
var fileName = props.exportFileName ? props.exportFileName + moment().format("YYYYMMDD") : "DatagridExportFile" + moment().format("YYYYMMDD");
|
|
@@ -1824,7 +1840,15 @@ function grid$2(props) {
|
|
|
1824
1840
|
var _ref;
|
|
1825
1841
|
var headerCellRender = function headerCellRender(colProperties) {
|
|
1826
1842
|
return React.createElement("th", {
|
|
1827
|
-
className: "dx-datagrid-headers"
|
|
1843
|
+
className: "dx-datagrid-headers",
|
|
1844
|
+
style: {
|
|
1845
|
+
fontFamily: "Manrope",
|
|
1846
|
+
fontSize: "14px",
|
|
1847
|
+
fontStyle: "normal",
|
|
1848
|
+
fontWeight: "600",
|
|
1849
|
+
lineHeight: "22px",
|
|
1850
|
+
background: "#E6F4FF"
|
|
1851
|
+
}
|
|
1828
1852
|
}, colProperties.column.caption);
|
|
1829
1853
|
};
|
|
1830
1854
|
var fileName = props.exportFileName ? props.exportFileName + moment().format("YYYYMMDD") : "DatagridExportFile" + moment().format("YYYYMMDD");
|