gridjs-spreadsheet 24.8.0 → 24.9.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/readme.md.bak CHANGED
@@ -1,6 +1,6 @@
1
1
  # gridjs-spreadsheet
2
2
 
3
- > this is the client side script for gridjs which is a lightweight, scalable, and customizable toolkit that provides cross-platform web applications, enables convenient development for editing or viewing Excel/Spreadsheet files, offers simple deployment, and provides easy-to-use APIs
3
+ > A smart and simple to use WYSIWYG Excel-like JavaScript Canvas based Spreadsheet library allows you to view and edit spreadsheet file with ease and quick
4
4
 
5
5
 
6
6
 
@@ -22,8 +22,8 @@
22
22
  <script src="https://unpkg.com/jquery-ui@1.13.2/dist/jquery-ui.min.js"></script>
23
23
  <script src="https://unpkg.com/jszip@3.10.1/dist/jszip.min.js"></script>
24
24
  <!-- other dependency end -->
25
- <link rel="stylesheet" href="https://unpkg.com/gridjs-spreadsheet@24.1.0/xspreadsheet.css">
26
- <script src="https://unpkg.com/gridjs-spreadsheet@24.1.0/xspreadsheet.js"></script>
25
+ <link rel="stylesheet" href="https://unpkg.com/gridjs-spreadsheet@24.9.0/xspreadsheet.css">
26
+ <script src="https://unpkg.com/gridjs-spreadsheet@24.9.0/xspreadsheet.js"></script>
27
27
 
28
28
  <script>
29
29
  const option = {
@@ -219,8 +219,12 @@ You can ask any question using the [Forum](https://forum.aspose.com/c/cells).
219
219
 
220
220
  ## Documentation
221
221
  Online documentation is available here:
222
- - [Developer's Guide](https://docs.aspose.com/cells/net/aspose-cells-gridjs/)
223
- - [API Reference](https://docs.aspose.com/cells/net/aspose-cells-gridjs/client/)
222
+ - [Developer's Guide C#](https://docs.aspose.com/cells/net/aspose-cells-gridjs/)
223
+ - [API Reference C#](https://docs.aspose.com/cells/net/aspose-cells-gridjs/client/)
224
+ - [Developer's Guide Python](https://docs.aspose.com/cells/python-net/aspose-cells-gridjs/)
225
+ - [API Reference Python](https://docs.aspose.com/cells/python-net/aspose-cells-gridjs/client/)
226
+ - [Developer's Guide JAVA](https://docs.aspose.com/cells/java/aspose-cells-gridjs/)
227
+ - [API Reference JAVA](https://docs.aspose.com/cells/java/aspose-cells-gridjs/client/)
224
228
 
225
229
  ## Browser Support
226
230
 
package/xspreadsheet.css CHANGED
@@ -69,6 +69,32 @@ body {
69
69
  z-index: 1;
70
70
  box-shadow: 1px 1px 3px -1px rgba(255, 255, 0, 0.3);
71
71
  }
72
+ .x-spreadsheet-formula-explain {
73
+ font-family: inherit;
74
+ position: absolute;
75
+ padding: 5px 10px;
76
+ color: #fff;
77
+ border-radius: 1px;
78
+ background: #FFF8DC;
79
+ opacity: 0.7;
80
+ font-size: 12px;
81
+ z-index: 201;
82
+ max-width: 300px;
83
+ }
84
+ .x-spreadsheet-formula-explain:before {
85
+ pointer-events: none;
86
+ position: absolute;
87
+ left: -4px;
88
+ top: calc(50% - 4px);
89
+ content: "";
90
+ width: 8px;
91
+ height: 8px;
92
+ background: inherit;
93
+ -webkit-transform: rotate(45deg);
94
+ transform: rotate(45deg);
95
+ z-index: 1;
96
+ box-shadow: 1px 1px 3px -1px rgba(255, 255, 0, 0.3);
97
+ }
72
98
  .x-spreadsheet-color-palette {
73
99
  padding: 5px;
74
100
  }
@@ -881,6 +907,33 @@ body {
881
907
  z-index: 10;
882
908
  width: auto;
883
909
  }
910
+ .x-spreadsheet-timepicker {
911
+ position: absolute;
912
+ z-index: 1000;
913
+ background-color: #fff;
914
+ border: 1px solid #ccc;
915
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
916
+ border-radius: 4px;
917
+ display: none;
918
+ }
919
+ .x-spreadsheet-timepicker select {
920
+ padding: 5px 10px;
921
+ border: 1px solid #ddd;
922
+ background-color: #f8f8f8;
923
+ cursor: pointer;
924
+ }
925
+ .x-spreadsheet-timepicker-hours,
926
+ .x-spreadsheet-timepicker-minutes,
927
+ .x-spreadsheet-timepicker-seconds {
928
+ display: inline-block;
929
+ }
930
+ .x-spreadsheet-timepicker select:focus {
931
+ border-color: #105efb;
932
+ outline: none;
933
+ }
934
+ .x-spreadsheet-timepicker select:hover {
935
+ background-color: #e1e1e1;
936
+ }
884
937
  .x-spreadsheet-buttons {
885
938
  display: flex;
886
939
  justify-content: flex-end;
@@ -1197,7 +1250,7 @@ form fieldset select {
1197
1250
  display: inline-block;
1198
1251
  }
1199
1252
  .x-spreadsheet-icon .x-spreadsheet-icon-img {
1200
- background-image: url(92a25d00d3c48133d57c1b98d48a688e.svg);
1253
+ background-image: url(a3b683289420fd8ec937908397907279.svg);
1201
1254
  position: absolute;
1202
1255
  width: 262px;
1203
1256
  height: 444px;
@@ -1279,6 +1332,14 @@ form fieldset select {
1279
1332
  left: -72px;
1280
1333
  top: -18px;
1281
1334
  }
1335
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.syntaxstatus {
1336
+ left: -18px;
1337
+ top: -108px;
1338
+ }
1339
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.showformulas {
1340
+ left: -36px;
1341
+ top: -108px;
1342
+ }
1282
1343
  .x-spreadsheet-icon .x-spreadsheet-icon-img.autofilter {
1283
1344
  left: -90px;
1284
1345
  top: -18px;
@@ -1531,6 +1592,10 @@ form fieldset select {
1531
1592
  left: -234px;
1532
1593
  top: -90px;
1533
1594
  }
1595
+ .x-spreadsheet-icon .x-spreadsheet-icon-img.openFile {
1596
+ left: 0px;
1597
+ top: -108px;
1598
+ }
1534
1599
  .x-spreadsheet-formula-bar {
1535
1600
  height: 25px;
1536
1601
  line-height: 25px;
@@ -1582,6 +1647,12 @@ form fieldset select {
1582
1647
  height: 50%;
1583
1648
  overflow: hidden;
1584
1649
  }
1650
+ @media screen and (max-width: 480px) {
1651
+ .x-spreadsheet-modal-component {
1652
+ width: 90% !important;
1653
+ height: 70%;
1654
+ }
1655
+ }
1585
1656
  .x-spreadsheet-modal-component:focus {
1586
1657
  outline: none;
1587
1658
  }