@stonecrop/desktop 0.2.63 → 0.2.65

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/desktop.d.ts CHANGED
@@ -1,9 +1,10 @@
1
1
  import ActionSet from '@/components/ActionSet.vue';
2
+ import { App } from 'vue';
2
3
  import CommandPalette from '@/components/CommandPalette.vue';
3
4
  import Doctype from '@/components/Doctype.vue';
5
+ import { Plugin as Plugin_2 } from 'vue';
4
6
  import Records from '@/components/Records.vue';
5
7
  import SheetNav from '@/components/SheetNav.vue';
6
- import StonecropDesktop from '@/plugins';
7
8
 
8
9
  export { ActionSet }
9
10
 
@@ -15,6 +16,19 @@ export { Records }
15
16
 
16
17
  export { SheetNav }
17
18
 
18
- export { StonecropDesktop }
19
+ /**
20
+ * This is the main plugin file that will be used to register all the components
21
+ * that we want to use in our application.
22
+ * @public
23
+ */
24
+ export declare const StonecropDesktop: Plugin_2 = {
25
+ install: (app: App) => {
26
+ app.component('ActionSet', ActionSet)
27
+ app.component('CommandPalette', CommandPalette)
28
+ app.component('Doctype', Doctype)
29
+ app.component('Records', Records)
30
+ app.component('SheetNav', SheetNav)
31
+ },
32
+ };
19
33
 
20
34
  export { }