@flatbiz/antd 4.0.13 → 4.0.15
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/cjs/index.css +94 -94
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/index.d.ts +109 -69
- package/package.json +1 -1
package/cjs/index.css
CHANGED
|
@@ -209,6 +209,100 @@ ul {
|
|
|
209
209
|
color: #0080e3;
|
|
210
210
|
}
|
|
211
211
|
|
|
212
|
+
.simple-layout {
|
|
213
|
+
background-color: #fff;
|
|
214
|
+
padding: 15px;
|
|
215
|
+
}
|
|
216
|
+
.simple-layout .ant-form {
|
|
217
|
+
margin-bottom: -15px;
|
|
218
|
+
}
|
|
219
|
+
.simple-layout .ant-form-item {
|
|
220
|
+
margin: 0 0 15px;
|
|
221
|
+
}
|
|
222
|
+
.simple-layout .ant-form-item-label {
|
|
223
|
+
width: 82px;
|
|
224
|
+
}
|
|
225
|
+
.simple-layout .ant-form-item-label.ant-col-auto {
|
|
226
|
+
width: auto;
|
|
227
|
+
}
|
|
228
|
+
.simple-layout .ant-table-thead > tr > th {
|
|
229
|
+
background: #f6f6f6;
|
|
230
|
+
}
|
|
231
|
+
.simple-layout .ant-descriptions-item {
|
|
232
|
+
padding-bottom: 10px;
|
|
233
|
+
}
|
|
234
|
+
.simple-layout .ant-descriptions-item-label {
|
|
235
|
+
color: #999;
|
|
236
|
+
}
|
|
237
|
+
.simple-layout .ant-table-pagination.ant-pagination {
|
|
238
|
+
margin: 16px 0 0 0;
|
|
239
|
+
}
|
|
240
|
+
.simple-layout .simple-layout-content > .ant-row:nth-last-child(1) {
|
|
241
|
+
margin-bottom: 0px;
|
|
242
|
+
}
|
|
243
|
+
.simple-layout .simple-layout-content > .ant-row:nth-last-child(1) .ant-upload-list {
|
|
244
|
+
padding-bottom: 15px;
|
|
245
|
+
}
|
|
246
|
+
.simple-layout .simple-layout-content > .ant-descriptions:not(.ant-descriptions-bordered):nth-last-child(1) {
|
|
247
|
+
margin-bottom: -10px;
|
|
248
|
+
}
|
|
249
|
+
.simple-layout .v-tree-wrapper-tree {
|
|
250
|
+
padding: 5px 0 0 0;
|
|
251
|
+
}
|
|
252
|
+
.simple-layout-title-sign {
|
|
253
|
+
padding-left: 10px;
|
|
254
|
+
}
|
|
255
|
+
.simple-layout-title-sign::before {
|
|
256
|
+
content: '';
|
|
257
|
+
position: absolute;
|
|
258
|
+
top: 50%;
|
|
259
|
+
left: 0;
|
|
260
|
+
height: 14px;
|
|
261
|
+
width: 3px;
|
|
262
|
+
background: var(--simple-layout-colorPrimary);
|
|
263
|
+
border-radius: 3px;
|
|
264
|
+
margin-top: -7px;
|
|
265
|
+
}
|
|
266
|
+
.simple-layout-title {
|
|
267
|
+
color: rgba(0, 0, 0, 0.85);
|
|
268
|
+
font-weight: 500;
|
|
269
|
+
font-size: 16px;
|
|
270
|
+
overflow: hidden;
|
|
271
|
+
white-space: nowrap;
|
|
272
|
+
text-overflow: ellipsis;
|
|
273
|
+
position: relative;
|
|
274
|
+
}
|
|
275
|
+
.simple-layout-title + .simple-layout-content {
|
|
276
|
+
margin-top: 10px;
|
|
277
|
+
}
|
|
278
|
+
.simple-layout-desc {
|
|
279
|
+
font-size: 12px;
|
|
280
|
+
color: rgba(0, 0, 0, 0.55);
|
|
281
|
+
}
|
|
282
|
+
.simple-layout-desc + .simple-layout-content {
|
|
283
|
+
margin-top: 10px;
|
|
284
|
+
}
|
|
285
|
+
.simple-layout + .simple-layout {
|
|
286
|
+
margin-top: 10px;
|
|
287
|
+
}
|
|
288
|
+
.simple-layout .simple-layout:first-child {
|
|
289
|
+
padding: 0 0 15px 0;
|
|
290
|
+
}
|
|
291
|
+
.simple-layout + .ant-divider {
|
|
292
|
+
margin: 0 0 15px 0;
|
|
293
|
+
}
|
|
294
|
+
.simple-layout-formlabel-left .ant-form-item-label {
|
|
295
|
+
text-align: left;
|
|
296
|
+
}
|
|
297
|
+
.simple-layout-tight.simple-layout {
|
|
298
|
+
margin-top: 0;
|
|
299
|
+
padding: 0 0 15px 0;
|
|
300
|
+
}
|
|
301
|
+
.simple-layout-title-extra-space {
|
|
302
|
+
width: 100%;
|
|
303
|
+
justify-content: space-between;
|
|
304
|
+
}
|
|
305
|
+
|
|
212
306
|
.v-selector-item-icon {
|
|
213
307
|
margin-right: 5px;
|
|
214
308
|
}
|
|
@@ -753,100 +847,6 @@ ul {
|
|
|
753
847
|
opacity: 0.9;
|
|
754
848
|
}
|
|
755
849
|
|
|
756
|
-
.simple-layout {
|
|
757
|
-
background-color: #fff;
|
|
758
|
-
padding: 15px;
|
|
759
|
-
}
|
|
760
|
-
.simple-layout .ant-form {
|
|
761
|
-
margin-bottom: -15px;
|
|
762
|
-
}
|
|
763
|
-
.simple-layout .ant-form-item {
|
|
764
|
-
margin: 0 0 15px;
|
|
765
|
-
}
|
|
766
|
-
.simple-layout .ant-form-item-label {
|
|
767
|
-
width: 82px;
|
|
768
|
-
}
|
|
769
|
-
.simple-layout .ant-form-item-label.ant-col-auto {
|
|
770
|
-
width: auto;
|
|
771
|
-
}
|
|
772
|
-
.simple-layout .ant-table-thead > tr > th {
|
|
773
|
-
background: #f6f6f6;
|
|
774
|
-
}
|
|
775
|
-
.simple-layout .ant-descriptions-item {
|
|
776
|
-
padding-bottom: 10px;
|
|
777
|
-
}
|
|
778
|
-
.simple-layout .ant-descriptions-item-label {
|
|
779
|
-
color: #999;
|
|
780
|
-
}
|
|
781
|
-
.simple-layout .ant-table-pagination.ant-pagination {
|
|
782
|
-
margin: 16px 0 0 0;
|
|
783
|
-
}
|
|
784
|
-
.simple-layout .simple-layout-content > .ant-row:nth-last-child(1) {
|
|
785
|
-
margin-bottom: 0px;
|
|
786
|
-
}
|
|
787
|
-
.simple-layout .simple-layout-content > .ant-row:nth-last-child(1) .ant-upload-list {
|
|
788
|
-
padding-bottom: 15px;
|
|
789
|
-
}
|
|
790
|
-
.simple-layout .simple-layout-content > .ant-descriptions:not(.ant-descriptions-bordered):nth-last-child(1) {
|
|
791
|
-
margin-bottom: -10px;
|
|
792
|
-
}
|
|
793
|
-
.simple-layout .v-tree-wrapper-tree {
|
|
794
|
-
padding: 5px 0 0 0;
|
|
795
|
-
}
|
|
796
|
-
.simple-layout-title-sign {
|
|
797
|
-
padding-left: 10px;
|
|
798
|
-
}
|
|
799
|
-
.simple-layout-title-sign::before {
|
|
800
|
-
content: '';
|
|
801
|
-
position: absolute;
|
|
802
|
-
top: 50%;
|
|
803
|
-
left: 0;
|
|
804
|
-
height: 14px;
|
|
805
|
-
width: 3px;
|
|
806
|
-
background: var(--simple-layout-colorPrimary);
|
|
807
|
-
border-radius: 3px;
|
|
808
|
-
margin-top: -7px;
|
|
809
|
-
}
|
|
810
|
-
.simple-layout-title {
|
|
811
|
-
color: rgba(0, 0, 0, 0.85);
|
|
812
|
-
font-weight: 500;
|
|
813
|
-
font-size: 16px;
|
|
814
|
-
overflow: hidden;
|
|
815
|
-
white-space: nowrap;
|
|
816
|
-
text-overflow: ellipsis;
|
|
817
|
-
position: relative;
|
|
818
|
-
}
|
|
819
|
-
.simple-layout-title + .simple-layout-content {
|
|
820
|
-
margin-top: 10px;
|
|
821
|
-
}
|
|
822
|
-
.simple-layout-desc {
|
|
823
|
-
font-size: 12px;
|
|
824
|
-
color: rgba(0, 0, 0, 0.55);
|
|
825
|
-
}
|
|
826
|
-
.simple-layout-desc + .simple-layout-content {
|
|
827
|
-
margin-top: 10px;
|
|
828
|
-
}
|
|
829
|
-
.simple-layout + .simple-layout {
|
|
830
|
-
margin-top: 10px;
|
|
831
|
-
}
|
|
832
|
-
.simple-layout .simple-layout:first-child {
|
|
833
|
-
padding: 0 0 15px 0;
|
|
834
|
-
}
|
|
835
|
-
.simple-layout + .ant-divider {
|
|
836
|
-
margin: 0 0 15px 0;
|
|
837
|
-
}
|
|
838
|
-
.simple-layout-formlabel-left .ant-form-item-label {
|
|
839
|
-
text-align: left;
|
|
840
|
-
}
|
|
841
|
-
.simple-layout-tight.simple-layout {
|
|
842
|
-
margin-top: 0;
|
|
843
|
-
padding: 0 0 15px 0;
|
|
844
|
-
}
|
|
845
|
-
.simple-layout-title-extra-space {
|
|
846
|
-
width: 100%;
|
|
847
|
-
justify-content: space-between;
|
|
848
|
-
}
|
|
849
|
-
|
|
850
850
|
.tabs-sticky {
|
|
851
851
|
height: 100%;
|
|
852
852
|
overflow: hidden;
|