@banch0u/core-project-test-repository 1.12.0 → 1.12.2
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.
|
@@ -105,7 +105,7 @@ var Filter = function Filter(_ref) {
|
|
|
105
105
|
key: i,
|
|
106
106
|
value: isIdArray ? JSON.stringify(option.id) // Convert array to string
|
|
107
107
|
: option.id // Use ID directly
|
|
108
|
-
}, option.name, " ", option.surname, " ", option.text);
|
|
108
|
+
}, option.name, " ", option.surname, " ", option.text, " [".concat(option.registrationNumber, "] ").concat(option.vehicleBrand, " ").concat(option.vehicleModel));
|
|
109
109
|
})));
|
|
110
110
|
}
|
|
111
111
|
if (col.type === "date") {
|
|
@@ -17,7 +17,10 @@ var Table = function Table(_ref) {
|
|
|
17
17
|
innerW = _ref.innerW,
|
|
18
18
|
disableDrag = _ref.disableDrag,
|
|
19
19
|
_ref$big = _ref.big,
|
|
20
|
-
big = _ref$big === void 0 ? false : _ref$big
|
|
20
|
+
big = _ref$big === void 0 ? false : _ref$big,
|
|
21
|
+
_ref$isArchive = _ref.isArchive,
|
|
22
|
+
isArchive = _ref$isArchive === void 0 ? false : _ref$isArchive,
|
|
23
|
+
expanded = _ref.expanded;
|
|
21
24
|
var getSavedOrder = function getSavedOrder(id) {
|
|
22
25
|
var savedOrder = Cookies.get("columnOrder_".concat(id));
|
|
23
26
|
return savedOrder ? savedOrder.split(",") : null;
|
|
@@ -199,7 +202,7 @@ var Table = function Table(_ref) {
|
|
|
199
202
|
components: components,
|
|
200
203
|
scroll: {
|
|
201
204
|
x: innerW * (Array.isArray(selectedColumns) ? selectedColumns.length - 1 : 0),
|
|
202
|
-
y: "calc(88vh - ".concat(window.innerWidth > 1537 ? big === true ? "180px" : "260px" : big === true ? "200px" : "280px", ")")
|
|
205
|
+
y: !isArchive ? "calc(88vh - ".concat(window.innerWidth > 1537 ? big === true ? "180px" : "260px" : big === true ? "200px" : "280px", ")") : "calc(88vh - ".concat(window.innerWidth > 1537 ? expanded ? "349px" : "280px" : expanded ? "368px" : "300px", ")")
|
|
203
206
|
}
|
|
204
207
|
}));
|
|
205
208
|
};
|