ods-component-lib 1.17.20 → 1.17.22
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 +22 -5
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +23 -6
- 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,7 @@ function OdsDataGrid(props) {
|
|
|
1196
1196
|
return grid(props, dataGridRef);
|
|
1197
1197
|
}
|
|
1198
1198
|
function grid(props, dataGridRef) {
|
|
1199
|
-
|
|
1199
|
+
debugger;
|
|
1200
1200
|
var headerCellRender = function headerCellRender(colProperties) {
|
|
1201
1201
|
return React__default.createElement("th", {
|
|
1202
1202
|
className: "dx-datagrid-headers",
|
|
@@ -1260,12 +1260,17 @@ function grid(props, dataGridRef) {
|
|
|
1260
1260
|
showRowLines: true,
|
|
1261
1261
|
showBorders: true,
|
|
1262
1262
|
columnAutoWidth: false,
|
|
1263
|
+
focusedRowEnabled: false,
|
|
1264
|
+
wordWrapEnabled: false,
|
|
1263
1265
|
onEditCanceling: props.onEditCanceling,
|
|
1264
1266
|
onExporting: onExporting,
|
|
1265
|
-
height:
|
|
1267
|
+
height: window.innerHeight - 164,
|
|
1268
|
+
repaintChangesOnly: true,
|
|
1269
|
+
remoteOperations: props.remoteOperations !== undefined ? props.remoteOperations : false,
|
|
1266
1270
|
ref: dataGridRef
|
|
1267
|
-
}, React__default.createElement(dataGrid.
|
|
1268
|
-
enabled: true
|
|
1271
|
+
}, React__default.createElement(dataGrid.LoadPanel, {
|
|
1272
|
+
enabled: true
|
|
1273
|
+
}), React__default.createElement(dataGrid.Paging, {
|
|
1269
1274
|
defaultPageSize: props.pageSize
|
|
1270
1275
|
}), props.pagingEnable && React__default.createElement(dataGrid.Pager, {
|
|
1271
1276
|
visible: true,
|
|
@@ -1277,6 +1282,15 @@ function grid(props, dataGridRef) {
|
|
|
1277
1282
|
visible: true
|
|
1278
1283
|
}), props.filterEnable && React__default.createElement(dataGrid.FilterRow, {
|
|
1279
1284
|
visible: true
|
|
1285
|
+
}), React__default.createElement(dataGrid.FilterPanel, {
|
|
1286
|
+
visible: true
|
|
1287
|
+
}), props.remoteOperations && React__default.createElement(dataGrid.RemoteOperations, {
|
|
1288
|
+
filtering: true,
|
|
1289
|
+
paging: false,
|
|
1290
|
+
sorting: true,
|
|
1291
|
+
summary: false,
|
|
1292
|
+
grouping: false,
|
|
1293
|
+
groupPaging: false
|
|
1280
1294
|
}), props.headerFilterEnable && React__default.createElement(dataGrid.HeaderFilter, {
|
|
1281
1295
|
visible: true
|
|
1282
1296
|
}), React__default.createElement(dataGrid.ColumnChooser, {
|
|
@@ -1320,7 +1334,10 @@ function grid(props, dataGridRef) {
|
|
|
1320
1334
|
});
|
|
1321
1335
|
}));
|
|
1322
1336
|
}))), React__default.createElement(dataGrid.Scrolling, {
|
|
1323
|
-
mode: props.scrollingMode
|
|
1337
|
+
mode: props.scroll.scrollingMode,
|
|
1338
|
+
showScrollbar: props.scroll.showScrollbar,
|
|
1339
|
+
scrollByContent: props.scroll.scrollByContent,
|
|
1340
|
+
scrollByThumb: props.scroll.scrollByThumb
|
|
1324
1341
|
}), props.exportEnable === true && React__default.createElement(dataGrid.Export, {
|
|
1325
1342
|
enabled: true,
|
|
1326
1343
|
allowExportSelectedData: true,
|