@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,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "24.6.52",
3
+ "version": "24.6.53",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -230,9 +230,6 @@ export default class TableStoreModule extends BaseStoreModule {
230
230
  };
231
231
 
232
232
  mutations = {
233
- SET: (state, { path, value }) => {
234
- return set(state, path, value);
235
- },
236
233
  };
237
234
 
238
235
  constructor({ headers = [] }) {
@@ -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