smarteye-e-components 0.0.2 → 0.0.4

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.
@@ -1,4 +1,4 @@
1
1
  export declare const components: {
2
- RecursionDeviceGroup: Promise<typeof import("./recursion-device-group/index.vue")>;
2
+ RecursionDeviceGroup: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
3
3
  };
4
4
  export declare type IComponents = typeof components;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smarteye-e-components",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "",
5
5
  "main": "./dist/smarteye-e-components.mjs",
6
6
  "scripts": {
@@ -28,10 +28,9 @@
28
28
  "typescript": "^4.8.3",
29
29
  "vite": "^3.1.3",
30
30
  "vite-plugin-dts": "^1.5.0",
31
- "vue": "^3.2.39"
31
+ "vue": "^3.0.0"
32
32
  },
33
33
  "peerDependencies": {
34
- "@vue/runtime-core": "^3.2.39",
35
- "vue": "^3.2.39"
34
+ "vue": "^3.0.0"
36
35
  }
37
36
  }
@@ -1,5 +0,0 @@
1
- declare module "*.vue" {
2
- import type { DefineComponent } from "vue";
3
- const component: DefineComponent<{}, {}, any>;
4
- export default component;
5
- }
@@ -1,4 +0,0 @@
1
- export declare const components: {
2
- RecursionDeviceGroup: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
3
- };
4
- export declare type IComponents = typeof components;
@@ -1,2 +0,0 @@
1
- declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2
- export default _sfc_main;
@@ -1,8 +0,0 @@
1
- import { Plugin } from "vue";
2
- import { IComponents } from "./components";
3
- declare module "@vue/runtime-core" {
4
- interface GlobalComponents extends IComponents {
5
- }
6
- }
7
- declare const _default: Plugin;
8
- export default _default;