@vortex-ui/env-puzzle 2.0.0-beta.8 → 2.0.0-beta.9
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 +46 -46
- package/lib/b-map/js/marker-clusterer.js +181 -181
- package/lib/b-map/js/marker-clusterer.js.map +1 -1
- package/lib/b-map/style/index.less +10 -10
- package/lib/create-modal/create-modal.js +1 -1
- package/lib/create-modal/create-modal.js.map +1 -1
- package/lib/create-modal/style/index.less +119 -122
- package/lib/global.less +6 -11
- package/lib/import-modal/style/index.less +15 -15
- package/lib/percent/style/index.less +41 -41
- package/lib/scroll/style/index.less +3 -3
- package/lib/scroll-select/style/index.less +7 -7
- package/lib/style/color.less +1 -1
- package/lib/style/darkGreen.css +88 -0
- package/lib/style/darkGreen.less +482 -370
- package/lib/template/action.js.map +1 -1
- package/lib/template/filter.d.ts +1 -0
- package/lib/template/filter.js +10 -7
- package/lib/template/filter.js.map +1 -1
- package/lib/template/renderColumnButtons.js +2 -2
- package/lib/template/renderColumnButtons.js.map +1 -1
- package/lib/template/style/action.less +71 -71
- package/lib/template/style/card.less +88 -88
- package/lib/template/style/check-row.less +27 -27
- package/lib/template/style/field.less +11 -11
- package/lib/template/style/filter.css +29 -0
- package/lib/template/style/filter.less +72 -46
- package/lib/template/style/icon.less +7 -7
- package/lib/template/style/index.css +31 -2
- package/lib/template/style/index.less +49 -49
- package/lib/template/style/table.css +2 -2
- package/lib/template/style/table.less +91 -84
- package/lib/template/table.js +6 -2
- package/lib/template/table.js.map +1 -1
- package/lib/template/template.d.ts +1 -1
- package/lib/template/template.js +73 -27
- package/lib/template/template.js.map +1 -1
- package/lib/template/vtx-search/index.d.ts +2 -0
- package/lib/template/vtx-search/index.js +126 -0
- package/lib/template/vtx-search/index.js.map +1 -0
- package/lib/template/vtx-search/style/index.css +92 -0
- package/lib/template/vtx-search/style/index.less +92 -0
- package/lib/to-map/style/index.less +86 -86
- package/lib/view-modal/style/index.less +57 -57
- package/package.json +143 -143
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
@import (reference) '~antd/lib/style/themes/index.less';
|
|
2
|
+
|
|
3
|
+
@prefix-cls: vtx-search;
|
|
4
|
+
@toggleSpeed: 0.3s; // 展开速度
|
|
5
|
+
@buttons-width: 200px;
|
|
6
|
+
|
|
7
|
+
.@{prefix-cls} {
|
|
8
|
+
position: relative;
|
|
9
|
+
z-index: 9;
|
|
10
|
+
padding-top: 8px;
|
|
11
|
+
padding-right: 24px;
|
|
12
|
+
padding-bottom: 8px;
|
|
13
|
+
padding-left: 24px;
|
|
14
|
+
overflow: hidden;
|
|
15
|
+
background: @component-background;
|
|
16
|
+
transition-duration: @toggleSpeed;
|
|
17
|
+
transition-property: height;
|
|
18
|
+
&-label_h {
|
|
19
|
+
display: inline-block;
|
|
20
|
+
overflow: hidden;
|
|
21
|
+
line-height: 48px;
|
|
22
|
+
white-space: nowrap;
|
|
23
|
+
text-overflow: ellipsis;
|
|
24
|
+
vertical-align: top;
|
|
25
|
+
}
|
|
26
|
+
&-lists_h {
|
|
27
|
+
position: relative;
|
|
28
|
+
display: inline-block;
|
|
29
|
+
box-sizing: border-box;
|
|
30
|
+
height: 48px;
|
|
31
|
+
padding-top: 8px;
|
|
32
|
+
padding-bottom: 8px;
|
|
33
|
+
padding-left: 12px;
|
|
34
|
+
line-height: @line-height-base;
|
|
35
|
+
vertical-align: top;
|
|
36
|
+
}
|
|
37
|
+
.vtx-search-item__v {
|
|
38
|
+
flex-direction: column;
|
|
39
|
+
padding: 8px 0;
|
|
40
|
+
}
|
|
41
|
+
&-label_v {
|
|
42
|
+
overflow: hidden;
|
|
43
|
+
line-height: 21px;
|
|
44
|
+
white-space: nowrap;
|
|
45
|
+
text-overflow: ellipsis;
|
|
46
|
+
vertical-align: top;
|
|
47
|
+
}
|
|
48
|
+
&-lists_v {
|
|
49
|
+
position: relative;
|
|
50
|
+
box-sizing: border-box;
|
|
51
|
+
height: 42px;
|
|
52
|
+
padding-top: 8px;
|
|
53
|
+
padding-bottom: 8px;
|
|
54
|
+
line-height: 32px;
|
|
55
|
+
vertical-align: top;
|
|
56
|
+
}
|
|
57
|
+
&-list {
|
|
58
|
+
width: 100%;
|
|
59
|
+
}
|
|
60
|
+
&-element {
|
|
61
|
+
display: inline-block;
|
|
62
|
+
/* stylelint-disable */
|
|
63
|
+
width: calc(100% - @buttons-width - 24px);
|
|
64
|
+
margin-right: 24px;
|
|
65
|
+
}
|
|
66
|
+
&-buttons {
|
|
67
|
+
display: inline-block;
|
|
68
|
+
box-sizing: border-box;
|
|
69
|
+
width: @buttons-width;
|
|
70
|
+
height: 100%;
|
|
71
|
+
vertical-align: top;
|
|
72
|
+
|
|
73
|
+
&-default {
|
|
74
|
+
.ant-btn-default {
|
|
75
|
+
color: rgba(0, 0, 0, 0.65);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
.ant-row {
|
|
79
|
+
justify-content: end !important;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
.vtx-search-more {
|
|
83
|
+
height: 32px;
|
|
84
|
+
color: @primary-color;
|
|
85
|
+
line-height: 32px;
|
|
86
|
+
cursor: pointer;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.vtx-row {
|
|
91
|
+
overflow: hidden;
|
|
92
|
+
}
|
|
@@ -1,86 +1,86 @@
|
|
|
1
|
-
.env-to-map-modal {
|
|
2
|
-
.ant-modal-body {
|
|
3
|
-
padding: 0;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
&-header {
|
|
7
|
-
padding: 10px 15px;
|
|
8
|
-
|
|
9
|
-
&-btns {
|
|
10
|
-
.ant-btn + .ant-btn {
|
|
11
|
-
margin-left: 10px;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
&-map-container {
|
|
17
|
-
overflow: hidden;
|
|
18
|
-
position: relative;
|
|
19
|
-
border-top: 1px solid #e1e1e1;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
&-btn-open {
|
|
23
|
-
color: #1890ff;
|
|
24
|
-
text-align: center;
|
|
25
|
-
width: 36px;
|
|
26
|
-
height: 100%;
|
|
27
|
-
z-index: 2;
|
|
28
|
-
background: #fff;
|
|
29
|
-
position: absolute;
|
|
30
|
-
border-right: 1px solid #e1e1e1;
|
|
31
|
-
|
|
32
|
-
&-inner {
|
|
33
|
-
display: flex;
|
|
34
|
-
justify-content: center;
|
|
35
|
-
height: 55px;
|
|
36
|
-
align-items: center;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.env-to-map-drawer {
|
|
42
|
-
&-header {
|
|
43
|
-
display: flex;
|
|
44
|
-
justify-content: space-between;
|
|
45
|
-
align-items: center;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
&-back {
|
|
49
|
-
color: #1890ff;
|
|
50
|
-
cursor: pointer;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
&-empty {
|
|
54
|
-
margin-top: 40px;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
&-area-tip {
|
|
58
|
-
width: 120px;
|
|
59
|
-
line-height: 25px;
|
|
60
|
-
text-align: center;
|
|
61
|
-
position: relative;
|
|
62
|
-
background-color: #222020;
|
|
63
|
-
opacity: 0.6;
|
|
64
|
-
border-radius: 5px;
|
|
65
|
-
color: #fff;
|
|
66
|
-
padding: 2px 8px;
|
|
67
|
-
text-overflow: ellipsis;
|
|
68
|
-
white-space: nowrap;
|
|
69
|
-
word-break: normal;
|
|
70
|
-
overflow: hidden;
|
|
71
|
-
left: -50%;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.ant-drawer-body {
|
|
75
|
-
padding: 0;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.ant-list-item {
|
|
79
|
-
cursor: pointer;
|
|
80
|
-
|
|
81
|
-
&.is-active {
|
|
82
|
-
background-color: #ecf6fd;
|
|
83
|
-
color: #108ee9;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
}
|
|
1
|
+
.env-to-map-modal {
|
|
2
|
+
.ant-modal-body {
|
|
3
|
+
padding: 0;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
&-header {
|
|
7
|
+
padding: 10px 15px;
|
|
8
|
+
|
|
9
|
+
&-btns {
|
|
10
|
+
.ant-btn + .ant-btn {
|
|
11
|
+
margin-left: 10px;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&-map-container {
|
|
17
|
+
overflow: hidden;
|
|
18
|
+
position: relative;
|
|
19
|
+
border-top: 1px solid #e1e1e1;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&-btn-open {
|
|
23
|
+
color: #1890ff;
|
|
24
|
+
text-align: center;
|
|
25
|
+
width: 36px;
|
|
26
|
+
height: 100%;
|
|
27
|
+
z-index: 2;
|
|
28
|
+
background: #fff;
|
|
29
|
+
position: absolute;
|
|
30
|
+
border-right: 1px solid #e1e1e1;
|
|
31
|
+
|
|
32
|
+
&-inner {
|
|
33
|
+
display: flex;
|
|
34
|
+
justify-content: center;
|
|
35
|
+
height: 55px;
|
|
36
|
+
align-items: center;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.env-to-map-drawer {
|
|
42
|
+
&-header {
|
|
43
|
+
display: flex;
|
|
44
|
+
justify-content: space-between;
|
|
45
|
+
align-items: center;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&-back {
|
|
49
|
+
color: #1890ff;
|
|
50
|
+
cursor: pointer;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
&-empty {
|
|
54
|
+
margin-top: 40px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
&-area-tip {
|
|
58
|
+
width: 120px;
|
|
59
|
+
line-height: 25px;
|
|
60
|
+
text-align: center;
|
|
61
|
+
position: relative;
|
|
62
|
+
background-color: #222020;
|
|
63
|
+
opacity: 0.6;
|
|
64
|
+
border-radius: 5px;
|
|
65
|
+
color: #fff;
|
|
66
|
+
padding: 2px 8px;
|
|
67
|
+
text-overflow: ellipsis;
|
|
68
|
+
white-space: nowrap;
|
|
69
|
+
word-break: normal;
|
|
70
|
+
overflow: hidden;
|
|
71
|
+
left: -50%;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.ant-drawer-body {
|
|
75
|
+
padding: 0;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.ant-list-item {
|
|
79
|
+
cursor: pointer;
|
|
80
|
+
|
|
81
|
+
&.is-active {
|
|
82
|
+
background-color: #ecf6fd;
|
|
83
|
+
color: #108ee9;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
@import (reference) '~antd/lib/style/themes/index.less';
|
|
2
|
-
|
|
3
|
-
.green {
|
|
4
|
-
.ant-modal-body {
|
|
5
|
-
padding: 0;
|
|
6
|
-
.ant-form-item-control-input{
|
|
7
|
-
display: flex;
|
|
8
|
-
align-items: center;
|
|
9
|
-
.ant-form-item-control-input-content{
|
|
10
|
-
display: flex;
|
|
11
|
-
align-items: center;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.env-view-modal {
|
|
18
|
-
.green();
|
|
19
|
-
&-title {
|
|
20
|
-
font-weight: 400;
|
|
21
|
-
color: @comment-action-hover-color;
|
|
22
|
-
margin-bottom: 20px;
|
|
23
|
-
padding-bottom: 14px;
|
|
24
|
-
border-bottom: 1px solid @border-color-base;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
& &-col {
|
|
28
|
-
display: flex;
|
|
29
|
-
margin-bottom: 20px;
|
|
30
|
-
.ant-divider-horizontal {
|
|
31
|
-
margin: 0;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
&-col-label {
|
|
35
|
-
color: @text-color;
|
|
36
|
-
padding-left: 24px;
|
|
37
|
-
}
|
|
38
|
-
&-col-label.ant-col {
|
|
39
|
-
display: flex;
|
|
40
|
-
justify-content: flex-end;
|
|
41
|
-
align-items: flex-start;
|
|
42
|
-
> span {
|
|
43
|
-
overflow: hidden;
|
|
44
|
-
text-align: right;
|
|
45
|
-
text-overflow: ellipsis;
|
|
46
|
-
white-space: nowrap;
|
|
47
|
-
}
|
|
48
|
-
&::after {
|
|
49
|
-
content: ':';
|
|
50
|
-
margin: 0 8px 0 2px;
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
&-col-value {
|
|
55
|
-
width: 100%;
|
|
56
|
-
}
|
|
57
|
-
}
|
|
1
|
+
@import (reference) '~antd/lib/style/themes/index.less';
|
|
2
|
+
|
|
3
|
+
.green {
|
|
4
|
+
.ant-modal-body {
|
|
5
|
+
padding: 0;
|
|
6
|
+
.ant-form-item-control-input {
|
|
7
|
+
display: flex;
|
|
8
|
+
align-items: center;
|
|
9
|
+
.ant-form-item-control-input-content {
|
|
10
|
+
display: flex;
|
|
11
|
+
align-items: center;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.env-view-modal {
|
|
18
|
+
.green();
|
|
19
|
+
&-title {
|
|
20
|
+
font-weight: 400;
|
|
21
|
+
color: @comment-action-hover-color;
|
|
22
|
+
margin-bottom: 20px;
|
|
23
|
+
padding-bottom: 14px;
|
|
24
|
+
border-bottom: 1px solid @border-color-base;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
& &-col {
|
|
28
|
+
display: flex;
|
|
29
|
+
margin-bottom: 20px;
|
|
30
|
+
.ant-divider-horizontal {
|
|
31
|
+
margin: 0;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
&-col-label {
|
|
35
|
+
color: @text-color;
|
|
36
|
+
padding-left: 24px;
|
|
37
|
+
}
|
|
38
|
+
&-col-label.ant-col {
|
|
39
|
+
display: flex;
|
|
40
|
+
justify-content: flex-end;
|
|
41
|
+
align-items: flex-start;
|
|
42
|
+
> span {
|
|
43
|
+
overflow: hidden;
|
|
44
|
+
text-align: right;
|
|
45
|
+
text-overflow: ellipsis;
|
|
46
|
+
white-space: nowrap;
|
|
47
|
+
}
|
|
48
|
+
&::after {
|
|
49
|
+
content: ':';
|
|
50
|
+
margin: 0 8px 0 2px;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
&-col-value {
|
|
55
|
+
width: 100%;
|
|
56
|
+
}
|
|
57
|
+
}
|
package/package.json
CHANGED
|
@@ -1,143 +1,143 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@vortex-ui/env-puzzle",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
4
|
-
"main": "lib/index.js",
|
|
5
|
-
"description": "Envcloud frontend accumulation",
|
|
6
|
-
"author": {
|
|
7
|
-
"name": "FireBushtree"
|
|
8
|
-
},
|
|
9
|
-
"scripts": {
|
|
10
|
-
"start": "dumi dev",
|
|
11
|
-
"docs:build": "dumi build",
|
|
12
|
-
"commit": "git-cz",
|
|
13
|
-
"build1": "node script/build.js && gulp less copyJs",
|
|
14
|
-
"build": "gulp compile",
|
|
15
|
-
"prettier": "prettier -c --write **/*",
|
|
16
|
-
"pretty-quick": "pretty-quick",
|
|
17
|
-
"lint": "npm run pretty-quick && eslint --ext .js,.jsx,.ts,.tsx src --fix",
|
|
18
|
-
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx src",
|
|
19
|
-
"test": "jest",
|
|
20
|
-
"test:watch": "jest --watch",
|
|
21
|
-
"test:coverage": "jest --coverage",
|
|
22
|
-
"test:update": "jest --updateSnapshot"
|
|
23
|
-
},
|
|
24
|
-
"husky": {
|
|
25
|
-
"hooks": {
|
|
26
|
-
"pre-commit": "npm run lint",
|
|
27
|
-
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
|
-
"repository": "ssh://git@222.92.25.98:8001/common-menu/vortex-ui/ljfl-cg.git",
|
|
31
|
-
"config": {
|
|
32
|
-
"commitizen": {
|
|
33
|
-
"path": "node_modules/cz-conventional-changelog"
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
"peerDependencies": {
|
|
37
|
-
"@ant-design/icons": ">=4.5.0",
|
|
38
|
-
"@vtx/components": "^3.0.2",
|
|
39
|
-
"ahooks": ">=2.9.6",
|
|
40
|
-
"axios": ">=0.21.1",
|
|
41
|
-
"react": ">=16.9.0",
|
|
42
|
-
"react-dom": ">=16.9.0"
|
|
43
|
-
},
|
|
44
|
-
"files": [
|
|
45
|
-
"lib",
|
|
46
|
-
"es"
|
|
47
|
-
],
|
|
48
|
-
"keywords": [
|
|
49
|
-
"design",
|
|
50
|
-
"env-cloud",
|
|
51
|
-
"frontend",
|
|
52
|
-
"react-components"
|
|
53
|
-
],
|
|
54
|
-
"license": "MIT",
|
|
55
|
-
"devDependencies": {
|
|
56
|
-
"@babel/cli": "^7.6.4",
|
|
57
|
-
"@babel/core": "^7.6.4",
|
|
58
|
-
"@babel/plugin-proposal-class-properties": "^7.5.5",
|
|
59
|
-
"@babel/plugin-transform-runtime": "^7.6.2",
|
|
60
|
-
"@babel/preset-env": "^7.6.3",
|
|
61
|
-
"@babel/preset-react": "^7.6.3",
|
|
62
|
-
"@babel/preset-typescript": "^7.17.12",
|
|
63
|
-
"@babel/runtime": "^7.6.3",
|
|
64
|
-
"@commitlint/cli": "^11.0.0",
|
|
65
|
-
"@commitlint/config-conventional": "^11.0.0",
|
|
66
|
-
"@testing-library/dom": "^7.28.1",
|
|
67
|
-
"@testing-library/jest-dom": "^5.11.6",
|
|
68
|
-
"@testing-library/react": "^11.2.2",
|
|
69
|
-
"@testing-library/user-event": "^12.6.0",
|
|
70
|
-
"@types/classnames": "^2.2.11",
|
|
71
|
-
"@types/jest": "^26.0.19",
|
|
72
|
-
"@types/react": "^16.9.49",
|
|
73
|
-
"@types/testing-library__react": "^10.2.0",
|
|
74
|
-
"@typescript-eslint/eslint-plugin": "^4.6.1",
|
|
75
|
-
"@typescript-eslint/parser": "^4.2.0",
|
|
76
|
-
"@umijs/plugin-antd": "^0.15.0",
|
|
77
|
-
"@umijs/plugin-locale": "^0.16.0",
|
|
78
|
-
"@vortex-ui/biz": "^0.0.79",
|
|
79
|
-
"@vtx/components": "3.1.34",
|
|
80
|
-
"babel-plugin-import": "^1.13.0",
|
|
81
|
-
"babel-plugin-module-resolver": "^4.0.0",
|
|
82
|
-
"classnames": "^2.2.6",
|
|
83
|
-
"codecov": "^3.8.1",
|
|
84
|
-
"commitizen": "^4.2.1",
|
|
85
|
-
"cz-conventional-changelog": "^3.3.0",
|
|
86
|
-
"dumi": "^1.1.4",
|
|
87
|
-
"eslint": "^7.9.0",
|
|
88
|
-
"eslint-config-google": "^0.14.0",
|
|
89
|
-
"eslint-import-resolver-typescript": "^2.3.0",
|
|
90
|
-
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
91
|
-
"eslint-plugin-import": "^2.22.0",
|
|
92
|
-
"eslint-plugin-jest": "^24.1.0",
|
|
93
|
-
"eslint-plugin-jsx-a11y": "^6.4.1",
|
|
94
|
-
"eslint-plugin-react": "^7.21.5",
|
|
95
|
-
"eslint-plugin-react-hooks": "^4.2.0",
|
|
96
|
-
"eslint-plugin-unicorn": "^23.0.0",
|
|
97
|
-
"execa": "^4.0.3",
|
|
98
|
-
"father-build": "1.18.4",
|
|
99
|
-
"gulp": "4.0.2",
|
|
100
|
-
"gulp-babel": "^8.0.0",
|
|
101
|
-
"gulp-bump": "^3.2.0",
|
|
102
|
-
"gulp-clean": "^0.4.0",
|
|
103
|
-
"gulp-less": "^4.0.1",
|
|
104
|
-
"gulp-sourcemaps": "^3.0.0",
|
|
105
|
-
"gulp-typescript": "^6.0.0-alpha.1",
|
|
106
|
-
"husky": "^4.3.7",
|
|
107
|
-
"jest": "^26.6.3",
|
|
108
|
-
"jest-transform-stub": "^2.0.0",
|
|
109
|
-
"jquery": "^3.6.0",
|
|
110
|
-
"less-plugin-autoprefix": "^2.0.0",
|
|
111
|
-
"lint-staged": "^10.4.0",
|
|
112
|
-
"prettier": "2.1.2",
|
|
113
|
-
"pretty-quick": "^3.1.3",
|
|
114
|
-
"react": "^16.13.1",
|
|
115
|
-
"react-dom": "^16.13.1",
|
|
116
|
-
"react-jss": "^10.5.0",
|
|
117
|
-
"through2": "^4.0.2",
|
|
118
|
-
"ts-jest": "^26.4.4",
|
|
119
|
-
"ttypescript": "^1.5.12",
|
|
120
|
-
"typescript": "^4.0.2",
|
|
121
|
-
"typescript-transform-paths": "^2.0.1",
|
|
122
|
-
"vtx-snd-api": "latest",
|
|
123
|
-
"webpack": "^5.27.0"
|
|
124
|
-
},
|
|
125
|
-
"dependencies": {
|
|
126
|
-
"@ant-design/icons": ">=4.5.0",
|
|
127
|
-
"@hanyk/rc-viewer": "0.0.3",
|
|
128
|
-
"@vortex-ui/mapv": "^0.0.1",
|
|
129
|
-
"@vtx/map": "^1.0.7",
|
|
130
|
-
"@vtx/utils": "^1.0.7",
|
|
131
|
-
"ahooks": ">=2.9.6",
|
|
132
|
-
"axios": ">=0.21.1",
|
|
133
|
-
"braft-editor": "^2.3.9",
|
|
134
|
-
"lodash.clonedeep": "^4.5.0",
|
|
135
|
-
"lodash.difference": "^4.5.0",
|
|
136
|
-
"lodash.isequal": "^4.5.0",
|
|
137
|
-
"rc-color-picker": "^1.2.6",
|
|
138
|
-
"react-resizable": "^1.11.1",
|
|
139
|
-
"signature_pad": "3.0.0-beta.4",
|
|
140
|
-
"viewerjs": "1.3.3",
|
|
141
|
-
"xgplayer": "2.18.3"
|
|
142
|
-
}
|
|
143
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@vortex-ui/env-puzzle",
|
|
3
|
+
"version": "2.0.0-beta.9",
|
|
4
|
+
"main": "lib/index.js",
|
|
5
|
+
"description": "Envcloud frontend accumulation",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "FireBushtree"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"start": "dumi dev",
|
|
11
|
+
"docs:build": "dumi build",
|
|
12
|
+
"commit": "git-cz",
|
|
13
|
+
"build1": "node script/build.js && gulp less copyJs",
|
|
14
|
+
"build": "gulp compile",
|
|
15
|
+
"prettier": "prettier -c --write **/*",
|
|
16
|
+
"pretty-quick": "pretty-quick",
|
|
17
|
+
"lint": "npm run pretty-quick && eslint --ext .js,.jsx,.ts,.tsx src --fix",
|
|
18
|
+
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx src",
|
|
19
|
+
"test": "jest",
|
|
20
|
+
"test:watch": "jest --watch",
|
|
21
|
+
"test:coverage": "jest --coverage",
|
|
22
|
+
"test:update": "jest --updateSnapshot"
|
|
23
|
+
},
|
|
24
|
+
"husky": {
|
|
25
|
+
"hooks": {
|
|
26
|
+
"pre-commit": "npm run lint",
|
|
27
|
+
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"repository": "ssh://git@222.92.25.98:8001/common-menu/vortex-ui/ljfl-cg.git",
|
|
31
|
+
"config": {
|
|
32
|
+
"commitizen": {
|
|
33
|
+
"path": "node_modules/cz-conventional-changelog"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"peerDependencies": {
|
|
37
|
+
"@ant-design/icons": ">=4.5.0",
|
|
38
|
+
"@vtx/components": "^3.0.2",
|
|
39
|
+
"ahooks": ">=2.9.6",
|
|
40
|
+
"axios": ">=0.21.1",
|
|
41
|
+
"react": ">=16.9.0",
|
|
42
|
+
"react-dom": ">=16.9.0"
|
|
43
|
+
},
|
|
44
|
+
"files": [
|
|
45
|
+
"lib",
|
|
46
|
+
"es"
|
|
47
|
+
],
|
|
48
|
+
"keywords": [
|
|
49
|
+
"design",
|
|
50
|
+
"env-cloud",
|
|
51
|
+
"frontend",
|
|
52
|
+
"react-components"
|
|
53
|
+
],
|
|
54
|
+
"license": "MIT",
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@babel/cli": "^7.6.4",
|
|
57
|
+
"@babel/core": "^7.6.4",
|
|
58
|
+
"@babel/plugin-proposal-class-properties": "^7.5.5",
|
|
59
|
+
"@babel/plugin-transform-runtime": "^7.6.2",
|
|
60
|
+
"@babel/preset-env": "^7.6.3",
|
|
61
|
+
"@babel/preset-react": "^7.6.3",
|
|
62
|
+
"@babel/preset-typescript": "^7.17.12",
|
|
63
|
+
"@babel/runtime": "^7.6.3",
|
|
64
|
+
"@commitlint/cli": "^11.0.0",
|
|
65
|
+
"@commitlint/config-conventional": "^11.0.0",
|
|
66
|
+
"@testing-library/dom": "^7.28.1",
|
|
67
|
+
"@testing-library/jest-dom": "^5.11.6",
|
|
68
|
+
"@testing-library/react": "^11.2.2",
|
|
69
|
+
"@testing-library/user-event": "^12.6.0",
|
|
70
|
+
"@types/classnames": "^2.2.11",
|
|
71
|
+
"@types/jest": "^26.0.19",
|
|
72
|
+
"@types/react": "^16.9.49",
|
|
73
|
+
"@types/testing-library__react": "^10.2.0",
|
|
74
|
+
"@typescript-eslint/eslint-plugin": "^4.6.1",
|
|
75
|
+
"@typescript-eslint/parser": "^4.2.0",
|
|
76
|
+
"@umijs/plugin-antd": "^0.15.0",
|
|
77
|
+
"@umijs/plugin-locale": "^0.16.0",
|
|
78
|
+
"@vortex-ui/biz": "^0.0.79",
|
|
79
|
+
"@vtx/components": "3.1.34",
|
|
80
|
+
"babel-plugin-import": "^1.13.0",
|
|
81
|
+
"babel-plugin-module-resolver": "^4.0.0",
|
|
82
|
+
"classnames": "^2.2.6",
|
|
83
|
+
"codecov": "^3.8.1",
|
|
84
|
+
"commitizen": "^4.2.1",
|
|
85
|
+
"cz-conventional-changelog": "^3.3.0",
|
|
86
|
+
"dumi": "^1.1.4",
|
|
87
|
+
"eslint": "^7.9.0",
|
|
88
|
+
"eslint-config-google": "^0.14.0",
|
|
89
|
+
"eslint-import-resolver-typescript": "^2.3.0",
|
|
90
|
+
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
91
|
+
"eslint-plugin-import": "^2.22.0",
|
|
92
|
+
"eslint-plugin-jest": "^24.1.0",
|
|
93
|
+
"eslint-plugin-jsx-a11y": "^6.4.1",
|
|
94
|
+
"eslint-plugin-react": "^7.21.5",
|
|
95
|
+
"eslint-plugin-react-hooks": "^4.2.0",
|
|
96
|
+
"eslint-plugin-unicorn": "^23.0.0",
|
|
97
|
+
"execa": "^4.0.3",
|
|
98
|
+
"father-build": "1.18.4",
|
|
99
|
+
"gulp": "4.0.2",
|
|
100
|
+
"gulp-babel": "^8.0.0",
|
|
101
|
+
"gulp-bump": "^3.2.0",
|
|
102
|
+
"gulp-clean": "^0.4.0",
|
|
103
|
+
"gulp-less": "^4.0.1",
|
|
104
|
+
"gulp-sourcemaps": "^3.0.0",
|
|
105
|
+
"gulp-typescript": "^6.0.0-alpha.1",
|
|
106
|
+
"husky": "^4.3.7",
|
|
107
|
+
"jest": "^26.6.3",
|
|
108
|
+
"jest-transform-stub": "^2.0.0",
|
|
109
|
+
"jquery": "^3.6.0",
|
|
110
|
+
"less-plugin-autoprefix": "^2.0.0",
|
|
111
|
+
"lint-staged": "^10.4.0",
|
|
112
|
+
"prettier": "2.1.2",
|
|
113
|
+
"pretty-quick": "^3.1.3",
|
|
114
|
+
"react": "^16.13.1",
|
|
115
|
+
"react-dom": "^16.13.1",
|
|
116
|
+
"react-jss": "^10.5.0",
|
|
117
|
+
"through2": "^4.0.2",
|
|
118
|
+
"ts-jest": "^26.4.4",
|
|
119
|
+
"ttypescript": "^1.5.12",
|
|
120
|
+
"typescript": "^4.0.2",
|
|
121
|
+
"typescript-transform-paths": "^2.0.1",
|
|
122
|
+
"vtx-snd-api": "latest",
|
|
123
|
+
"webpack": "^5.27.0"
|
|
124
|
+
},
|
|
125
|
+
"dependencies": {
|
|
126
|
+
"@ant-design/icons": ">=4.5.0",
|
|
127
|
+
"@hanyk/rc-viewer": "0.0.3",
|
|
128
|
+
"@vortex-ui/mapv": "^0.0.1",
|
|
129
|
+
"@vtx/map": "^1.0.7",
|
|
130
|
+
"@vtx/utils": "^1.0.7",
|
|
131
|
+
"ahooks": ">=2.9.6",
|
|
132
|
+
"axios": ">=0.21.1",
|
|
133
|
+
"braft-editor": "^2.3.9",
|
|
134
|
+
"lodash.clonedeep": "^4.5.0",
|
|
135
|
+
"lodash.difference": "^4.5.0",
|
|
136
|
+
"lodash.isequal": "^4.5.0",
|
|
137
|
+
"rc-color-picker": "^1.2.6",
|
|
138
|
+
"react-resizable": "^1.11.1",
|
|
139
|
+
"signature_pad": "3.0.0-beta.4",
|
|
140
|
+
"viewerjs": "1.3.3",
|
|
141
|
+
"xgplayer": "2.18.3"
|
|
142
|
+
}
|
|
143
|
+
}
|