jspreadsheet 11.0.18 → 11.0.19
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 +11 -7
- package/dist/index.js +537 -541
- package/dist/jspreadsheet.css +3 -4
- package/package.json +1 -1
package/dist/jspreadsheet.css
CHANGED
|
@@ -408,11 +408,10 @@
|
|
|
408
408
|
}
|
|
409
409
|
|
|
410
410
|
.jss_dialog {
|
|
411
|
-
width: 100% !important;
|
|
412
411
|
height: 240px !important;
|
|
413
|
-
min-width: 340px;
|
|
414
|
-
min-height: 240px;
|
|
415
|
-
max-width: 340px;
|
|
412
|
+
min-width: 340px !important;
|
|
413
|
+
min-height: 240px !important;
|
|
414
|
+
max-width: 340px !important;
|
|
416
415
|
user-select:none;
|
|
417
416
|
box-shadow: 2px 2px 8px 2px rgba(0,0,0,0.14);
|
|
418
417
|
text-align:left;
|
package/package.json
CHANGED