jspreadsheet 12.0.0-beta.20 → 12.0.0-beta.22
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 +572 -609
- package/dist/jspreadsheet.css +9 -2
- package/package.json +2 -2
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;
|
|
@@ -1358,7 +1366,6 @@ div.jss_filters_icon.jss_filters_active::before {
|
|
|
1358
1366
|
padding: 10px;
|
|
1359
1367
|
outline: 2px solid black;
|
|
1360
1368
|
overflow: auto;
|
|
1361
|
-
white-space: pre-wrap;
|
|
1362
1369
|
}
|
|
1363
1370
|
|
|
1364
1371
|
.jss_color:before {
|
|
@@ -1639,4 +1646,4 @@ div.jss_filters_icon.jss_filters_active::before {
|
|
|
1639
1646
|
.jss_modern .jss_search_container {
|
|
1640
1647
|
background: initial;
|
|
1641
1648
|
border: initial;
|
|
1642
|
-
}
|
|
1649
|
+
}
|
package/package.json
CHANGED
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"datasheet"
|
|
45
45
|
],
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"jsuites": "^6.0.0-beta.
|
|
47
|
+
"jsuites": "^6.0.0-beta.20",
|
|
48
48
|
"@jspreadsheet/formula-pro": "^6.0.0-beta.1"
|
|
49
49
|
},
|
|
50
50
|
"main": "dist/index.js",
|
|
51
51
|
"types": "dist/index.d.ts",
|
|
52
|
-
"version": "12.0.0-beta.
|
|
52
|
+
"version": "12.0.0-beta.22"
|
|
53
53
|
}
|