ods-component-lib 1.17.20 → 1.17.21
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 +48 -0
- package/dist/index.js +16 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +17 -4
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -25,4 +25,52 @@ div._1veiV {
|
|
|
25
25
|
|
|
26
26
|
tr:first-child {
|
|
27
27
|
background-color: #E6F4FF !important; /* Replace with your desired background color */
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
._q4jkZ > ._1UPzZ, ._q4jkZ > ._1XbNt {
|
|
32
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
._q4jkZ ._1UPzZ, ._1GEDH + ._1UPzZ, ._1UPzZ._4V16J {
|
|
36
|
+
border-top: 1px solid rgba(0, 0, 0, 0.06);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
._q4jkZ > ._1GEDH, ._q4jkZ > ._1UPzZ, ._q4jkZ > ._1XbNt {
|
|
40
|
+
border-left: 1px solid rgba(0, 0, 0, 0.06);
|
|
41
|
+
border-right: 1px solid rgba(0, 0, 0, 0.06);
|
|
42
|
+
border-radius: 5px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
._q4jkZ > ._3mbXf, ._q4jkZ > ._1GEDH {
|
|
46
|
+
border-top: 1px solid rgba(0, 0, 0, 0.06);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
._1GEDH ._2NiLf ._2CvVM > td {
|
|
50
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
._36VXO ._3udtX > td {
|
|
54
|
+
border-left: 1px solid rgba(0, 0, 0, 0.06);
|
|
55
|
+
border-right: 1px solid rgba(0, 0, 0, 0.06);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
._1GEDH {
|
|
59
|
+
border-bottom: none;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
._1GEDH {
|
|
63
|
+
color: #000000E0;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
._pljbP {
|
|
67
|
+
border-radius: 6px;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
._3nKdN, ._23Fql {
|
|
71
|
+
background-color: #E6F4FF;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
._1hTxK._3umXw {
|
|
75
|
+
background-color: #E6F4FF;
|
|
28
76
|
}
|
package/dist/index.js
CHANGED
|
@@ -1196,7 +1196,6 @@ function OdsDataGrid(props) {
|
|
|
1196
1196
|
return grid(props, dataGridRef);
|
|
1197
1197
|
}
|
|
1198
1198
|
function grid(props, dataGridRef) {
|
|
1199
|
-
var _ref;
|
|
1200
1199
|
var headerCellRender = function headerCellRender(colProperties) {
|
|
1201
1200
|
return React__default.createElement("th", {
|
|
1202
1201
|
className: "dx-datagrid-headers",
|
|
@@ -1262,7 +1261,9 @@ function grid(props, dataGridRef) {
|
|
|
1262
1261
|
columnAutoWidth: false,
|
|
1263
1262
|
onEditCanceling: props.onEditCanceling,
|
|
1264
1263
|
onExporting: onExporting,
|
|
1265
|
-
height:
|
|
1264
|
+
height: window.innerHeight - 164,
|
|
1265
|
+
repaintChangesOnly: true,
|
|
1266
|
+
remoteOperations: props.remoteOperations !== undefined ? props.remoteOperations : false,
|
|
1266
1267
|
ref: dataGridRef
|
|
1267
1268
|
}, React__default.createElement(dataGrid.Paging, {
|
|
1268
1269
|
enabled: true,
|
|
@@ -1277,6 +1278,15 @@ function grid(props, dataGridRef) {
|
|
|
1277
1278
|
visible: true
|
|
1278
1279
|
}), props.filterEnable && React__default.createElement(dataGrid.FilterRow, {
|
|
1279
1280
|
visible: true
|
|
1281
|
+
}), React__default.createElement(dataGrid.FilterPanel, {
|
|
1282
|
+
visible: true
|
|
1283
|
+
}), props.remoteOperations !== undefined && props.remoteOperations === true && React__default.createElement(dataGrid.RemoteOperations, {
|
|
1284
|
+
filtering: true,
|
|
1285
|
+
paging: false,
|
|
1286
|
+
sorting: true,
|
|
1287
|
+
summary: false,
|
|
1288
|
+
grouping: false,
|
|
1289
|
+
groupPaging: false
|
|
1280
1290
|
}), props.headerFilterEnable && React__default.createElement(dataGrid.HeaderFilter, {
|
|
1281
1291
|
visible: true
|
|
1282
1292
|
}), React__default.createElement(dataGrid.ColumnChooser, {
|
|
@@ -1320,7 +1330,10 @@ function grid(props, dataGridRef) {
|
|
|
1320
1330
|
});
|
|
1321
1331
|
}));
|
|
1322
1332
|
}))), React__default.createElement(dataGrid.Scrolling, {
|
|
1323
|
-
mode: props.scrollingMode
|
|
1333
|
+
mode: props.scroll.scrollingMode,
|
|
1334
|
+
showScrollbar: props.scroll.showScrollbar,
|
|
1335
|
+
scrollByContent: props.scroll.scrollByContent,
|
|
1336
|
+
scrollByThumb: props.scroll.scrollByThumb
|
|
1324
1337
|
}), props.exportEnable === true && React__default.createElement(dataGrid.Export, {
|
|
1325
1338
|
enabled: true,
|
|
1326
1339
|
allowExportSelectedData: true,
|