@mescius/spread-excelio 17.0.10 → 17.1.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/dist/gc.spread.excelio.d.ts +20 -0
- package/dist/gc.spread.excelio.min.js +47 -39
- package/package.json +2 -2
@@ -8,6 +8,26 @@ declare module GC{
|
|
8
8
|
* @class
|
9
9
|
*/
|
10
10
|
constructor();
|
11
|
+
/**
|
12
|
+
* Build in pivot table themes.
|
13
|
+
* @type {{ [key: string]: any }}
|
14
|
+
*/
|
15
|
+
static pivotTableThemes: { [key: string]: any };
|
16
|
+
/**
|
17
|
+
* Build in item slicer themes.
|
18
|
+
* @type {{ [key: string]: any }}
|
19
|
+
*/
|
20
|
+
static slicerStyles: { [key: string]: any };
|
21
|
+
/**
|
22
|
+
* Build in table themes.
|
23
|
+
* @type {{ [key: string]: any }}
|
24
|
+
*/
|
25
|
+
static tableThemes: { [key: string]: any };
|
26
|
+
/**
|
27
|
+
* Build in timeline slicer themes.
|
28
|
+
* @type {{ [key: string]: any }}
|
29
|
+
*/
|
30
|
+
static timelineStyles: { [key: string]: any };
|
11
31
|
/**
|
12
32
|
* Imports an excel file.
|
13
33
|
* @param {Blob} file The excel file.
|