@webitel/ui-sdk 24.6.4 → 24.6.5
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
|
@@ -24,6 +24,10 @@ export const useTableStore = (namespace) => {
|
|
|
24
24
|
return store.dispatch(`${tableNamespace}/LOAD_DATA_LIST`, payload);
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
+
function onFilterEvent(payload) {
|
|
28
|
+
return store.dispatch(`${tableNamespace}/ON_FILTER_EVENT`, payload);
|
|
29
|
+
}
|
|
30
|
+
|
|
27
31
|
function patchProperty(payload) {
|
|
28
32
|
return store.dispatch(`${tableNamespace}/PATCH_ITEM_PROPERTY`, payload);
|
|
29
33
|
}
|
|
@@ -54,6 +58,7 @@ export const useTableStore = (namespace) => {
|
|
|
54
58
|
error,
|
|
55
59
|
|
|
56
60
|
loadData,
|
|
61
|
+
onFilterEvent,
|
|
57
62
|
patchProperty,
|
|
58
63
|
deleteData,
|
|
59
64
|
sort,
|