@bytenew/bn-applet-ui 1.1.10
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/common.scss +1358 -0
- package/dist/bn-applet-ui.common.js +18863 -0
- package/dist/bn-applet-ui.common.js.map +1 -0
- package/dist/bn-applet-ui.umd.js +18882 -0
- package/dist/bn-applet-ui.umd.js.map +1 -0
- package/dist/bn-applet-ui.umd.min.js +2 -0
- package/dist/bn-applet-ui.umd.min.js.map +1 -0
- package/dist/demo.html +1 -0
- package/dist/fonts/iconfont.66b5cd8a.ttf +0 -0
- package/dist/fonts/iconfont.c7ec1979.woff +0 -0
- package/package.json +38 -0
package/dist/demo.html
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!doctype html><meta charset="utf-8"><title>bn-applet-ui demo</title><script src="./bn-applet-ui.umd.js"></script><script>console.log(bn-applet-ui)</script>
|
|
Binary file
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bytenew/bn-applet-ui",
|
|
3
|
+
"version": "1.1.10",
|
|
4
|
+
"description": "班牛组件库 vue2 版本",
|
|
5
|
+
"private": false,
|
|
6
|
+
"main": "dist/bn-applet-ui.umd.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"common.scss"
|
|
10
|
+
],
|
|
11
|
+
"publishConfig": {
|
|
12
|
+
"access": "public"
|
|
13
|
+
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"appui_dev": "vue-cli-service serve --mode dev",
|
|
16
|
+
"serve": "vue-cli-service serve",
|
|
17
|
+
"appui_build": "vue-cli-service build --target lib --name bn-applet-ui --dest dist ./install.js"
|
|
18
|
+
},
|
|
19
|
+
"author": "辛巴",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"peerDependencies": {
|
|
22
|
+
"element-ui": "^2.14.0",
|
|
23
|
+
"vue": "^2.6.11"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@babel/core": "^7.12.16",
|
|
27
|
+
"@babel/preset-env": "^7.19.4",
|
|
28
|
+
"@vue/cli-plugin-babel": "~5.0.0",
|
|
29
|
+
"@vue/cli-service": "~5.0.0",
|
|
30
|
+
"babel-plugin-component": "^1.1.1",
|
|
31
|
+
"core-js": "^3.6.5",
|
|
32
|
+
"sass": "^1.56.1",
|
|
33
|
+
"sass-loader": "^12.6.0",
|
|
34
|
+
"lodash": "^4.18.1",
|
|
35
|
+
"vue-codemirror": "^4.0.6",
|
|
36
|
+
"vue-template-compiler": "^2.6.14"
|
|
37
|
+
}
|
|
38
|
+
}
|