@webitel/ui-sdk 3.1.32 → 3.1.33

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.32",
3
+ "version": "3.1.33",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve-lib": "vue-cli-service serve",
@@ -6,7 +6,7 @@ import debounce from '../../scripts/debounce';
6
6
 
7
7
  // https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/services/breakpoint/index.ts
8
8
 
9
- const breakpoint = {
9
+ const breakpoint = reactive({
10
10
  // Breakpoints
11
11
  xs: false,
12
12
  sm: false,
@@ -35,7 +35,7 @@ const breakpoint = {
35
35
  // Dimensions
36
36
  height: 0,
37
37
  width: 0,
38
- };
38
+ });
39
39
 
40
40
  const getClientWidth = () => Math.max(
41
41
  document.documentElement.clientWidth,
@@ -131,7 +131,7 @@ const install = (app) => {
131
131
  onResize();
132
132
 
133
133
  // eslint-disable-next-line no-param-reassign
134
- app.config.globalProperties.$breakpoint = reactive(breakpoint);
134
+ app.config.globalProperties.$breakpoint = breakpoint;
135
135
  };
136
136
 
137
137
  export { install };