gridjs-spreadsheet 26.3.0 → 26.4.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/{04b2e68c4fe0eea3f5308869edc690fd.svg → a08275ef8caf83cc1c2eae91f17663e8.svg} +11 -0
- package/example/.mvn/wrapper/maven-wrapper.properties +18 -0
- package/example/pom.xml +8 -8
- package/example/src/main/resources/application.properties +1 -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 +8 -5
- package/xspreadsheet.css +5 -1
- package/xspreadsheet.js +5 -5
- package/example/.classpath +0 -41
- package/example/.project +0 -23
- package/example/wb/studenttop.xlsx +0 -0
|
@@ -1076,4 +1076,15 @@
|
|
|
1076
1076
|
|
|
1077
1077
|
<g id="redactionViewSwitch" transform="matrix(0.3833,0,0,0.3833,90,126)"><rect x="8" y="8" width="36" height="36" fill="none" stroke="#4A90E2" stroke-width="2" stroke-dasharray="4 2"/><path d="M18,27 C18,21 36,21 36,27 C36,33 18,33 18,27 Z" fill="none" stroke="#4A90E2" stroke-width="2" stroke-linecap="round"/><circle cx="27" cy="27" r="5" fill="#4A90E2"/></g>
|
|
1078
1078
|
|
|
1079
|
+
<g id="deleteRedaction" transform="matrix(0.3333,0,0,0.3333,108,126)">
|
|
1080
|
+
<!-- Trash can lid -->
|
|
1081
|
+
<rect x="14" y="16" width="26" height="4" fill="none" stroke="#000000" stroke-width="2"/>
|
|
1082
|
+
<!-- Trash can handle -->
|
|
1083
|
+
<rect x="23" y="12" width="8" height="2" fill="none" stroke="#000000" stroke-width="2"/>
|
|
1084
|
+
<!-- Trash can body -->
|
|
1085
|
+
<rect x="16" y="20" width="22" height="26" fill="none" stroke="#000000" stroke-width="2"/>
|
|
1086
|
+
<!-- Redaction X -->
|
|
1087
|
+
<line x1="12" y1="12" x2="42" y2="42" stroke="#FF0000" stroke-width="4" stroke-linecap="round"/>
|
|
1088
|
+
<line x1="42" y1="12" x2="12" y2="42" stroke="#FF0000" stroke-width="4" stroke-linecap="round"/>
|
|
1089
|
+
</g>
|
|
1079
1090
|
</svg>
|
|
@@ -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>26.
|
|
20
|
+
<version>26.4</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>26.
|
|
55
|
-
</dependency>
|
|
56
|
-
|
|
54
|
+
<version>26.4</version>
|
|
55
|
+
</dependency>
|
|
56
|
+
<dependency>
|
|
57
57
|
<groupId>com.aspose</groupId>
|
|
58
58
|
<artifactId>aspose-cells</artifactId>
|
|
59
|
-
<version>26.
|
|
59
|
+
<version>26.4</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>
|
|
@@ -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
|
|