gridjs-spreadsheet 24.9.1 → 24.10.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/package.json +2 -1
- package/package.json.bak +2 -1
- package/readme.md +2 -2
- package/readme.md.bak +6 -10
- package/xspreadsheet.css +4 -0
- package/xspreadsheet.js +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gridjs-spreadsheet",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.10.1",
|
|
4
4
|
"description": "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 based on JSON format.",
|
|
5
5
|
"types": "index.d.ts",
|
|
6
6
|
"main": "xspreadsheet.js",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"PPTX",
|
|
29
29
|
"MHTML",
|
|
30
30
|
"SVG",
|
|
31
|
+
"CHM",
|
|
31
32
|
"JSON",
|
|
32
33
|
"SQL",
|
|
33
34
|
"XML",
|
package/package.json.bak
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gridjs-spreadsheet",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.10.0",
|
|
4
4
|
"description": "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 based on JSON format.",
|
|
5
5
|
"types": "index.d.ts",
|
|
6
6
|
"main": "xspreadsheet.js",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"PPTX",
|
|
29
29
|
"MHTML",
|
|
30
30
|
"SVG",
|
|
31
|
+
"CHM",
|
|
31
32
|
"JSON",
|
|
32
33
|
"SQL",
|
|
33
34
|
"XML",
|
package/readme.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# gridjs-spreadsheet
|
|
2
2
|
|
|
3
|
-
>
|
|
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
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
## Document
|
|
8
|
-
It allows you to view and edit spreadsheet
|
|
8
|
+
It allows you to view and edit spreadsheet files with ease.
|
|
9
9
|
|
|
10
10
|
this is developed based on https://github.com/myliang/x-spreadsheet
|
|
11
11
|
|
package/readme.md.bak
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# gridjs-spreadsheet
|
|
2
2
|
|
|
3
|
-
>
|
|
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
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
## Document
|
|
8
|
-
It allows you to view and edit spreadsheet
|
|
8
|
+
It allows you to view and edit spreadsheet files with ease.
|
|
9
9
|
|
|
10
10
|
this is developed based on https://github.com/myliang/x-spreadsheet
|
|
11
11
|
|
|
@@ -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.
|
|
26
|
-
<script src="https://unpkg.com/gridjs-spreadsheet@24.
|
|
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>
|
|
27
27
|
|
|
28
28
|
<script>
|
|
29
29
|
const option = {
|
|
@@ -219,12 +219,8 @@ 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
|
|
223
|
-
- [API Reference
|
|
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/)
|
|
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/)
|
|
228
224
|
|
|
229
225
|
## Browser Support
|
|
230
226
|
|
package/xspreadsheet.css
CHANGED
|
@@ -1792,6 +1792,10 @@ form fieldset select {
|
|
|
1792
1792
|
transition: background-color 0.3s;
|
|
1793
1793
|
font-size: 16px;
|
|
1794
1794
|
}
|
|
1795
|
+
input[type=number]::-webkit-inner-spin-button,
|
|
1796
|
+
input[type=number]::-webkit-outer-spin-button {
|
|
1797
|
+
opacity: 1;
|
|
1798
|
+
}
|
|
1795
1799
|
/* Tab button when active */
|
|
1796
1800
|
.x-spreadsheet-modal-component-tab-button.active {
|
|
1797
1801
|
background-color: #ffffff;
|