@creopse/vue 0.0.5 → 0.0.6

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": "@creopse/vue",
3
3
  "description": "Creopse Vue Toolkit",
4
- "version": "0.0.5",
4
+ "version": "0.0.6",
5
5
  "private": false,
6
6
  "author": "Noé Gnanih <noegnanih@gmail.com>",
7
7
  "license": "MIT",
package/types/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { Pinia } from 'pinia';
1
+ import { type Pinia } from 'pinia';
2
2
  import type { App } from 'vue';
3
3
  import AsyncImg from './components/widgets/AsyncImg.vue';
4
4
  import CustomTransition from './components/widgets/CustomTransition.vue';
@@ -13,6 +13,7 @@ declare const plugin: {
13
13
  pinia?: Pinia;
14
14
  }): void;
15
15
  };
16
+ export default plugin;
16
17
  export * from './constants';
17
18
  export * from './composables/api';
18
19
  export * from './composables/helper';
@@ -23,4 +24,3 @@ export * from './stores/auth';
23
24
  export * from './stores/news';
24
25
  export * from './stores/user-interface';
25
26
  export { CustomTransition, SvgComponent, AsyncImg, Image, AuthPage, Page, Container, NotFound, };
26
- export default plugin;