officialblock 1.1.4 → 1.1.7

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,7 +1,7 @@
1
1
  {
2
2
  "name": "officialblock",
3
3
  "private": false,
4
- "version": "1.1.4",
4
+ "version": "1.1.7",
5
5
  "description": "A Vue 3 article list component library",
6
6
  "author": "Your Name",
7
7
  "license": "MIT",
package/types/index.d.ts CHANGED
@@ -7,4 +7,15 @@ declare module 'vue' {
7
7
  }
8
8
  }
9
9
 
10
+ declare module '@vue/runtime-core' {
11
+ export interface ComponentCustomProperties {
12
+ $device: {
13
+ readonly isMobile: boolean
14
+ readonly isTablet: boolean
15
+ readonly isMobileOrTablet: boolean
16
+ readonly isDesktop: boolean
17
+ }
18
+ }
19
+ }
20
+
10
21
  export {}