gridjs-spreadsheet 25.8.0 → 25.10.0
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/{113a871731ce1f8a28d02ff60e8d9478.svg → d8a61c22046be134a6e067e41bcf53b5.svg} +1007 -914
- package/example/.mvn/wrapper/maven-wrapper.properties +18 -0
- package/example/pom.xml +8 -8
- package/example/src/main/resources/application.properties +3 -7
- package/example/src/main/resources/static/xspread/content/img/20130527034914143.gif +0 -0
- package/example/src/main/resources/static/xspread/content/img/20130527034914229.gif +0 -0
- package/example/src/main/resources/static/xspread/content/img/20130527034916363.gif +0 -0
- package/example/src/main/resources/static/xspread/content/img/20130527034917946.gif +0 -0
- package/example/src/main/resources/static/xspread/content/img/20130527034918372.gif +0 -0
- package/example/src/main/resources/templates/fileFromUpload.html +17 -18
- package/example/src/main/resources/templates/index.html +1 -1
- package/example/src/test/java/com/aspose/gridjs/demo/GridjsdemoApplicationTests.java +1441 -0
- package/package.json +1 -1
- package/preview.gif +0 -0
- package/readme.md +16 -7
- package/xspreadsheet.css +149 -3
- package/xspreadsheet.js +5 -5
- package/9ab1b217edd126e8925e88cc8f25a154.svg +0 -88
- package/example/.classpath +0 -41
- package/example/.project +0 -23
- package/example/src/main/resources/static/xspread/a3b683289420fd8ec937908397907279.svg +0 -907
- package/example/wb/studenttop.xlsx +0 -0
- /package/{example/src/main/resources/static/xspread/555f60323063f2b68b6eac7ce9c45b19.svg → 555f60323063f2b68b6eac7ce9c45b19.svg} +0 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
|
2
|
+
# or more contributor license agreements. See the NOTICE file
|
|
3
|
+
# distributed with this work for additional information
|
|
4
|
+
# regarding copyright ownership. The ASF licenses this file
|
|
5
|
+
# to you under the Apache License, Version 2.0 (the
|
|
6
|
+
# "License"); you may not use this file except in compliance
|
|
7
|
+
# with the License. You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
|
12
|
+
# software distributed under the License is distributed on an
|
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
# KIND, either express or implied. See the License for the
|
|
15
|
+
# specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
17
|
+
wrapperVersion=3.3.1
|
|
18
|
+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip
|
package/example/pom.xml
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
</repositories>
|
|
18
18
|
<groupId>com.aspose.gridjs</groupId>
|
|
19
19
|
<artifactId>gridjsdemo</artifactId>
|
|
20
|
-
<version>
|
|
20
|
+
<version>25.10</version>
|
|
21
21
|
<name>gridjsdemo</name>
|
|
22
22
|
<description>GridJs Demo project for Spring Boot</description>
|
|
23
23
|
<properties>
|
|
@@ -48,17 +48,17 @@
|
|
|
48
48
|
<artifactId>gson</artifactId>
|
|
49
49
|
<version>2.9.0</version> <!-- 使用你需要的Gson版本 -->
|
|
50
50
|
</dependency>
|
|
51
|
-
|
|
51
|
+
<dependency>
|
|
52
52
|
<groupId>com.aspose</groupId>
|
|
53
53
|
<artifactId>aspose-cells</artifactId>
|
|
54
|
-
<version>25.
|
|
55
|
-
</dependency>
|
|
56
|
-
|
|
54
|
+
<version>25.10</version>
|
|
55
|
+
</dependency>
|
|
56
|
+
<dependency>
|
|
57
57
|
<groupId>com.aspose</groupId>
|
|
58
58
|
<artifactId>aspose-cells</artifactId>
|
|
59
|
-
<version>25.
|
|
59
|
+
<version>25.10</version>
|
|
60
60
|
<classifier>gridjs</classifier>
|
|
61
|
-
</dependency>
|
|
61
|
+
</dependency>
|
|
62
62
|
<!-- <dependency>
|
|
63
63
|
<groupId>org.springframework.boot</groupId>
|
|
64
64
|
<artifactId>spring-boot-docker-compose</artifactId>
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
<groupId>org.springframework.boot</groupId>
|
|
75
75
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
76
76
|
<scope>test</scope>
|
|
77
|
-
|
|
77
|
+
</dependency>
|
|
78
78
|
</dependencies>
|
|
79
79
|
|
|
80
80
|
<build>
|
|
@@ -2,16 +2,12 @@ spring.application.name=gridjsdemo
|
|
|
2
2
|
spring.servlet.multipart.enabled=true
|
|
3
3
|
spring.servlet.multipart.max-file-size=10MB
|
|
4
4
|
spring.servlet.multipart.max-request-size=10MB
|
|
5
|
-
#for local test
|
|
6
5
|
#testconfig.ListDir=D:\\codebase\\customerissue\\wb\\tempfromdownload\\
|
|
7
|
-
#
|
|
8
|
-
#testconfig.CachePath=F:\\storage\\gridjs_temp
|
|
9
|
-
#testconfig.UploadPath=F:\\storage\\upload
|
|
10
|
-
#testconfig.AsposeLicensePath=F:\\aspose.lic
|
|
11
|
-
#for docker linux
|
|
6
|
+
#for linux
|
|
12
7
|
testconfig.ListDir=/app/wb
|
|
13
|
-
testconfig.FileName=
|
|
8
|
+
testconfig.FileName=chart.xlsx
|
|
14
9
|
testconfig.CachePath=/app/grid_cache
|
|
15
10
|
testconfig.UploadPath=/app/upload
|
|
16
11
|
testconfig.AsposeLicensePath=/app/license
|
|
12
|
+
|
|
17
13
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -5,24 +5,23 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width" />
|
|
6
6
|
<title>gridjs-web-demo</title>
|
|
7
7
|
|
|
8
|
-
<style>
|
|
9
|
-
::-webkit-scrollbar, ::-webkit-scrollbar-button {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
::-webkit-scrollbar-track {
|
|
15
|
-
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
|
|
16
|
-
border-radius: 10px;
|
|
17
|
-
background-color: #FFF;
|
|
18
|
-
}
|
|
8
|
+
<style>
|
|
9
|
+
::-webkit-scrollbar, ::-webkit-scrollbar-button {
|
|
10
|
+
width: 8px;
|
|
11
|
+
height: 8px;
|
|
12
|
+
}
|
|
19
13
|
|
|
20
|
-
::-webkit-scrollbar-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}
|
|
14
|
+
::-webkit-scrollbar-track {
|
|
15
|
+
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
|
16
|
+
border-radius: 10px;
|
|
17
|
+
background-color: #FFF;
|
|
18
|
+
}
|
|
25
19
|
|
|
20
|
+
::-webkit-scrollbar-thumb {
|
|
21
|
+
border-radius: 10px;
|
|
22
|
+
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
|
|
23
|
+
background-color: #AAA;
|
|
24
|
+
}
|
|
26
25
|
html, body {
|
|
27
26
|
margin: 0;
|
|
28
27
|
padding: 0;
|
|
@@ -43,8 +42,8 @@ html, body {
|
|
|
43
42
|
height: 100%;
|
|
44
43
|
object-fit: contain; /* 对于图像或视频很有用 */
|
|
45
44
|
}
|
|
46
|
-
</style>
|
|
47
|
-
<!--<link rel="stylesheet" href="./quantumui.min.22.5.5.2.css?v=20220312" />-->
|
|
45
|
+
</style>
|
|
46
|
+
<!--<link rel="stylesheet" href="./quantumui.min.22.5.5.2.css?v=20220312" />-->
|
|
48
47
|
<link rel="stylesheet" href="/xspread/bootstrap.min.22.5.5.2.css?v=20220315" />
|
|
49
48
|
<script src="/xspread/jquery-2.1.1.js"></script>
|
|
50
49
|
<link rel="stylesheet" href="/xspread/jquery-ui.min.css" />
|
|
@@ -52,7 +52,7 @@ html, body {
|
|
|
52
52
|
<!-- <script src="vconsole.min.js"></script> -->
|
|
53
53
|
<!--for local reference-->
|
|
54
54
|
<!--
|
|
55
|
-
|
|
55
|
+
<link rel="stylesheet" href="/xspread/xspreadsheet.css?v=20230525" />
|
|
56
56
|
<script src="/xspread/xspreadsheet.js?v=20230525"></script>
|
|
57
57
|
-->
|
|
58
58
|
|