inviton-powerduck 0.0.84 → 0.0.85

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.
@@ -1438,6 +1438,10 @@ class DataTableComponent extends TsxComponent<DataTableArgs> implements DataTabl
1438
1438
  this.forceBodyRedraw();
1439
1439
  }
1440
1440
 
1441
+ getTotalCount(): number {
1442
+ return this.totalCount;
1443
+ }
1444
+
1441
1445
  setSkin(skin: DataTableSkin): void {
1442
1446
  StorageHelper.storeSkin(this.id, skin);
1443
1447
  this.currentSkin = skin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inviton-powerduck",
3
- "version": "0.0.84",
3
+ "version": "0.0.85",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": " vite build && vue-tsc --declaration --emitDeclarationOnly",