@syncfusion/ej2-angular-spreadsheet 19.4.54 → 20.1.47
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/@syncfusion/ej2-angular-spreadsheet.es5.js +1 -1
- package/@syncfusion/ej2-angular-spreadsheet.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-spreadsheet.js +1 -1
- package/@syncfusion/ej2-angular-spreadsheet.js.map +1 -1
- package/CHANGELOG.md +38 -0
- package/dist/ej2-angular-spreadsheet.umd.js +8 -4
- package/dist/ej2-angular-spreadsheet.umd.js.map +1 -1
- package/dist/ej2-angular-spreadsheet.umd.min.js +2 -2
- package/package.json +8 -8
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/styles/bootstrap-dark.css +13 -5
- package/styles/bootstrap.css +13 -5
- package/styles/bootstrap4.css +13 -5
- package/styles/bootstrap5-dark.css +36 -9
- package/styles/bootstrap5.css +36 -9
- package/styles/fabric-dark.css +13 -5
- package/styles/fabric.css +13 -5
- package/styles/fluent-dark.css +5504 -0
- package/styles/fluent-dark.scss +2 -0
- package/styles/fluent.css +5504 -0
- package/styles/fluent.scss +2 -0
- package/styles/highcontrast-light.css +13 -5
- package/styles/highcontrast.css +13 -5
- package/styles/material-dark.css +13 -7
- package/styles/material.css +13 -7
- package/styles/ribbon/fluent-dark.css +218 -0
- package/styles/ribbon/fluent-dark.scss +1 -0
- package/styles/ribbon/fluent.css +218 -0
- package/styles/ribbon/fluent.scss +1 -0
- package/styles/ribbon/tailwind-dark.css +2 -2
- package/styles/ribbon/tailwind.css +2 -2
- package/styles/spreadsheet/bootstrap-dark.css +13 -5
- package/styles/spreadsheet/bootstrap.css +13 -5
- package/styles/spreadsheet/bootstrap4.css +13 -5
- package/styles/spreadsheet/bootstrap5-dark.css +36 -9
- package/styles/spreadsheet/bootstrap5.css +36 -9
- package/styles/spreadsheet/fabric-dark.css +13 -5
- package/styles/spreadsheet/fabric.css +13 -5
- package/styles/spreadsheet/fluent-dark.css +5285 -0
- package/styles/spreadsheet/fluent-dark.scss +1 -0
- package/styles/spreadsheet/fluent.css +5285 -0
- package/styles/spreadsheet/fluent.scss +1 -0
- package/styles/spreadsheet/highcontrast-light.css +13 -5
- package/styles/spreadsheet/highcontrast.css +13 -5
- package/styles/spreadsheet/material-dark.css +13 -7
- package/styles/spreadsheet/material.css +13 -7
- package/styles/spreadsheet/tailwind-dark.css +166 -213
- package/styles/spreadsheet/tailwind.css +166 -213
- package/styles/tailwind-dark.css +168 -215
- package/styles/tailwind.css +168 -215
package/styles/bootstrap5.css
CHANGED
|
@@ -95,6 +95,13 @@
|
|
|
95
95
|
color: #6c757d;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
+
.e-input-group.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
99
|
+
.e-input-group.e-control-wrapper.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
100
|
+
.e-float-input.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
101
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon {
|
|
102
|
+
background: #e9ecef;
|
|
103
|
+
}
|
|
104
|
+
|
|
98
105
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
99
106
|
.e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
|
|
100
107
|
.e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
|
|
@@ -863,6 +870,10 @@
|
|
|
863
870
|
width: 530px !important;
|
|
864
871
|
}
|
|
865
872
|
|
|
873
|
+
.e-spreadsheet .e-dlg-header-content {
|
|
874
|
+
padding: 12px;
|
|
875
|
+
}
|
|
876
|
+
|
|
866
877
|
.e-spreadsheet .e-unprotectworksheet-dlg {
|
|
867
878
|
left: 0 !important;
|
|
868
879
|
}
|
|
@@ -969,10 +980,18 @@
|
|
|
969
980
|
.e-spreadsheet .e-dlg-content .e-custom-dialog .e-input.e-dialog-input {
|
|
970
981
|
float: left;
|
|
971
982
|
margin-right: 4.8%;
|
|
972
|
-
margin-right: 2.8%;
|
|
973
983
|
width: 80%;
|
|
974
984
|
}
|
|
975
985
|
|
|
986
|
+
.e-spreadsheet .e-custom-format-dlg .e-footer-content {
|
|
987
|
+
padding: 0;
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
.e-spreadsheet .e-custom-format-dlg .e-dlg-content {
|
|
991
|
+
display: inline-table;
|
|
992
|
+
padding-top: 3px;
|
|
993
|
+
}
|
|
994
|
+
|
|
976
995
|
.e-spreadsheet .e-dlg-content .e-custom-dialog .e-custom-sample {
|
|
977
996
|
margin: 10px 10px 10px 0;
|
|
978
997
|
}
|
|
@@ -1356,8 +1375,8 @@
|
|
|
1356
1375
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1357
1376
|
background-color: #0d6efd;
|
|
1358
1377
|
cursor: ns-resize;
|
|
1359
|
-
left: 50%;
|
|
1360
1378
|
position: absolute;
|
|
1379
|
+
right: 50%;
|
|
1361
1380
|
top: 0;
|
|
1362
1381
|
transform: translate(-50%, -50%);
|
|
1363
1382
|
}
|
|
@@ -1374,8 +1393,8 @@
|
|
|
1374
1393
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1375
1394
|
background-color: #0d6efd;
|
|
1376
1395
|
cursor: ns-resize;
|
|
1377
|
-
left: 50%;
|
|
1378
1396
|
position: absolute;
|
|
1397
|
+
right: 50%;
|
|
1379
1398
|
top: 100%;
|
|
1380
1399
|
transform: translate(-50%, -50%);
|
|
1381
1400
|
}
|
|
@@ -2117,6 +2136,10 @@
|
|
|
2117
2136
|
text-align: left;
|
|
2118
2137
|
}
|
|
2119
2138
|
|
|
2139
|
+
.e-spreadsheet .e-customsort-dlg .e-dlg-header-content {
|
|
2140
|
+
padding: 12px;
|
|
2141
|
+
}
|
|
2142
|
+
|
|
2120
2143
|
.e-spreadsheet .e-customsort-dlg .e-dlg-content {
|
|
2121
2144
|
padding-bottom: 0;
|
|
2122
2145
|
padding-left: 0;
|
|
@@ -2165,7 +2188,10 @@
|
|
|
2165
2188
|
.e-spreadsheet .e-title-dlg .e-title-dlg-content .e-input {
|
|
2166
2189
|
font-size: 14px;
|
|
2167
2190
|
line-height: 30px;
|
|
2168
|
-
|
|
2191
|
+
}
|
|
2192
|
+
|
|
2193
|
+
.e-spreadsheet .e-datavalidation-dlg .e-dlg-header-content {
|
|
2194
|
+
padding: 12px;
|
|
2169
2195
|
}
|
|
2170
2196
|
|
|
2171
2197
|
.e-spreadsheet .e-datavalidation-dlg .e-validation-dlg {
|
|
@@ -2314,7 +2340,7 @@
|
|
|
2314
2340
|
|
|
2315
2341
|
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header,
|
|
2316
2342
|
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header {
|
|
2317
|
-
padding: 0
|
|
2343
|
+
padding: 0 12px;
|
|
2318
2344
|
}
|
|
2319
2345
|
|
|
2320
2346
|
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-tab-header .e-toolbar-items,
|
|
@@ -2336,12 +2362,12 @@
|
|
|
2336
2362
|
|
|
2337
2363
|
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content,
|
|
2338
2364
|
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content {
|
|
2339
|
-
padding-top:
|
|
2365
|
+
padding-top: 12px;
|
|
2340
2366
|
}
|
|
2341
2367
|
|
|
2342
2368
|
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont,
|
|
2343
2369
|
.e-spreadsheet .e-edithyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont {
|
|
2344
|
-
margin:
|
|
2370
|
+
margin: 12px 12px 15.5px;
|
|
2345
2371
|
}
|
|
2346
2372
|
|
|
2347
2373
|
.e-spreadsheet .e-hyperlink-dlg .e-dlg-content .e-link-dialog .e-content .e-cont .e-header,
|
|
@@ -2501,8 +2527,9 @@
|
|
|
2501
2527
|
bottom: 0;
|
|
2502
2528
|
float: right;
|
|
2503
2529
|
height: 18px;
|
|
2530
|
+
margin-right: -1px;
|
|
2504
2531
|
padding: 0;
|
|
2505
|
-
position:
|
|
2532
|
+
position: relative;
|
|
2506
2533
|
right: 0;
|
|
2507
2534
|
width: 20px;
|
|
2508
2535
|
z-index: 2;
|
|
@@ -3317,7 +3344,7 @@
|
|
|
3317
3344
|
}
|
|
3318
3345
|
|
|
3319
3346
|
.e-spreadsheet-function-dlg .e-dlg-header-content {
|
|
3320
|
-
padding:
|
|
3347
|
+
padding: 12px;
|
|
3321
3348
|
}
|
|
3322
3349
|
|
|
3323
3350
|
.e-spreadsheet-function-dlg .e-dlg-header-content .e-dlg-header {
|
package/styles/fabric-dark.css
CHANGED
|
@@ -900,10 +900,18 @@
|
|
|
900
900
|
.e-spreadsheet .e-dlg-content .e-custom-dialog .e-input.e-dialog-input {
|
|
901
901
|
float: left;
|
|
902
902
|
margin-right: 2.8%;
|
|
903
|
-
margin-right: 2.8%;
|
|
904
903
|
width: 80%;
|
|
905
904
|
}
|
|
906
905
|
|
|
906
|
+
.e-spreadsheet .e-custom-format-dlg .e-footer-content {
|
|
907
|
+
padding: 0;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
.e-spreadsheet .e-custom-format-dlg .e-dlg-content {
|
|
911
|
+
display: inline-table;
|
|
912
|
+
padding-top: 3px;
|
|
913
|
+
}
|
|
914
|
+
|
|
907
915
|
.e-spreadsheet .e-dlg-content .e-custom-dialog .e-custom-sample {
|
|
908
916
|
margin: 10px 10px 10px 0;
|
|
909
917
|
}
|
|
@@ -1287,8 +1295,8 @@
|
|
|
1287
1295
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1288
1296
|
background-color: #0074cc;
|
|
1289
1297
|
cursor: ns-resize;
|
|
1290
|
-
left: 50%;
|
|
1291
1298
|
position: absolute;
|
|
1299
|
+
right: 50%;
|
|
1292
1300
|
top: 0;
|
|
1293
1301
|
transform: translate(-50%, -50%);
|
|
1294
1302
|
}
|
|
@@ -1305,8 +1313,8 @@
|
|
|
1305
1313
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1306
1314
|
background-color: #0074cc;
|
|
1307
1315
|
cursor: ns-resize;
|
|
1308
|
-
left: 50%;
|
|
1309
1316
|
position: absolute;
|
|
1317
|
+
right: 50%;
|
|
1310
1318
|
top: 100%;
|
|
1311
1319
|
transform: translate(-50%, -50%);
|
|
1312
1320
|
}
|
|
@@ -2105,7 +2113,6 @@
|
|
|
2105
2113
|
.e-spreadsheet .e-title-dlg .e-title-dlg-content .e-input {
|
|
2106
2114
|
font-size: 14px;
|
|
2107
2115
|
line-height: 30px;
|
|
2108
|
-
padding-top: 10px;
|
|
2109
2116
|
}
|
|
2110
2117
|
|
|
2111
2118
|
.e-spreadsheet .e-datavalidation-dlg .e-validation-dlg {
|
|
@@ -2441,8 +2448,9 @@
|
|
|
2441
2448
|
bottom: 0;
|
|
2442
2449
|
float: right;
|
|
2443
2450
|
height: 18px;
|
|
2451
|
+
margin-right: -1px;
|
|
2444
2452
|
padding: 0;
|
|
2445
|
-
position:
|
|
2453
|
+
position: relative;
|
|
2446
2454
|
right: 0;
|
|
2447
2455
|
width: 20px;
|
|
2448
2456
|
z-index: 2;
|
package/styles/fabric.css
CHANGED
|
@@ -903,10 +903,18 @@
|
|
|
903
903
|
.e-spreadsheet .e-dlg-content .e-custom-dialog .e-input.e-dialog-input {
|
|
904
904
|
float: left;
|
|
905
905
|
margin-right: 2.8%;
|
|
906
|
-
margin-right: 2.8%;
|
|
907
906
|
width: 80%;
|
|
908
907
|
}
|
|
909
908
|
|
|
909
|
+
.e-spreadsheet .e-custom-format-dlg .e-footer-content {
|
|
910
|
+
padding: 0;
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
.e-spreadsheet .e-custom-format-dlg .e-dlg-content {
|
|
914
|
+
display: inline-table;
|
|
915
|
+
padding-top: 3px;
|
|
916
|
+
}
|
|
917
|
+
|
|
910
918
|
.e-spreadsheet .e-dlg-content .e-custom-dialog .e-custom-sample {
|
|
911
919
|
margin: 10px 10px 10px 0;
|
|
912
920
|
}
|
|
@@ -1290,8 +1298,8 @@
|
|
|
1290
1298
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-t {
|
|
1291
1299
|
background-color: #0078d6;
|
|
1292
1300
|
cursor: ns-resize;
|
|
1293
|
-
left: 50%;
|
|
1294
1301
|
position: absolute;
|
|
1302
|
+
right: 50%;
|
|
1295
1303
|
top: 0;
|
|
1296
1304
|
transform: translate(-50%, -50%);
|
|
1297
1305
|
}
|
|
@@ -1308,8 +1316,8 @@
|
|
|
1308
1316
|
.e-spreadsheet .e-sheet .e-ss-overlay-active .e-ss-overlay-b {
|
|
1309
1317
|
background-color: #0078d6;
|
|
1310
1318
|
cursor: ns-resize;
|
|
1311
|
-
left: 50%;
|
|
1312
1319
|
position: absolute;
|
|
1320
|
+
right: 50%;
|
|
1313
1321
|
top: 100%;
|
|
1314
1322
|
transform: translate(-50%, -50%);
|
|
1315
1323
|
}
|
|
@@ -2115,7 +2123,6 @@
|
|
|
2115
2123
|
.e-spreadsheet .e-title-dlg .e-title-dlg-content .e-input {
|
|
2116
2124
|
font-size: 14px;
|
|
2117
2125
|
line-height: 30px;
|
|
2118
|
-
padding-top: 10px;
|
|
2119
2126
|
}
|
|
2120
2127
|
|
|
2121
2128
|
.e-spreadsheet .e-datavalidation-dlg .e-validation-dlg {
|
|
@@ -2451,8 +2458,9 @@
|
|
|
2451
2458
|
bottom: 0;
|
|
2452
2459
|
float: right;
|
|
2453
2460
|
height: 18px;
|
|
2461
|
+
margin-right: -1px;
|
|
2454
2462
|
padding: 0;
|
|
2455
|
-
position:
|
|
2463
|
+
position: relative;
|
|
2456
2464
|
right: 0;
|
|
2457
2465
|
width: 20px;
|
|
2458
2466
|
z-index: 2;
|