@webitel/ui-sdk 24.6.52 → 24.6.53
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,3 +1,5 @@
|
|
|
1
|
+
import set from 'lodash/set.js';
|
|
2
|
+
|
|
1
3
|
export default class BaseStoreModule {
|
|
2
4
|
state = {};
|
|
3
5
|
|
|
@@ -5,7 +7,11 @@ export default class BaseStoreModule {
|
|
|
5
7
|
|
|
6
8
|
actions = {};
|
|
7
9
|
|
|
8
|
-
mutations = {
|
|
10
|
+
mutations = {
|
|
11
|
+
SET: (state, { path, value }) => {
|
|
12
|
+
return set(state, path, value);
|
|
13
|
+
},
|
|
14
|
+
};
|
|
9
15
|
|
|
10
16
|
modules = {};
|
|
11
17
|
|