@webitel/ui-sdk 3.1.47 → 3.1.48

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "3.1.47",
3
+ "version": "3.1.48",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve-lib": "vue-cli-service serve",
@@ -23,8 +23,8 @@ export const useTableStore = (namespace) => {
23
23
  const search = computed(() => getNamespacedState(store.state, tableNamespace).search);
24
24
 
25
25
  const error = computed(() => getNamespacedState(store.state, tableNamespace).errors);
26
- async function loadData() {
27
- return store.dispatch(`${tableNamespace}/LOAD_DATA_LIST`);
26
+ async function loadData(payload) {
27
+ return store.dispatch(`${tableNamespace}/LOAD_DATA_LIST`, payload);
28
28
  }
29
29
 
30
30
  async function setSize(payload) {