jspreadsheet 11.11.7 → 11.12.1
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.d.ts +5 -1
- package/dist/index.js +568 -568
- package/dist/jspreadsheet.css +5 -4
- package/package.json +2 -2
package/dist/jspreadsheet.css
CHANGED
|
@@ -1334,8 +1334,8 @@
|
|
|
1334
1334
|
}
|
|
1335
1335
|
|
|
1336
1336
|
.jss_warning {
|
|
1337
|
-
border-left: 1px solid red
|
|
1338
|
-
background-color: #ffefef
|
|
1337
|
+
border-left: 1px solid red;
|
|
1338
|
+
background-color: #ffefef;
|
|
1339
1339
|
position: relative;
|
|
1340
1340
|
}
|
|
1341
1341
|
|
|
@@ -1346,11 +1346,12 @@
|
|
|
1346
1346
|
position: absolute;
|
|
1347
1347
|
color: red;
|
|
1348
1348
|
left: 2px;
|
|
1349
|
+
top: calc(50% - 6px);
|
|
1349
1350
|
font-weight: normal;
|
|
1350
1351
|
}
|
|
1351
1352
|
|
|
1352
|
-
.jss_warning
|
|
1353
|
-
|
|
1353
|
+
.jss > tbody > tr > td.jss_warning {
|
|
1354
|
+
padding-left: 16px;
|
|
1354
1355
|
}
|
|
1355
1356
|
|
|
1356
1357
|
.jss_hidden {
|
package/package.json
CHANGED