@pdg/react-table 1.0.68 → 1.0.69

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.
@@ -101,6 +101,7 @@ export interface TableCommands<T = TableItem> {
101
101
  getColumns(): TableProps<T>['columns'];
102
102
  setColumns(columns: TableProps<T>['columns']): void;
103
103
  getItems(): TableProps<T>['items'];
104
+ setItems(items: TableProps<T>['items']): void;
104
105
  getPaging(): TableProps<T>['paging'];
105
106
  setItemsPaging(items: TableProps<T>['items'], paging: TableProps<T>['paging']): void;
106
107
  resetSort(): void;
package/dist/index.esm.js CHANGED
@@ -3731,6 +3731,10 @@ var Table = React__default.forwardRef(function (_a, ref) {
3731
3731
  setColumns(lastColumns_1);
3732
3732
  },
3733
3733
  getItems: function () { return lastItems_1; },
3734
+ setItems: function (items) {
3735
+ lastItems_1 = items;
3736
+ setItems(items);
3737
+ },
3734
3738
  getPaging: function () { return lastPaging_1; },
3735
3739
  setItemsPaging: function (items, paging) {
3736
3740
  lastItems_1 = items;