bri-components 1.2.22 → 1.2.24
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/lib/bri-components.min.js +7 -7
- package/package.json +1 -1
- package/src/components/controls/base/BriUpload/BriUpload.vue +82 -74
- package/src/components/controls/base/BriUpload/uploadList.vue +74 -112
- package/src/components/controls/controlMixin.js +1 -1
- package/src/components/list/DshBox/DshTable.vue +5 -2
- package/src/components/small/DshDropdown.vue +1 -1
- package/src/components/unit/DshFormUnit.vue +1 -1
- package/src/components/unit/DshListUnit.vue +1 -1
- package/src/components/unit/unitMixin.js +6 -4
- package/src/styles/components/controls/base/DshEditor.less +12 -3
- package/src/styles/components/small/DshModal.less +0 -6
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
.DshEditor {
|
|
2
2
|
width: 100%;
|
|
3
|
+
|
|
3
4
|
#show {
|
|
5
|
+
white-space: pre-wrap;
|
|
6
|
+
word-break: break-word;
|
|
7
|
+
|
|
4
8
|
p {
|
|
5
9
|
font-size: 14px !important;
|
|
6
10
|
}
|
|
@@ -24,7 +28,7 @@
|
|
|
24
28
|
min-height: 32px;
|
|
25
29
|
padding: 4px 7px;
|
|
26
30
|
border-radius: @borderRadius;
|
|
27
|
-
|
|
31
|
+
|
|
28
32
|
&.bri-control-nodata {
|
|
29
33
|
line-height: 24px;
|
|
30
34
|
}
|
|
@@ -38,13 +42,14 @@
|
|
|
38
42
|
&-toolbar {
|
|
39
43
|
margin-top: 5px;
|
|
40
44
|
}
|
|
41
|
-
|
|
45
|
+
|
|
42
46
|
&-text {
|
|
43
47
|
min-height: 130px;
|
|
48
|
+
|
|
44
49
|
ul li {
|
|
45
50
|
list-style: disc;
|
|
46
51
|
}
|
|
47
|
-
|
|
52
|
+
|
|
48
53
|
ol li {
|
|
49
54
|
list-style: auto;
|
|
50
55
|
}
|
|
@@ -62,5 +67,9 @@
|
|
|
62
67
|
|
|
63
68
|
&-show {
|
|
64
69
|
#show();
|
|
70
|
+
|
|
71
|
+
&-nodata {
|
|
72
|
+
.bri-control-nodata();
|
|
73
|
+
}
|
|
65
74
|
}
|
|
66
75
|
}
|
|
@@ -60,8 +60,6 @@
|
|
|
60
60
|
|
|
61
61
|
&-default {
|
|
62
62
|
.ivu-modal-wrap {
|
|
63
|
-
margin: 24px;
|
|
64
|
-
|
|
65
63
|
.ivu-modal {
|
|
66
64
|
width: 750px !important;
|
|
67
65
|
height: 550px !important;
|
|
@@ -113,8 +111,6 @@
|
|
|
113
111
|
|
|
114
112
|
&-middle {
|
|
115
113
|
.ivu-modal-wrap {
|
|
116
|
-
margin: 24px;
|
|
117
|
-
|
|
118
114
|
.ivu-modal {
|
|
119
115
|
// width: 1000px !important;
|
|
120
116
|
// height: 800px !important;
|
|
@@ -140,8 +136,6 @@
|
|
|
140
136
|
|
|
141
137
|
&-large {
|
|
142
138
|
.ivu-modal-wrap {
|
|
143
|
-
margin: 20px;
|
|
144
|
-
|
|
145
139
|
.ivu-modal {
|
|
146
140
|
width: 80% !important;
|
|
147
141
|
height: 90% !important;
|