smarteye-e-components 0.0.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/index.html ADDED
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" href="/favicon.ico" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>HHS</title>
8
+ </head>
9
+ <body>
10
+ <div id="app"></div>
11
+ <script type="module" src="/test/index.ts"></script>
12
+ </body>
13
+ </html>
@@ -0,0 +1,4 @@
1
+ export declare const components: {
2
+ RecursionDeviceGroup: Promise<typeof import("./recursion-device-group/index.vue")>;
3
+ };
4
+ export declare type IComponents = typeof components;
@@ -0,0 +1,2 @@
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;
package/lib/index.d.ts ADDED
@@ -0,0 +1,8 @@
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;
@@ -0,0 +1,5 @@
1
+ declare module "*.vue" {
2
+ import type { DefineComponent } from "vue";
3
+ const component: DefineComponent<{}, {}, any>;
4
+ export default component;
5
+ }
@@ -0,0 +1,4 @@
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;
@@ -0,0 +1,2 @@
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;
@@ -0,0 +1,8 @@
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;
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "smarteye-e-components",
3
+ "version": "0.0.1",
4
+ "description": "",
5
+ "main": "./dist/smarteye-e-components.mjs",
6
+ "scripts": {
7
+ "serve": "vite --open --host",
8
+ "build": "vite build"
9
+ },
10
+ "exports": {
11
+ ".": {
12
+ "import": "./dist/smarteye-e-components.mjs",
13
+ "require": "./dist/smarteye-e-components.mjs"
14
+ }
15
+ },
16
+ "types": "./lib/index.d.ts",
17
+ "keywords": [],
18
+ "author": "",
19
+ "license": "ISC",
20
+ "devDependencies": {
21
+ "@types/node": "^18.7.21",
22
+ "@vitejs/plugin-vue": "^3.1.0",
23
+ "@vue/runtime-core": "^3.2.39",
24
+ "typescript": "^4.8.3",
25
+ "vite": "^3.1.3",
26
+ "vite-plugin-dts": "^1.5.0",
27
+ "vue": "^3.2.39"
28
+ },
29
+ "peerDependencies": {
30
+ "@vue/runtime-core": "^3.2.39",
31
+ "vue": "^3.2.39"
32
+ }
33
+ }