zf-dbs 0.1.0
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/README.md +18 -0
- package/dist/chunks/B52ac7eU.mjs +449 -0
- package/dist/chunks/CHgC5LLL.mjs +9 -0
- package/dist/chunks/CRrp0zFe.mjs +9 -0
- package/dist/chunks/CaRNyYcg.mjs +152 -0
- package/dist/chunks/zkyql-F5.mjs +99 -0
- package/dist/components/zf-app.d.ts +1 -0
- package/dist/components/zf-app.mjs +5 -0
- package/dist/components/zf-scale-container.d.ts +1 -0
- package/dist/components/zf-scale-container.mjs +5 -0
- package/dist/components/zf-tween-number.d.ts +1 -0
- package/dist/components/zf-tween-number.mjs +5 -0
- package/dist/index.d.ts +416 -0
- package/dist/index.mjs +3020 -0
- package/dist/style.css +1 -0
- package/dist/zf-app.d.ts +1 -0
- package/dist/zf-scale-container.d.ts +1 -0
- package/dist/zf-tween-number.d.ts +1 -0
- package/package.json +78 -0
package/dist/style.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@charset "UTF-8";.zf-scale-container[data-v-db947fd0]{position:relative;z-index:1;display:block;width:100%;height:100%;overflow:hidden}.zf-scale-wrapper[data-v-db947fd0]{position:relative;width:100%;height:100%;z-index:1}html,body{display:block;width:100%;height:100vh;min-height:100vh;margin:0;padding:0;color:#fff;font-size:14px;font-family:PingFang SC,Microsoft YaHei,Arial,sans-serif;background-color:#323a41}::-webkit-scrollbar{width:0;height:0}::-webkit-scrollbar-thumb{background:#0000001a}::-webkit-scrollbar-track{background:#0000000d}img{user-select:none!important;pointer-events:none;image-rendering:optimize-contrast}.app[data-v-29b93127]{width:100%;height:100vh}.app__view[data-v-29b93127]{width:100%;height:100%;box-shadow:0 0 30px #000c}
|
package/dist/zf-app.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { }
|
package/package.json
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "zf-dbs",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"description": "",
|
|
5
|
+
"version": "0.1.0",
|
|
6
|
+
"main": "./dist/index.mjs",
|
|
7
|
+
"module": "./dist/index.mjs",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"license": "ISC",
|
|
10
|
+
"author": "zfowed <zfowed@qq.com>",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"zf-dbs",
|
|
13
|
+
"vite"
|
|
14
|
+
],
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"import": "./dist/index.mjs",
|
|
21
|
+
"types": "./dist/index.d.ts"
|
|
22
|
+
},
|
|
23
|
+
"./*": [
|
|
24
|
+
"./*",
|
|
25
|
+
"./*.d.ts"
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
"typesVersions": {
|
|
29
|
+
"*": {
|
|
30
|
+
"*": [
|
|
31
|
+
"./dist/*",
|
|
32
|
+
"./*"
|
|
33
|
+
]
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@tweenjs/tween.js": "^18.6.4",
|
|
38
|
+
"axios": "^1.6.8",
|
|
39
|
+
"element-plus": "^2.6.2",
|
|
40
|
+
"qs": "^6.12.0",
|
|
41
|
+
"vue": "^3.4.21",
|
|
42
|
+
"vue-router": "^4.3.0"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@types/node": "^20.11.30",
|
|
46
|
+
"@types/qs": "^6.9.14",
|
|
47
|
+
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
48
|
+
"@typescript-eslint/parser": "^6.21.0",
|
|
49
|
+
"@vitejs/plugin-vue": "^4.6.2",
|
|
50
|
+
"eslint": "^8.57.0",
|
|
51
|
+
"eslint-config-standard": "^17.1.0",
|
|
52
|
+
"eslint-plugin-vue": "^9.23.0",
|
|
53
|
+
"glob": "^10.3.10",
|
|
54
|
+
"sass": "^1.72.0",
|
|
55
|
+
"typescript": "^5.4.3",
|
|
56
|
+
"unplugin-auto-import": "^0.16.7",
|
|
57
|
+
"vite": "^5.2.4",
|
|
58
|
+
"vite-plugin-dts": "^3.7.3",
|
|
59
|
+
"vite-plugin-lib-inject-css": "^1.3.0",
|
|
60
|
+
"vue-tsc": "^1.8.27"
|
|
61
|
+
},
|
|
62
|
+
"peerDependencies": {
|
|
63
|
+
"vue": "^3.3.8",
|
|
64
|
+
"vue-router": "^4.2.5"
|
|
65
|
+
},
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": ">=18"
|
|
68
|
+
},
|
|
69
|
+
"private": false,
|
|
70
|
+
"publishConfig": {
|
|
71
|
+
"access": "public"
|
|
72
|
+
},
|
|
73
|
+
"sideEffects": false,
|
|
74
|
+
"scripts": {
|
|
75
|
+
"dev": "vite",
|
|
76
|
+
"build": "vue-tsc && vite build"
|
|
77
|
+
}
|
|
78
|
+
}
|