@newview/permission-service 1.2.14 → 1.2.15
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 +2 -2
- package/dist/permission-service.js +380 -26223
- package/dist/permission-service.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +4 -3
- package/vite.config.ts +6 -1
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.platform[data-v-f58b0adc]
|
|
1
|
+
.platform[data-v-f58b0adc],.module[data-v-5a5ef504],.import-module .import-module_card[data-v-5a5ef504]{height:100%}.import-module .import-module_card[data-v-5a5ef504] .ivu-card-body{height:calc(100% - 43px)}.role[data-v-0f25fe31],.import-role .import-role_card[data-v-0f25fe31]{height:100%}.import-role .import-role_card[data-v-0f25fe31] .ivu-card-body{height:calc(100% - 43px)}.institutiontype[data-v-947fe129],.institution[data-v-42799ba1],.loginLog[data-v-4e2e0184],.userinfor[data-v-3969fae6]{height:100%}.userinfor .instree-list[data-v-3969fae6]{position:relative;width:100%;height:calc(100% - 32px);margin-top:8px}.page[data-v-58aa3e77]{height:100%}.platform[data-v-a01b6a2e]{width:100%;height:100%}.platform[data-v-fbc0e7f2],.role[data-v-ffab91cb],.import-role .import-role_card[data-v-ffab91cb]{height:100%}.import-role .import-role_card[data-v-ffab91cb] .ivu-card-body{height:calc(100% - 43px)}.page[data-v-57711b94],.institution[data-v-ed65a91d],.loginLog[data-v-a0d5af5b],.userinfor[data-v-4827d4a9]{height:100%}.userinfor .instree-list[data-v-4827d4a9]{position:relative;width:100%;height:calc(100% - 32px);margin-top:8px}.module[data-v-23a8ab5f],.import-module .import-module_card[data-v-23a8ab5f]{height:100%}.import-module .import-module_card[data-v-23a8ab5f] .ivu-card-body{height:calc(100% - 43px)}.userinfor[data-v-86385f96]{height:100%}.userinfor .instree-list[data-v-86385f96]{position:relative;width:100%;height:calc(100% - 32px);margin-top:8px}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@newview/permission-service",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.15",
|
|
4
4
|
"author": "newview",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"package.json",
|
|
13
13
|
"tsconfig.json",
|
|
14
14
|
"tsconfig.node.json",
|
|
15
|
-
"vite.config.ts"
|
|
15
|
+
"vite.config.ts",
|
|
16
|
+
"README.md"
|
|
16
17
|
],
|
|
17
18
|
"exports": {
|
|
18
19
|
"./dist/style.css": "./dist/style.css",
|
|
@@ -26,7 +27,7 @@
|
|
|
26
27
|
"dev": "vite",
|
|
27
28
|
"build": "run-p type-check build-only",
|
|
28
29
|
"preview": "vite preview",
|
|
29
|
-
"build-only": "vite build
|
|
30
|
+
"build-only": "vite build",
|
|
30
31
|
"type-check": "vue-tsc --noEmit",
|
|
31
32
|
"p": "npm publish --access public"
|
|
32
33
|
},
|
package/vite.config.ts
CHANGED
|
@@ -15,10 +15,15 @@ export default defineConfig({
|
|
|
15
15
|
// 确保外部化处理那些你不想打包进库的依赖
|
|
16
16
|
external: [
|
|
17
17
|
"@newview/base-vue",
|
|
18
|
-
"@newview/
|
|
18
|
+
"@newview/basics-api",
|
|
19
|
+
"@newview/casign-api",
|
|
19
20
|
"@newview/infrastructure",
|
|
21
|
+
"@newview/permission-db-api",
|
|
22
|
+
"@newview/permission-ui",
|
|
20
23
|
"@newview/tools",
|
|
21
24
|
"@newview/ui",
|
|
25
|
+
"@newview/file-ui",
|
|
26
|
+
"@newview/permission-api",
|
|
22
27
|
"sass",
|
|
23
28
|
"view-ui-plus",
|
|
24
29
|
"vue",
|