@veniceswap/uikit 0.61.0 → 0.64.0

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.
@@ -11,6 +11,11 @@ export declare const shadows: {
11
11
  inset: string;
12
12
  tooltip: string;
13
13
  };
14
+ export declare const devicesQueries: {
15
+ mobile: string;
16
+ tablet: string;
17
+ desktop: string;
18
+ };
14
19
  declare const _default: {
15
20
  siteWidth: number;
16
21
  breakpoints: Breakpoints;
@@ -35,5 +40,10 @@ declare const _default: {
35
40
  dropdown: number;
36
41
  modal: number;
37
42
  };
43
+ devicesQueries: {
44
+ mobile: string;
45
+ tablet: string;
46
+ desktop: string;
47
+ };
38
48
  };
39
49
  export default _default;
@@ -6,7 +6,7 @@ import { ToggleTheme } from "../components/Toggle/theme";
6
6
  import { TooltipTheme } from "../components/Tooltip/types";
7
7
  import { NavThemeType } from "../widgets/Menu/theme";
8
8
  import { ModalTheme } from "../widgets/Modal/types";
9
- import { Breakpoints, Colors, MediaQueries, Radii, Shadows, Spacing, ZIndices } from "./types";
9
+ import { Breakpoints, Colors, MediaQueries, Radii, Shadows, Spacing, ZIndices, DevicesQueries } from "./types";
10
10
  export interface PancakeTheme {
11
11
  siteWidth: number;
12
12
  isDark: boolean;
@@ -25,6 +25,7 @@ export interface PancakeTheme {
25
25
  shadows: Shadows;
26
26
  radii: Radii;
27
27
  zIndices: ZIndices;
28
+ devicesQueries: DevicesQueries;
28
29
  }
29
30
  export { darkColors, lightColors } from "./colors";
30
31
  export { default as dark } from "./dark";
@@ -68,3 +68,8 @@ export declare type ZIndices = {
68
68
  dropdown: number;
69
69
  modal: number;
70
70
  };
71
+ export declare type DevicesQueries = {
72
+ mobile: string;
73
+ tablet: string;
74
+ desktop: string;
75
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veniceswap/uikit",
3
- "version": "0.61.0",
3
+ "version": "0.64.0",
4
4
  "description": "Set of UI components for pancake projects",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -53,5 +53,5 @@
53
53
  "publishConfig": {
54
54
  "access": "public"
55
55
  },
56
- "gitHead": "8fa7e7beee85196a7c8037dcd8e1a2e6221abfbb"
56
+ "gitHead": "a0fff748ebd9d5527c08bc771c7bb9f7ecdfb6c0"
57
57
  }