form-driver 0.1.15 → 0.1.17
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 +1 -1
- package/dist/m3.css +30 -0
- package/dist/m3.js +1 -1
- package/es/m3.css +30 -0
- package/es/m3.js +52 -9
- package/lib/m3.css +30 -0
- package/lib/m3.js +52 -9
- package/package.json +1 -1
- package/src/framework/Schema.ts +1 -1
- package/src/ui/readable/DecorationViewer.tsx +18 -1
- package/src/ui/readable/RichViewer.less +36 -0
- package/types/src/framework/Schema.d.ts +1 -1
- package/types/src/ui/readable/DecorationViewer.d.ts +1 -0
package/README.md
CHANGED
package/dist/m3.css
CHANGED
|
@@ -307,6 +307,36 @@ table.M3_table tr:last-child td {
|
|
|
307
307
|
margin-bottom: 5px;
|
|
308
308
|
}
|
|
309
309
|
|
|
310
|
+
.form-driver-plugin-richtext-viewer-wrap .richtext-viewer-more {
|
|
311
|
+
text-align: center;
|
|
312
|
+
box-shadow: 0px -5px 5px rgba(232,232,232,0.38039);
|
|
313
|
+
}
|
|
314
|
+
.form-driver-plugin-richtext-viewer-wrap .richtext-viewer-more span {
|
|
315
|
+
cursor: pointer;
|
|
316
|
+
color: #1890ff;
|
|
317
|
+
font-weight: bold;
|
|
318
|
+
position: relative;
|
|
319
|
+
}
|
|
320
|
+
.form-driver-plugin-richtext-viewer-wrap .u-arrow {
|
|
321
|
+
display: inline-block;
|
|
322
|
+
width: 9px;
|
|
323
|
+
height: 9px;
|
|
324
|
+
border-top: 1px solid #1890ff;
|
|
325
|
+
border-right: 1px solid #1890ff;
|
|
326
|
+
position: absolute;
|
|
327
|
+
}
|
|
328
|
+
.form-driver-plugin-richtext-viewer-wrap .u-arrow-up {
|
|
329
|
+
transform: rotate(-45deg);
|
|
330
|
+
left: 32px;
|
|
331
|
+
top: 6px;
|
|
332
|
+
}
|
|
333
|
+
.form-driver-plugin-richtext-viewer-wrap .u-arrow-down {
|
|
334
|
+
transform: rotate(135deg);
|
|
335
|
+
left: 32px;
|
|
336
|
+
top: 1px;
|
|
337
|
+
position: absolute;
|
|
338
|
+
}
|
|
339
|
+
|
|
310
340
|
.ATable .ant-table {
|
|
311
341
|
background: none;
|
|
312
342
|
}
|