spire.officejs-spreadsheet-test 1.0.2
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 +11 -0
- package/index.d.ts +7 -0
- package/index.js +2 -0
- package/package copy.json +10 -0
- package/package.json +10 -0
- package/spireexcel/WebAssembly/Spire.Xls.Base.js +111813 -0
- package/spireexcel/WebAssembly/Spire.Xls.Base.wasm +0 -0
- package/spireexcel/api-all-min.js +1322 -0
- package/spireexcel/api-all.js +12880 -0
- package/spireexcel/css/main-mobile.css +120 -0
- package/spireexcel/css/main.css +157 -0
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
/* Copyright(c) e-iceblue Inc. 2007 - 2020 */
|
|
2
|
+
@charset "UTF-8";
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
#ws-canvas-outer {
|
|
6
|
+
position: absolute;
|
|
7
|
+
left: 0;
|
|
8
|
+
top: 0;
|
|
9
|
+
right: 0;
|
|
10
|
+
bottom: 0;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
#ws-canvas {
|
|
14
|
+
border: 0;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
#ws-canvas-overlay, #ws-canvas-graphic, #ws-canvas-graphic-overlay {
|
|
18
|
+
border: 0;
|
|
19
|
+
position: absolute;
|
|
20
|
+
left: 0;
|
|
21
|
+
top: 0;
|
|
22
|
+
z-index: 1;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/*
|
|
26
|
+
* Worksheet scroll bars
|
|
27
|
+
* --------------------------------------------------------
|
|
28
|
+
*/
|
|
29
|
+
|
|
30
|
+
#ws-v-scrollbar {
|
|
31
|
+
position: absolute;
|
|
32
|
+
right: 0;
|
|
33
|
+
width: 19px;
|
|
34
|
+
top: -1px;
|
|
35
|
+
bottom: 18px;
|
|
36
|
+
overflow: hidden;
|
|
37
|
+
z-index: 10;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
#ws-v-scroll-helper {
|
|
41
|
+
width: 1px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
#ws-h-scrollbar {
|
|
45
|
+
position: absolute;
|
|
46
|
+
bottom: 0;
|
|
47
|
+
height: 19px;
|
|
48
|
+
left: 0;
|
|
49
|
+
right: 18px;
|
|
50
|
+
overflow: hidden;
|
|
51
|
+
z-index: 10;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
#ws-h-scroll-helper {
|
|
55
|
+
height: 1px;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
#ws-scrollbar-corner {
|
|
59
|
+
position: absolute;
|
|
60
|
+
right: 0;
|
|
61
|
+
bottom: 0;
|
|
62
|
+
width: 18px;
|
|
63
|
+
height: 18px;
|
|
64
|
+
background-color: #DCE2E8;
|
|
65
|
+
border: 0;
|
|
66
|
+
z-index: 10;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/* Scrollbars common */
|
|
70
|
+
|
|
71
|
+
#ws-v-scrollbar .jspVerticalBar,
|
|
72
|
+
#ws-h-scrollbar .jspHorizontalBar,
|
|
73
|
+
#ws-v-scrollbar .jspTrack,
|
|
74
|
+
#ws-h-scrollbar .jspTrack {
|
|
75
|
+
background-color: #DCE2E8;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
#ws-v-scrollbar .jspDrag,
|
|
79
|
+
#ws-h-scrollbar .jspDrag {
|
|
80
|
+
background-color: #C0C0C0;
|
|
81
|
+
}
|
|
82
|
+
#ws-v-scrollbar .jspDrag.jspHover,
|
|
83
|
+
#ws-v-scrollbar .jspDrag.jspActive,
|
|
84
|
+
#ws-h-scrollbar .jspDrag.jspHover,
|
|
85
|
+
#ws-h-scrollbar .jspDrag.jspActive {
|
|
86
|
+
background-color: #808080;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/* Vertical scrollbar */
|
|
90
|
+
|
|
91
|
+
#ws-v-scrollbar .jspVerticalBar {
|
|
92
|
+
width: 7px;
|
|
93
|
+
border-left: 1px solid #C1C6CC;
|
|
94
|
+
}
|
|
95
|
+
#ws-v-scrollbar .jspTrack {
|
|
96
|
+
width: 8px;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
/* Horizontal scrollbar */
|
|
100
|
+
|
|
101
|
+
#ws-h-scrollbar .jspHorizontalBar {
|
|
102
|
+
height: 7px;
|
|
103
|
+
border-top: 1px solid #C1C6CC;
|
|
104
|
+
}
|
|
105
|
+
#ws-h-scrollbar .jspTrack {
|
|
106
|
+
height: 8px;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/*
|
|
110
|
+
* Cell editor
|
|
111
|
+
* --------------------------------------------------------
|
|
112
|
+
*/
|
|
113
|
+
#ce-cursor,
|
|
114
|
+
#ce-cursor-menu {
|
|
115
|
+
position: absolute;
|
|
116
|
+
background-color: #000;
|
|
117
|
+
width: 1px;
|
|
118
|
+
height: 11pt;
|
|
119
|
+
cursor: text;
|
|
120
|
+
}
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
/* Copyright(c) e-iceblue Inc. 2007 - 2020 */
|
|
2
|
+
@charset "UTF-8";
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
#ws-canvas-outer {
|
|
6
|
+
position: absolute;
|
|
7
|
+
left: 0;
|
|
8
|
+
top: 0;
|
|
9
|
+
right: 14px;
|
|
10
|
+
bottom: 14px;
|
|
11
|
+
overflow: hidden;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
#ws-canvas {
|
|
15
|
+
border: 0;
|
|
16
|
+
-webkit-user-select: none;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
#ws-canvas-overlay, #ws-canvas-graphic, #ws-canvas-graphic-overlay {
|
|
20
|
+
-webkit-user-select: none;
|
|
21
|
+
border: 0;
|
|
22
|
+
position: absolute;
|
|
23
|
+
left: 0;
|
|
24
|
+
top: 0;
|
|
25
|
+
z-index: 1;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
/*
|
|
29
|
+
* Worksheet scroll bars
|
|
30
|
+
* --------------------------------------------------------
|
|
31
|
+
*/
|
|
32
|
+
|
|
33
|
+
#ws-v-scrollbar {
|
|
34
|
+
position: absolute;
|
|
35
|
+
right: 0;
|
|
36
|
+
width: 14px;
|
|
37
|
+
top: 0px;
|
|
38
|
+
bottom: 14px;
|
|
39
|
+
overflow: hidden;
|
|
40
|
+
z-index: 10;
|
|
41
|
+
background-color: #f1f1f1;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
#ws-v-scroll-helper {
|
|
45
|
+
width: 1px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
#ws-h-scrollbar {
|
|
49
|
+
position: absolute;
|
|
50
|
+
bottom: 0;
|
|
51
|
+
height: 14px;
|
|
52
|
+
left: 0px;
|
|
53
|
+
right: 14px;
|
|
54
|
+
overflow: hidden;
|
|
55
|
+
z-index: 10;
|
|
56
|
+
background-color: #f1f1f1;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
#ws-h-scroll-helper {
|
|
60
|
+
height: 1px;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
#ws-scrollbar-corner {
|
|
64
|
+
position: absolute;
|
|
65
|
+
right: 0;
|
|
66
|
+
bottom: 0;
|
|
67
|
+
width: 14px;
|
|
68
|
+
height: 14px;
|
|
69
|
+
background-color: #F4F4F4;
|
|
70
|
+
border: 0;
|
|
71
|
+
z-index: 10;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/* Scrollbars common */
|
|
75
|
+
|
|
76
|
+
#ws-v-scrollbar .jspVerticalBar,
|
|
77
|
+
#ws-h-scrollbar .jspHorizontalBar,
|
|
78
|
+
#ws-v-scrollbar .jspTrack,
|
|
79
|
+
#ws-h-scrollbar .jspTrack {
|
|
80
|
+
background-color: #DCE2E8;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
#ws-v-scrollbar .jspDrag,
|
|
84
|
+
#ws-h-scrollbar .jspDrag {
|
|
85
|
+
background-color: #C0C0C0;
|
|
86
|
+
}
|
|
87
|
+
#ws-v-scrollbar .jspDrag.jspHover,
|
|
88
|
+
#ws-v-scrollbar .jspDrag.jspActive,
|
|
89
|
+
#ws-h-scrollbar .jspDrag.jspHover,
|
|
90
|
+
#ws-h-scrollbar .jspDrag.jspActive {
|
|
91
|
+
background-color: #808080;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/* Vertical scrollbar */
|
|
95
|
+
|
|
96
|
+
#ws-v-scrollbar .jspVerticalBar {
|
|
97
|
+
width: 7px;
|
|
98
|
+
border-left: 1px solid #C1C6CC;
|
|
99
|
+
}
|
|
100
|
+
#ws-v-scrollbar .jspTrack {
|
|
101
|
+
width: 8px;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/* Horizontal scrollbar */
|
|
105
|
+
|
|
106
|
+
#ws-h-scrollbar .jspHorizontalBar {
|
|
107
|
+
height: 7px;
|
|
108
|
+
border-top: 1px solid #C1C6CC;
|
|
109
|
+
}
|
|
110
|
+
#ws-h-scrollbar .jspTrack {
|
|
111
|
+
height: 8px;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/*
|
|
115
|
+
* Cell editor
|
|
116
|
+
* --------------------------------------------------------
|
|
117
|
+
*/
|
|
118
|
+
|
|
119
|
+
#ce-canvas-outer,
|
|
120
|
+
#ce-canvas-outer-menu {
|
|
121
|
+
position: absolute;
|
|
122
|
+
border: 0;
|
|
123
|
+
overflow: hidden;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
#ce-canvas,
|
|
127
|
+
#ce-canvas-overlay,
|
|
128
|
+
#ce-canvas-menu,
|
|
129
|
+
#ce-canvas-overlay-menu {
|
|
130
|
+
border: 0;
|
|
131
|
+
position: absolute;
|
|
132
|
+
left: 0;
|
|
133
|
+
top: 0;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
#ce-cursor,
|
|
137
|
+
#ce-cursor-menu {
|
|
138
|
+
position: absolute;
|
|
139
|
+
background-color: #000;
|
|
140
|
+
width: 1px;
|
|
141
|
+
height: 11pt;
|
|
142
|
+
cursor: text;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
#apiPopUpSelector {
|
|
146
|
+
position: absolute;
|
|
147
|
+
}
|
|
148
|
+
#apiPopUpList {
|
|
149
|
+
width: 100%;
|
|
150
|
+
height: 100%;
|
|
151
|
+
max-height: 210px;
|
|
152
|
+
overflow: hidden;
|
|
153
|
+
position: relative;
|
|
154
|
+
}
|
|
155
|
+
#apiPopUpList li {
|
|
156
|
+
max-width: 500px;
|
|
157
|
+
}
|