@dolanske/vui 1.10.13 → 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/README.md CHANGED
@@ -1,11 +1,11 @@
1
- # VUI
2
-
3
- 1. `npm i @dolanske/vui`
4
- 2. In your main app entry,`import "@dolanske/vui/style` to import the global CSS
5
- 3. Build your thing bro
6
-
7
- ---
8
-
9
- ## Documentation
10
-
11
- [Right here](https://dolanske.github.io/vui/)
1
+ # VUI
2
+
3
+ 1. `npm i @dolanske/vui`
4
+ 2. In your main app entry,`import "@dolanske/vui/style` to import the global CSS
5
+ 3. Build your thing bro
6
+
7
+ ---
8
+
9
+ ## Documentation
10
+
11
+ [Right here](https://dolanske.github.io/vui/)
@@ -4,6 +4,7 @@ export interface Command {
4
4
  title: string;
5
5
  description?: string;
6
6
  group?: string;
7
+ keywords?: string[];
7
8
  icon?: VNode;
8
9
  shortcut?: string;
9
10
  href?: string;
@@ -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.