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/dist/smarteye-e-components.mjs +1369 -0
- package/index.html +13 -0
- package/lib/components/index.d.ts +4 -0
- package/lib/components/recursion-device-group/index.vue.d.ts +2 -0
- package/lib/index.d.ts +8 -0
- package/lib/shims-vue.d.ts +5 -0
- package/lib/src/components/index.d.ts +4 -0
- package/lib/src/components/recursion-device-group/index.vue.d.ts +2 -0
- package/lib/src/index.d.ts +8 -0
- package/package.json +33 -0
- package/pnpm-lock.yaml +1020 -0
- package/shims-vue.d.ts +5 -0
- package/src/components/index.ts +6 -0
- package/src/components/recursion-device-group/index.vue +19 -0
- package/src/index.ts +18 -0
- package/test/index.ts +7 -0
- package/test/index.vue +14 -0
- package/tsconfig.json +86 -0
- package/vite.config.ts +33 -0
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,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,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;
|
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
|
+
}
|