@dolanske/vui 1.10.14 → 1.10.15
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/shared/breakpoints.d.ts +4 -1
- package/dist/vui.css +1 -1
- package/dist/vui.js +1799 -1786
- package/package.json +1 -1
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import { Ref } from 'vue';
|
|
2
2
|
export declare enum Breakpoints {
|
|
3
|
-
Mobile = "mobile"
|
|
3
|
+
Mobile = "mobile",
|
|
4
|
+
Tablet = "tablet"
|
|
4
5
|
}
|
|
5
6
|
export declare const vuiBreakpoints: Ref<{
|
|
6
7
|
mobile: number;
|
|
8
|
+
tablet: number;
|
|
7
9
|
}, Record<Breakpoints, number> | {
|
|
8
10
|
mobile: number;
|
|
11
|
+
tablet: number;
|
|
9
12
|
}>;
|
|
10
13
|
/**
|
|
11
14
|
* Returns a reactive boolean indicating if the current window width is less than or equal to the specified breakpoint.
|