easy3wui 1.5.64-beta.9 → 1.5.65-beta.1
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/assets/btn.css +3 -0
- package/assets/editBigTable.css +10 -70
- package/assets/flow.css +1235 -224
- package/assets/formPage.css +99 -11
- package/assets/index.css +1347 -305
- package/lib/Easy3wButtonOne/index.js +9 -1
- package/lib/Easy3wCard/index.js +12 -3
- package/lib/Easy3wDownLoad/Easy3wRCView.js +7 -12
- package/lib/Easy3wEditBigTable/Easy3wEditBigTableForm.js +15 -17
- 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 +1016 -690
- package/lib/Easy3wFlow/index.js +697 -2
- package/lib/Easy3wFormPage/index.js +1806 -14
- package/lib/Easy3wUpload/index.js +10 -3
- package/lib/Easy3wUploadB/index.js +8 -1
- package/lib/Easy3wUploadM/index.js +10 -3
- package/package.json +4 -4
- package/assets/editBigTable copy.css +0 -17
- package/lib/Easy3wEditBigTable copy/Easy3wEditBigTableForm.js +0 -196
- package/lib/Easy3wEditBigTable copy/Editors/EditorNumber.js +0 -45
- package/lib/Easy3wEditBigTable copy/Editors/EditorsDatePicker.js +0 -86
- package/lib/Easy3wEditBigTable copy/Editors/EditorsInputNumber.js +0 -73
- package/lib/Easy3wEditBigTable copy/index.js +0 -920
- package/lib/Easy3wFormPage/index copy.js +0 -2187
package/assets/btn.css
CHANGED
package/assets/editBigTable.css
CHANGED
|
@@ -1,77 +1,17 @@
|
|
|
1
1
|
.Easy3wEditBigTable {
|
|
2
2
|
background-color: #fff;
|
|
3
3
|
}
|
|
4
|
-
.Easy3wEditBigTable .
|
|
5
|
-
|
|
4
|
+
.Easy3wEditBigTable .react-grid-Header .react-grid-HeaderRow > div > div.react-grid-HeaderCell > div {
|
|
5
|
+
height: 100%;
|
|
6
6
|
}
|
|
7
|
-
.Easy3wEditBigTable .
|
|
8
|
-
|
|
9
|
-
padding: 6px 12px;
|
|
10
|
-
margin-bottom: 0;
|
|
11
|
-
font-size: 14px;
|
|
12
|
-
font-weight: 400;
|
|
13
|
-
line-height: 1.42857143;
|
|
14
|
-
text-align: center;
|
|
15
|
-
white-space: nowrap;
|
|
16
|
-
vertical-align: middle;
|
|
17
|
-
-ms-touch-action: manipulation;
|
|
18
|
-
touch-action: manipulation;
|
|
19
|
-
cursor: pointer;
|
|
20
|
-
-webkit-user-select: none;
|
|
21
|
-
color: inherit;
|
|
22
|
-
background: white;
|
|
23
|
-
border: 1px solid #e7eaec;
|
|
7
|
+
.Easy3wEditBigTable .react-grid-Header .react-grid-HeaderRow > div > div.react-grid-HeaderCell > div > div.form-group {
|
|
8
|
+
height: 100%;
|
|
24
9
|
}
|
|
25
|
-
.Easy3wEditBigTable .
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
.Easy3wEditBigTable .filterCell .filterCellContainer input,
|
|
30
|
-
.Easy3wEditBigTable .filterCell .filterCellContainer button,
|
|
31
|
-
.Easy3wEditBigTable .filterCell .filterCellContainer select,
|
|
32
|
-
.Easy3wEditBigTable .filterCell .filterCellContainer optgroup,
|
|
33
|
-
.Easy3wEditBigTable .filterCell .filterCellContainer textarea {
|
|
34
|
-
line-height: normal;
|
|
35
|
-
}
|
|
36
|
-
.Easy3wEditBigTable .filterCell .filterCellContainer > div {
|
|
37
|
-
padding-block: 0;
|
|
38
|
-
}
|
|
39
|
-
.Easy3wEditBigTable .filterCell .filterCellContainer > div:first-child {
|
|
40
|
-
border-block-end: 1px solid var(--rdg-border-color);
|
|
41
|
-
}
|
|
42
|
-
.Easy3wEditBigTable .filterCell .filterCellContainer > div .filterCellInput {
|
|
43
|
-
inline-size: 100%;
|
|
44
|
-
padding: 4px;
|
|
45
|
-
font-size: 14px;
|
|
46
|
-
}
|
|
47
|
-
.Easy3wEditBigTable .textEditor {
|
|
48
|
-
-webkit-appearance: none;
|
|
49
|
-
-moz-appearance: none;
|
|
50
|
-
appearance: none;
|
|
51
|
-
box-sizing: border-box;
|
|
52
|
-
inline-size: 100%;
|
|
53
|
-
block-size: 100%;
|
|
54
|
-
padding-block: 0;
|
|
55
|
-
padding-inline: 6px;
|
|
56
|
-
border: 2px solid #ccc;
|
|
57
|
-
vertical-align: top;
|
|
58
|
-
color: var(--rdg-color);
|
|
59
|
-
background-color: var(--rdg-background-color);
|
|
60
|
-
font-family: inherit;
|
|
61
|
-
font-size: var(--rdg-font-size);
|
|
62
|
-
}
|
|
63
|
-
.Easy3wEditBigTable .textEditor:focus {
|
|
64
|
-
border-color: var(--rdg-selection-color);
|
|
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;
|
|
65
14
|
outline: none;
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
color: #999;
|
|
69
|
-
opacity: 1;
|
|
70
|
-
}
|
|
71
|
-
.Easy3wEditBigTable .textEditor::placeholder {
|
|
72
|
-
color: #999;
|
|
73
|
-
opacity: 1;
|
|
74
|
-
}
|
|
75
|
-
.Easy3wEditBigTable .rdg-row .rdg-cell:not([aria-readonly]) {
|
|
76
|
-
background-color: #f6ffed;
|
|
15
|
+
border-style: solid;
|
|
16
|
+
border-radius: 3px;
|
|
77
17
|
}
|