easy3wui 1.5.6 → 1.5.8-2.beta
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 +17 -1
- package/assets/btn.css +7 -1
- package/assets/card.css +14 -0
- package/assets/editBigTable.css +17 -0
- package/assets/flow.css +1235 -224
- package/assets/formPage.css +212 -5
- package/assets/gridPage.css +12 -2
- package/assets/index.css +1610 -348
- package/assets/login.css +0 -3
- package/assets/tree.css +4 -0
- package/lib/Easy3wButton/index.js +4 -2
- package/lib/Easy3wButtonOne/index.js +10 -2
- package/lib/Easy3wCaHandler/index.js +130 -24
- package/lib/Easy3wCard/index.js +11 -53
- package/lib/Easy3wCard/indexM.js +80 -0
- package/lib/Easy3wCard/indexPC.js +75 -0
- package/lib/Easy3wCol/index.js +53 -0
- package/lib/Easy3wDownLoad/index copy.js +333 -0
- package/lib/Easy3wDownLoad/index.js +129 -19
- package/lib/Easy3wEditBigTable/Easy3wEditBigTableForm.js +295 -0
- package/lib/Easy3wEditBigTable/Editors/EditorNumber.js +92 -0
- package/lib/Easy3wEditBigTable/Editors/EditorsDatePicker.js +168 -0
- package/lib/Easy3wEditBigTable/Editors/EditorsInputNumber.js +141 -0
- package/lib/Easy3wEditBigTable/index.js +1175 -0
- package/lib/Easy3wFlow/index.js +722 -25
- package/lib/Easy3wFormPage/index.js +28 -1553
- package/lib/Easy3wFormPage/indexM.js +4274 -0
- package/lib/Easy3wFormPage/indexPC.js +4006 -0
- package/lib/Easy3wGetDesensitization/index.js +43 -0
- package/lib/Easy3wGridCheckBox/index.js +1 -1
- package/lib/Easy3wGridDatePicker/index.js +1 -1
- package/lib/Easy3wGridDateTimePicker/index.js +1 -1
- package/lib/Easy3wGridInput/index.js +31 -4
- package/lib/Easy3wGridInputAmount/index.js +93 -0
- package/lib/Easy3wGridInputDigit/index.js +83 -0
- package/lib/Easy3wGridInputEmail/index.js +73 -0
- package/lib/Easy3wGridPage/index.js +10 -580
- package/lib/Easy3wGridPage/indexM.js +696 -0
- package/lib/Easy3wGridPage/indexPC.js +668 -0
- package/lib/Easy3wGridSelect/index.js +4 -2
- package/lib/Easy3wGridTextArea/index.js +57 -5
- package/lib/Easy3wModal/index.js +180 -7
- package/lib/Easy3wRow/index.js +53 -0
- package/lib/Easy3wTree/index.js +318 -0
- package/lib/Easy3wUIConfig/index.js +30 -0
- package/lib/Easy3wUpload/index.js +86 -42
- package/lib/Easy3wUploadB/index copy 2.js +1011 -0
- package/lib/Easy3wUploadB/index copy 3.js +1088 -0
- package/lib/Easy3wUploadB/index.js +300 -145
- package/lib/Easy3wUploadM/index copy.js +523 -0
- package/lib/Easy3wUploadM/index.js +122 -51
- package/lib/index.js +81 -0
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -1,2 +1,18 @@
|
|
|
1
1
|
# easy3wUI
|
|
2
|
-
easy3w UI 组件
|
|
2
|
+
easy3w UI 组件
|
|
3
|
+
# 编译
|
|
4
|
+
npm run compile
|
|
5
|
+
# 发布代码
|
|
6
|
+
npm publish
|
|
7
|
+
|
|
8
|
+
react-data-grid使用6.0.1版本对应的react@16
|
|
9
|
+
7版本未形成稳定版本,暂时使用6.0.1版本;对应的react@18+版本
|
|
10
|
+
https://www.npmjs.com/
|
|
11
|
+
登录npm
|
|
12
|
+
在终端输入npm login ,在登录前一定要将npm源设置为官方源
|
|
13
|
+
// 官方镜像源
|
|
14
|
+
npm config set registry https://registry.npmjs.org/
|
|
15
|
+
// 淘宝镜像源
|
|
16
|
+
npm config set registry https://registry.npmmirror.com/
|
|
17
|
+
检查当前npm源:
|
|
18
|
+
npm config get registry
|
package/assets/btn.css
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
|
+
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
2
|
+
/* stylelint-disable no-duplicate-selectors */
|
|
3
|
+
/* stylelint-disable */
|
|
4
|
+
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
1
5
|
.e3wFootBtn {
|
|
2
6
|
margin: 0px 8px;
|
|
3
7
|
}
|
|
8
|
+
.e3wFormBtn {
|
|
9
|
+
margin-right: 8px;
|
|
10
|
+
}
|
|
4
11
|
.positionDiv {
|
|
5
12
|
position: absolute;
|
|
6
13
|
right: 32px;
|
|
@@ -8,7 +15,6 @@
|
|
|
8
15
|
}
|
|
9
16
|
.e3wPositionA {
|
|
10
17
|
font-size: 15px;
|
|
11
|
-
color: #5468b2;
|
|
12
18
|
font-weight: 900;
|
|
13
19
|
margin-left: 15px;
|
|
14
20
|
}
|
package/assets/card.css
CHANGED
|
@@ -32,3 +32,17 @@ s {
|
|
|
32
32
|
margin: 0 8px -4px 0;
|
|
33
33
|
background-color: #ad7c59;
|
|
34
34
|
}
|
|
35
|
+
@media (max-width: 768px) {
|
|
36
|
+
:global .positionDiv {
|
|
37
|
+
display: none !important;
|
|
38
|
+
}
|
|
39
|
+
:global .ant-card-head-title {
|
|
40
|
+
padding: 12px 0 !important;
|
|
41
|
+
}
|
|
42
|
+
:global .ant-card-head {
|
|
43
|
+
padding: 0 12px !important;
|
|
44
|
+
}
|
|
45
|
+
:global .ant-card-body {
|
|
46
|
+
padding: 12px !important;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
.Easy3wEditBigTable {
|
|
2
|
+
background-color: #fff;
|
|
3
|
+
}
|
|
4
|
+
.Easy3wEditBigTable .react-grid-Header .react-grid-HeaderRow > div > div.react-grid-HeaderCell > div {
|
|
5
|
+
height: 100%;
|
|
6
|
+
}
|
|
7
|
+
.Easy3wEditBigTable .react-grid-Header .react-grid-HeaderRow > div > div.react-grid-HeaderCell > div > div.form-group {
|
|
8
|
+
height: 100%;
|
|
9
|
+
}
|
|
10
|
+
.Easy3wEditBigTable .react-grid-Header .react-grid-HeaderRow > div > div.react-grid-HeaderCell > div > div.form-group > input[type="text"].form-control.input-sm {
|
|
11
|
+
width: 100%;
|
|
12
|
+
height: 100%;
|
|
13
|
+
border-color: #ddd;
|
|
14
|
+
outline: none;
|
|
15
|
+
border-style: solid;
|
|
16
|
+
border-radius: 3px;
|
|
17
|
+
}
|