wacom 20.0.21 → 20.0.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/fesm2022/wacom.mjs +2 -1
- package/fesm2022/wacom.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/package.json +1 -1
package/fesm2022/wacom.mjs
CHANGED
|
@@ -1405,6 +1405,7 @@ class CrudComponent {
|
|
|
1405
1405
|
};
|
|
1406
1406
|
}
|
|
1407
1407
|
configType = 'server';
|
|
1408
|
+
perPage = 20;
|
|
1408
1409
|
/**
|
|
1409
1410
|
* Configuration object used by the UI for rendering table and handling actions.
|
|
1410
1411
|
*/
|
|
@@ -1502,7 +1503,7 @@ class CrudComponent {
|
|
|
1502
1503
|
? {
|
|
1503
1504
|
...config,
|
|
1504
1505
|
paginate: this.setDocuments.bind(this),
|
|
1505
|
-
perPage:
|
|
1506
|
+
perPage: this.perPage,
|
|
1506
1507
|
setPerPage: this.service.setPerPage?.bind(this.service),
|
|
1507
1508
|
allDocs: false,
|
|
1508
1509
|
}
|