general-basic-form 2.0.29 → 2.0.31
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 +1 -6
- package/package.json +61 -61
package/README.md
CHANGED
|
@@ -235,11 +235,8 @@ getList会传出默认的参数,首次请求时会有页数和分页大小,重
|
|
|
235
235
|
radioGroupSetting: {
|
|
236
236
|
disabled: true
|
|
237
237
|
},
|
|
238
|
-
radioSetting: {
|
|
239
|
-
border: true
|
|
240
|
-
},
|
|
241
238
|
option: [
|
|
242
|
-
{ value: '是', label: 'true' },
|
|
239
|
+
{ value: '是', label: 'true',border: true },
|
|
243
240
|
{ value: '否', label: 'false' }
|
|
244
241
|
],
|
|
245
242
|
rules: [
|
|
@@ -256,8 +253,6 @@ getList会传出默认的参数,首次请求时会有页数和分页大小,重
|
|
|
256
253
|
type: 'checkbox',
|
|
257
254
|
checkboxGroupSetting: {
|
|
258
255
|
},
|
|
259
|
-
checkboxSetting: {
|
|
260
|
-
},
|
|
261
256
|
option: [
|
|
262
257
|
{ value: '是', label: 'true' },
|
|
263
258
|
{ value: '否', label: 'false' }
|
package/package.json
CHANGED
|
@@ -1,61 +1,61 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "general-basic-form",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "",
|
|
5
|
-
"main": "./dist/index.umd.cjs",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"build": "cross-env CURRENT_ENV=prod run-p type-check build-only",
|
|
9
|
-
"test:e2e": "playwright test",
|
|
10
|
-
"build-only": "vite build",
|
|
11
|
-
"type-check": "tsc --noEmit -p tsconfig.json --composite false",
|
|
12
|
-
"link": "tsx script/link.ts && yarn link",
|
|
13
|
-
"unlink": "tsx script/unlink.ts && yarn unlink && run-p build",
|
|
14
|
-
"unlinkSetting": "tsx script/unlink.ts"
|
|
15
|
-
},
|
|
16
|
-
"keywords": [
|
|
17
|
-
"general-basic-form",
|
|
18
|
-
"form",
|
|
19
|
-
"vue",
|
|
20
|
-
"vue2",
|
|
21
|
-
"vue3",
|
|
22
|
-
"element-plus"
|
|
23
|
-
],
|
|
24
|
-
"author": "chendeli419287484@qq.com",
|
|
25
|
-
"license": "ISC",
|
|
26
|
-
"repository": {
|
|
27
|
-
"type": "git",
|
|
28
|
-
"url": "git+https://github.com/Alan1034/GeneralBasicForm.git"
|
|
29
|
-
},
|
|
30
|
-
"devDependencies": {
|
|
31
|
-
"@playwright/test": "^1.36.1",
|
|
32
|
-
"@types/node": "^20.8.10",
|
|
33
|
-
"@vitejs/plugin-legacy": "^4.1.1",
|
|
34
|
-
"@vitejs/plugin-vue": "^4.2.3",
|
|
35
|
-
"@vitejs/plugin-vue-jsx": "^3.0.1",
|
|
36
|
-
"chalk": "^2.4.2",
|
|
37
|
-
"cross-env": "^7.0.3",
|
|
38
|
-
"less": "^4.2.0",
|
|
39
|
-
"npm-run-all": "^4.1.5",
|
|
40
|
-
"tsx": "^4.0.0",
|
|
41
|
-
"typescript": "^5.2.2",
|
|
42
|
-
"vite-plugin-image-optimizer": "^1.1.6"
|
|
43
|
-
},
|
|
44
|
-
"peerDependencies": {
|
|
45
|
-
"element-plus": ">=2.4.2",
|
|
46
|
-
"vue": ">=3.3.4",
|
|
47
|
-
"vue-router": ">=4.2.4"
|
|
48
|
-
},
|
|
49
|
-
"typings": "./dist/index.d.ts",
|
|
50
|
-
"module": "./dist/index.js",
|
|
51
|
-
"exports": {
|
|
52
|
-
".": {
|
|
53
|
-
"import": "./dist/index.js",
|
|
54
|
-
"require": "./dist/index.umd.cjs"
|
|
55
|
-
},
|
|
56
|
-
"./style": "./dist/style.css"
|
|
57
|
-
},
|
|
58
|
-
"files": [
|
|
59
|
-
"/dist"
|
|
60
|
-
]
|
|
61
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "general-basic-form",
|
|
3
|
+
"version": "2.0.31",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "./dist/index.umd.cjs",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "cross-env CURRENT_ENV=prod run-p type-check build-only",
|
|
9
|
+
"test:e2e": "playwright test",
|
|
10
|
+
"build-only": "vite build",
|
|
11
|
+
"type-check": "tsc --noEmit -p tsconfig.json --composite false",
|
|
12
|
+
"link": "tsx script/link.ts && yarn link",
|
|
13
|
+
"unlink": "tsx script/unlink.ts && yarn unlink && run-p build",
|
|
14
|
+
"unlinkSetting": "tsx script/unlink.ts"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"general-basic-form",
|
|
18
|
+
"form",
|
|
19
|
+
"vue",
|
|
20
|
+
"vue2",
|
|
21
|
+
"vue3",
|
|
22
|
+
"element-plus"
|
|
23
|
+
],
|
|
24
|
+
"author": "chendeli419287484@qq.com",
|
|
25
|
+
"license": "ISC",
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "git+https://github.com/Alan1034/GeneralBasicForm.git"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@playwright/test": "^1.36.1",
|
|
32
|
+
"@types/node": "^20.8.10",
|
|
33
|
+
"@vitejs/plugin-legacy": "^4.1.1",
|
|
34
|
+
"@vitejs/plugin-vue": "^4.2.3",
|
|
35
|
+
"@vitejs/plugin-vue-jsx": "^3.0.1",
|
|
36
|
+
"chalk": "^2.4.2",
|
|
37
|
+
"cross-env": "^7.0.3",
|
|
38
|
+
"less": "^4.2.0",
|
|
39
|
+
"npm-run-all": "^4.1.5",
|
|
40
|
+
"tsx": "^4.0.0",
|
|
41
|
+
"typescript": "^5.2.2",
|
|
42
|
+
"vite-plugin-image-optimizer": "^1.1.6"
|
|
43
|
+
},
|
|
44
|
+
"peerDependencies": {
|
|
45
|
+
"element-plus": ">=2.4.2",
|
|
46
|
+
"vue": ">=3.3.4",
|
|
47
|
+
"vue-router": ">=4.2.4"
|
|
48
|
+
},
|
|
49
|
+
"typings": "./dist/index.d.ts",
|
|
50
|
+
"module": "./dist/index.js",
|
|
51
|
+
"exports": {
|
|
52
|
+
".": {
|
|
53
|
+
"import": "./dist/index.js",
|
|
54
|
+
"require": "./dist/index.umd.cjs"
|
|
55
|
+
},
|
|
56
|
+
"./style": "./dist/style.css"
|
|
57
|
+
},
|
|
58
|
+
"files": [
|
|
59
|
+
"/dist"
|
|
60
|
+
]
|
|
61
|
+
}
|