@webitel/ui-sdk 24.6.11 → 24.6.12

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.11",
3
+ "version": "24.6.12",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -53,6 +53,7 @@
53
53
  "jszip-utils": "^0.1.0",
54
54
  "lodash": "^4.17.21",
55
55
  "mitt": "^3.0.1",
56
+ "path-browserify": "^1.0.1",
56
57
  "plyr": "3.6.3",
57
58
  "query-string": "^8.1.0",
58
59
  "sortablejs": "^1.15.0",
@@ -1,7 +1,7 @@
1
1
  import jszipUtils from 'jszip-utils';
2
2
  import { saveAs } from 'file-saver';
3
3
  import JSZip from 'jszip';
4
- import path from 'path';
4
+ import path from 'path-browserify';
5
5
  import generateMediaURL from './scripts/generateMediaURL';
6
6
 
7
7
  /* eslint-disable no-await-in-loop, no-restricted-syntax */
@@ -153,7 +153,7 @@ export default class FiltersStoreModule extends BaseStoreModule {
153
153
  mutations = {
154
154
  UPDATE_FILTER: (state, filter) => {
155
155
  state[filter.name] = filter;
156
- }
156
+ },
157
157
  };
158
158
 
159
159
  addFilter(filter) {