@stonecrop/desktop 0.2.67 → 0.3.1

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,10 +1,9 @@
1
- import ActionSet from '@/components/ActionSet.vue';
2
- import { App } from 'vue';
3
- import CommandPalette from '@/components/CommandPalette.vue';
4
- import Doctype from '@/components/Doctype.vue';
1
+ import ActionSet from './components/ActionSet.vue';
2
+ import CommandPalette from './components/CommandPalette.vue';
3
+ import Doctype from './components/Doctype.vue';
5
4
  import { Plugin as Plugin_2 } from 'vue';
6
- import Records from '@/components/Records.vue';
7
- import SheetNav from '@/components/SheetNav.vue';
5
+ import Records from './components/Records.vue';
6
+ import SheetNav from './components/SheetNav.vue';
8
7
 
9
8
  export { ActionSet }
10
9
 
@@ -21,14 +20,6 @@ export { SheetNav }
21
20
  * that we want to use in our application.
22
21
  * @public
23
22
  */
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
- };
23
+ export declare const StonecropDesktop: Plugin_2;
33
24
 
34
25
  export { }