@iankibetsh/shframework 3.0.9 → 4.1.0
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/library.js +2 -2
- package/dist/library.mjs +2 -2
- package/package.json +1 -1
package/dist/library.js
CHANGED
|
@@ -2473,7 +2473,7 @@ var script$s = {
|
|
|
2473
2473
|
if (!this.suggests) {
|
|
2474
2474
|
this.suggests = [];
|
|
2475
2475
|
}
|
|
2476
|
-
this.suggests.
|
|
2476
|
+
this.suggests[key] = this.fillSelects[key].data;
|
|
2477
2477
|
} else if (this.fillSelects[key].data) {
|
|
2478
2478
|
this.selectData[key] = this.fillSelects[key].data;
|
|
2479
2479
|
} else {
|
|
@@ -4307,7 +4307,7 @@ var script$b = {
|
|
|
4307
4307
|
return {
|
|
4308
4308
|
order_by: '',
|
|
4309
4309
|
order_method: '',
|
|
4310
|
-
per_page: shRepo.getShConfig('tablePerPage', 10),
|
|
4310
|
+
per_page: this.pageCount ?? shRepo.getShConfig('tablePerPage', 10),
|
|
4311
4311
|
page: 1,
|
|
4312
4312
|
exactMatch: false,
|
|
4313
4313
|
filter_value: '',
|
package/dist/library.mjs
CHANGED
|
@@ -2461,7 +2461,7 @@ var script$s = {
|
|
|
2461
2461
|
if (!this.suggests) {
|
|
2462
2462
|
this.suggests = [];
|
|
2463
2463
|
}
|
|
2464
|
-
this.suggests.
|
|
2464
|
+
this.suggests[key] = this.fillSelects[key].data;
|
|
2465
2465
|
} else if (this.fillSelects[key].data) {
|
|
2466
2466
|
this.selectData[key] = this.fillSelects[key].data;
|
|
2467
2467
|
} else {
|
|
@@ -4295,7 +4295,7 @@ var script$b = {
|
|
|
4295
4295
|
return {
|
|
4296
4296
|
order_by: '',
|
|
4297
4297
|
order_method: '',
|
|
4298
|
-
per_page: shRepo.getShConfig('tablePerPage', 10),
|
|
4298
|
+
per_page: this.pageCount ?? shRepo.getShConfig('tablePerPage', 10),
|
|
4299
4299
|
page: 1,
|
|
4300
4300
|
exactMatch: false,
|
|
4301
4301
|
filter_value: '',
|