jmash-region 0.0.5 → 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 +51 -51
- package/dist/{edit-DTkFVHk1.mjs → edit-IubJMRl3.mjs} +1 -1
- package/dist/{edit.vue_vue_type_script_setup_true_lang-70FNJkv4.mjs → edit.vue_vue_type_script_setup_true_lang-BKmItrIK.mjs} +64 -64
- package/dist/{index-CxRWNkUU.mjs → index-B-qwEypO.mjs} +13 -13
- package/dist/{index-NeklU2VV.mjs → index-BbV7Gddl.mjs} +468 -467
- package/dist/{index-DQQestCN.mjs → index-jbUNUaS-.mjs} +3 -3
- package/dist/index.mjs +1 -1
- package/package.json +22 -23
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineComponent as i, ref as s, resolveComponent as n,
|
|
2
|
-
import { _ as f, a as p } from "./index-
|
|
1
|
+
import { defineComponent as i, ref as s, resolveComponent as n, openBlock as _, createElementBlock as c, createVNode as o, withCtx as l, createTextVNode as d, toDisplayString as m } from "vue";
|
|
2
|
+
import { _ as f, a as p } from "./index-BbV7Gddl.mjs";
|
|
3
3
|
const C = { class: "app-container" }, x = /* @__PURE__ */ i({
|
|
4
4
|
__name: "index",
|
|
5
5
|
setup(g) {
|
|
@@ -9,7 +9,7 @@ const C = { class: "app-container" }, x = /* @__PURE__ */ i({
|
|
|
9
9
|
});
|
|
10
10
|
return (v, a) => {
|
|
11
11
|
const r = n("el-form-item"), u = n("el-form");
|
|
12
|
-
return
|
|
12
|
+
return _(), c("div", C, [
|
|
13
13
|
o(u, {
|
|
14
14
|
ref: "queryFormRef",
|
|
15
15
|
model: e.value
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jmash-region",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"types": "dts/src/index.d.ts",
|
|
@@ -8,26 +8,16 @@
|
|
|
8
8
|
"dist",
|
|
9
9
|
"dts/src"
|
|
10
10
|
],
|
|
11
|
-
"scripts": {
|
|
12
|
-
"dev": "vite",
|
|
13
|
-
"build": "vite build && pnpm build:dts",
|
|
14
|
-
"build:dts": "vue-tsc --declaration --emitDeclarationOnly",
|
|
15
|
-
"preview": "vite preview",
|
|
16
|
-
"build-only": "vite build",
|
|
17
|
-
"type-check": "vue-tsc --build --force",
|
|
18
|
-
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
19
|
-
"format": "prettier --write src/"
|
|
20
|
-
},
|
|
21
11
|
"peerDependencies": {
|
|
22
|
-
"axios": "^1.
|
|
23
|
-
"element-plus": "^2.
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
12
|
+
"axios": "^1.9.0",
|
|
13
|
+
"element-plus": "^2.9.10",
|
|
14
|
+
"pinia": "^2.3.1",
|
|
15
|
+
"vue": "^3.5.13",
|
|
16
|
+
"vue-i18n": "^9.14.4",
|
|
17
|
+
"vue-router": "^4.5.1",
|
|
18
|
+
"jmash-core": "^0.1.0",
|
|
19
|
+
"jmash-dict": "^0.1.0",
|
|
20
|
+
"jmash-rbac": "^0.1.0"
|
|
31
21
|
},
|
|
32
22
|
"devDependencies": {
|
|
33
23
|
"@eslint/js": "^9.14.0",
|
|
@@ -51,9 +41,18 @@
|
|
|
51
41
|
"dependencies": {
|
|
52
42
|
"@vueuse/core": "^10.9.0",
|
|
53
43
|
"file-saver": "^2.0.5",
|
|
54
|
-
"jmash-region": "link:",
|
|
55
44
|
"nprogress": "^0.2.0",
|
|
56
45
|
"pinyin-pro": "^3.25.0",
|
|
57
|
-
"qs": "^6.
|
|
46
|
+
"qs": "^6.14.0"
|
|
47
|
+
},
|
|
48
|
+
"scripts": {
|
|
49
|
+
"dev": "vite",
|
|
50
|
+
"build": "vite build && pnpm build:dts",
|
|
51
|
+
"build:dts": "vue-tsc --declaration --emitDeclarationOnly",
|
|
52
|
+
"preview": "vite preview",
|
|
53
|
+
"build-only": "vite build",
|
|
54
|
+
"type-check": "vue-tsc --build --force",
|
|
55
|
+
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
56
|
+
"format": "prettier --write src/"
|
|
58
57
|
}
|
|
59
|
-
}
|
|
58
|
+
}
|