jspreadsheet 12.0.0-beta.19 → 12.0.0-beta.21
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/dist/index.js +611 -610
- package/dist/jspreadsheet.css +10 -1
- package/package.json +1 -1
package/dist/jspreadsheet.css
CHANGED
|
@@ -319,6 +319,14 @@
|
|
|
319
319
|
white-space: initial !important;
|
|
320
320
|
}
|
|
321
321
|
|
|
322
|
+
.jss > tbody > tr > td > div.jss_notes {
|
|
323
|
+
overflow: hidden;
|
|
324
|
+
display: -webkit-box;
|
|
325
|
+
-webkit-line-clamp: 1;
|
|
326
|
+
-webkit-box-orient: vertical;
|
|
327
|
+
text-overflow: ellipsis;
|
|
328
|
+
}
|
|
329
|
+
|
|
322
330
|
.jss > tbody > tr > td > .color {
|
|
323
331
|
width:90%;
|
|
324
332
|
height:10px;
|
|
@@ -1357,6 +1365,7 @@ div.jss_filters_icon.jss_filters_active::before {
|
|
|
1357
1365
|
height: 240px;
|
|
1358
1366
|
padding: 10px;
|
|
1359
1367
|
outline: 2px solid black;
|
|
1368
|
+
overflow: auto;
|
|
1360
1369
|
}
|
|
1361
1370
|
|
|
1362
1371
|
.jss_color:before {
|
|
@@ -1637,4 +1646,4 @@ div.jss_filters_icon.jss_filters_active::before {
|
|
|
1637
1646
|
.jss_modern .jss_search_container {
|
|
1638
1647
|
background: initial;
|
|
1639
1648
|
border: initial;
|
|
1640
|
-
}
|
|
1649
|
+
}
|
package/package.json
CHANGED