@syncfusion/ej2-vue-spreadsheet 19.3.58 → 19.4.41
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/CHANGELOG.md +65 -25
- package/README.md +1 -1
- package/dist/ej2-vue-spreadsheet.umd.min.js +19 -1
- package/dist/ej2-vue-spreadsheet.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-spreadsheet.es2015.js +1 -1
- package/dist/es6/ej2-vue-spreadsheet.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-spreadsheet.es5.js +1 -1
- package/dist/es6/ej2-vue-spreadsheet.es5.js.map +1 -1
- package/dist/global/ej2-vue-spreadsheet.min.js +10 -1
- package/package.json +69 -69
- package/src/spreadsheet/spreadsheet.component.d.ts +1 -1
- package/src/spreadsheet/spreadsheet.component.js +1 -1
- package/styles/bootstrap-dark.css +18 -6
- package/styles/bootstrap.css +18 -6
- package/styles/bootstrap4.css +23 -6
- package/styles/bootstrap5-dark.css +20 -7
- package/styles/bootstrap5.css +20 -7
- package/styles/fabric-dark.css +18 -6
- package/styles/fabric.css +18 -6
- package/styles/highcontrast-light.css +18 -6
- package/styles/highcontrast.css +18 -6
- package/styles/material-dark.css +20 -6
- package/styles/material.css +20 -6
- package/styles/spreadsheet/bootstrap-dark.css +18 -6
- package/styles/spreadsheet/bootstrap.css +18 -6
- package/styles/spreadsheet/bootstrap4.css +23 -6
- package/styles/spreadsheet/bootstrap5-dark.css +20 -7
- package/styles/spreadsheet/bootstrap5.css +20 -7
- package/styles/spreadsheet/fabric-dark.css +18 -6
- package/styles/spreadsheet/fabric.css +18 -6
- package/styles/spreadsheet/highcontrast-light.css +18 -6
- package/styles/spreadsheet/highcontrast.css +18 -6
- package/styles/spreadsheet/material-dark.css +20 -6
- package/styles/spreadsheet/material.css +20 -6
- package/styles/spreadsheet/tailwind-dark.css +18 -6
- package/styles/spreadsheet/tailwind.css +18 -6
- package/styles/tailwind-dark.css +18 -6
- package/styles/tailwind.css +18 -6
package/styles/tailwind-dark.css
CHANGED
|
@@ -1286,6 +1286,7 @@
|
|
|
1286
1286
|
padding-left: 2px;
|
|
1287
1287
|
padding-right: 2px;
|
|
1288
1288
|
position: absolute;
|
|
1289
|
+
text-decoration: inherit;
|
|
1289
1290
|
width: 100%;
|
|
1290
1291
|
}
|
|
1291
1292
|
|
|
@@ -1389,8 +1390,8 @@
|
|
|
1389
1390
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1390
1391
|
background-color: #22d3ee;
|
|
1391
1392
|
cursor: ns-resize;
|
|
1393
|
+
left: 50%;
|
|
1392
1394
|
position: absolute;
|
|
1393
|
-
right: 50%;
|
|
1394
1395
|
top: 0;
|
|
1395
1396
|
transform: translate(-50%, -50%);
|
|
1396
1397
|
}
|
|
@@ -1407,8 +1408,8 @@
|
|
|
1407
1408
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1408
1409
|
background-color: #22d3ee;
|
|
1409
1410
|
cursor: ns-resize;
|
|
1411
|
+
left: 50%;
|
|
1410
1412
|
position: absolute;
|
|
1411
|
-
right: 50%;
|
|
1412
1413
|
top: 100%;
|
|
1413
1414
|
transform: translate(-50%, -50%);
|
|
1414
1415
|
}
|
|
@@ -2437,18 +2438,30 @@
|
|
|
2437
2438
|
margin: 4px 0;
|
|
2438
2439
|
}
|
|
2439
2440
|
|
|
2441
|
+
.e-spreadsheet .e-open-dlg {
|
|
2442
|
+
width: 360px;
|
|
2443
|
+
}
|
|
2444
|
+
|
|
2445
|
+
.e-spreadsheet .e-open-dlg .e-dlg-content .e-file-alert-span {
|
|
2446
|
+
color: #f87171;
|
|
2447
|
+
font-size: 12px;
|
|
2448
|
+
padding-top: 7px;
|
|
2449
|
+
}
|
|
2450
|
+
|
|
2440
2451
|
.e-spreadsheet .e-find-dlg {
|
|
2441
2452
|
height: auto;
|
|
2442
2453
|
width: 468px;
|
|
2443
2454
|
}
|
|
2444
2455
|
|
|
2445
2456
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-find-alert-span {
|
|
2446
|
-
|
|
2457
|
+
color: #f87171;
|
|
2458
|
+
font-size: 12px;
|
|
2447
2459
|
padding-top: 7px;
|
|
2448
2460
|
}
|
|
2449
2461
|
|
|
2450
2462
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-replace-alert-span {
|
|
2451
|
-
|
|
2463
|
+
color: #f87171;
|
|
2464
|
+
font-size: 12px;
|
|
2452
2465
|
padding-top: 7px;
|
|
2453
2466
|
}
|
|
2454
2467
|
|
|
@@ -2549,9 +2562,8 @@
|
|
|
2549
2562
|
bottom: 0;
|
|
2550
2563
|
float: right;
|
|
2551
2564
|
height: 18px;
|
|
2552
|
-
margin-right: -1px;
|
|
2553
2565
|
padding: 0;
|
|
2554
|
-
position:
|
|
2566
|
+
position: absolute;
|
|
2555
2567
|
right: 0;
|
|
2556
2568
|
width: 20px;
|
|
2557
2569
|
z-index: 2;
|
package/styles/tailwind.css
CHANGED
|
@@ -1286,6 +1286,7 @@
|
|
|
1286
1286
|
padding-left: 2px;
|
|
1287
1287
|
padding-right: 2px;
|
|
1288
1288
|
position: absolute;
|
|
1289
|
+
text-decoration: inherit;
|
|
1289
1290
|
width: 100%;
|
|
1290
1291
|
}
|
|
1291
1292
|
|
|
@@ -1389,8 +1390,8 @@
|
|
|
1389
1390
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1390
1391
|
background-color: #4f46e5;
|
|
1391
1392
|
cursor: ns-resize;
|
|
1393
|
+
left: 50%;
|
|
1392
1394
|
position: absolute;
|
|
1393
|
-
right: 50%;
|
|
1394
1395
|
top: 0;
|
|
1395
1396
|
transform: translate(-50%, -50%);
|
|
1396
1397
|
}
|
|
@@ -1407,8 +1408,8 @@
|
|
|
1407
1408
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1408
1409
|
background-color: #4f46e5;
|
|
1409
1410
|
cursor: ns-resize;
|
|
1411
|
+
left: 50%;
|
|
1410
1412
|
position: absolute;
|
|
1411
|
-
right: 50%;
|
|
1412
1413
|
top: 100%;
|
|
1413
1414
|
transform: translate(-50%, -50%);
|
|
1414
1415
|
}
|
|
@@ -2437,18 +2438,30 @@
|
|
|
2437
2438
|
margin: 4px 0;
|
|
2438
2439
|
}
|
|
2439
2440
|
|
|
2441
|
+
.e-spreadsheet .e-open-dlg {
|
|
2442
|
+
width: 360px;
|
|
2443
|
+
}
|
|
2444
|
+
|
|
2445
|
+
.e-spreadsheet .e-open-dlg .e-dlg-content .e-file-alert-span {
|
|
2446
|
+
color: #dc2626;
|
|
2447
|
+
font-size: 12px;
|
|
2448
|
+
padding-top: 7px;
|
|
2449
|
+
}
|
|
2450
|
+
|
|
2440
2451
|
.e-spreadsheet .e-find-dlg {
|
|
2441
2452
|
height: auto;
|
|
2442
2453
|
width: 468px;
|
|
2443
2454
|
}
|
|
2444
2455
|
|
|
2445
2456
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-find-alert-span {
|
|
2446
|
-
|
|
2457
|
+
color: #dc2626;
|
|
2458
|
+
font-size: 12px;
|
|
2447
2459
|
padding-top: 7px;
|
|
2448
2460
|
}
|
|
2449
2461
|
|
|
2450
2462
|
.e-spreadsheet .e-find-dlg .e-dlg-content .e-replace-alert-span {
|
|
2451
|
-
|
|
2463
|
+
color: #dc2626;
|
|
2464
|
+
font-size: 12px;
|
|
2452
2465
|
padding-top: 7px;
|
|
2453
2466
|
}
|
|
2454
2467
|
|
|
@@ -2549,9 +2562,8 @@
|
|
|
2549
2562
|
bottom: 0;
|
|
2550
2563
|
float: right;
|
|
2551
2564
|
height: 18px;
|
|
2552
|
-
margin-right: -1px;
|
|
2553
2565
|
padding: 0;
|
|
2554
|
-
position:
|
|
2566
|
+
position: absolute;
|
|
2555
2567
|
right: 0;
|
|
2556
2568
|
width: 20px;
|
|
2557
2569
|
z-index: 2;
|