@webitel/ui-sdk 3.1.32 → 3.1.34
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/dist/ui-sdk.common.js +17 -17
- package/dist/ui-sdk.common.js.map +1 -1
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.umd.js +14 -14
- package/dist/ui-sdk.umd.js.map +1 -1
- package/dist/ui-sdk.umd.min.js +1 -1
- package/dist/ui-sdk.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/wt-input/wt-input.vue +1 -1
- package/src/plugins/breakpoint/breakpoint.plugin.js +3 -3
package/package.json
CHANGED
|
@@ -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 =
|
|
134
|
+
app.config.globalProperties.$breakpoint = breakpoint;
|
|
135
135
|
};
|
|
136
136
|
|
|
137
137
|
export { install };
|