@mescius/spread-sheets 19.0.0 → 19.0.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/README.md +1 -1
- package/dist/gc.spread.sheets.all.min.js +2 -2
- package/dist/gc.spread.sheets.d.ts +10 -4
- package/package.json +1 -1
|
@@ -23267,7 +23267,7 @@ declare module GC{
|
|
|
23267
23267
|
* @returns {string|GC.Spread.Sheets.ThemeFont} If no value is set, returns the name of the theme font; otherwise, returns the theme font.
|
|
23268
23268
|
* @example
|
|
23269
23269
|
* ```javascript
|
|
23270
|
-
* var custom = new GC.Spread.Sheets.Theme("Custom", "Cambria", "Calibri");
|
|
23270
|
+
* var custom = new GC.Spread.Sheets.Theme("Custom", null, "Cambria", "Calibri");
|
|
23271
23271
|
* custom.font().bodyEastAsianFont("SimSum");
|
|
23272
23272
|
* sheet.currentTheme(custom);
|
|
23273
23273
|
* ```
|
|
@@ -23279,7 +23279,7 @@ declare module GC{
|
|
|
23279
23279
|
* @returns {string|GC.Spread.Sheets.ThemeFont} If no value is set, returns the name of the theme font; otherwise, returns the theme font.
|
|
23280
23280
|
* @example
|
|
23281
23281
|
* ```javascript
|
|
23282
|
-
* var custom = new GC.Spread.Sheets.Theme("Custom", "Cambria", "Calibri");
|
|
23282
|
+
* var custom = new GC.Spread.Sheets.Theme("Custom", null, "Cambria", "Calibri");
|
|
23283
23283
|
* custom.font().bodyFont("Calibri");
|
|
23284
23284
|
* sheet.currentTheme(custom);
|
|
23285
23285
|
* ```
|
|
@@ -23306,7 +23306,7 @@ declare module GC{
|
|
|
23306
23306
|
* @returns {string|GC.Spread.Sheets.ThemeFont} If no value is set, returns the name of the theme font; otherwise, returns the theme font.
|
|
23307
23307
|
* @example
|
|
23308
23308
|
* ```javascript
|
|
23309
|
-
* var custom = new GC.Spread.Sheets.Theme("Custom", "Cambria", "Calibri");
|
|
23309
|
+
* var custom = new GC.Spread.Sheets.Theme("Custom", null, "Cambria", "Calibri");
|
|
23310
23310
|
* custom.font().headingEastAsianFont("SimSum");
|
|
23311
23311
|
* sheet.currentTheme(custom);
|
|
23312
23312
|
* ```
|
|
@@ -23318,7 +23318,7 @@ declare module GC{
|
|
|
23318
23318
|
* @returns {string|GC.Spread.Sheets.ThemeFont} If no value is set, returns the name of the theme font; otherwise, returns the theme font.
|
|
23319
23319
|
* @example
|
|
23320
23320
|
* ```javascript
|
|
23321
|
-
* var custom = new GC.Spread.Sheets.Theme("Custom", "Cambria", "Calibri");
|
|
23321
|
+
* var custom = new GC.Spread.Sheets.Theme("Custom", null, "Cambria", "Calibri");
|
|
23322
23322
|
* custom.font().headingFont("Calibri");
|
|
23323
23323
|
* sheet.currentTheme(custom);
|
|
23324
23324
|
* ```
|
|
@@ -45722,6 +45722,12 @@ declare module GC{
|
|
|
45722
45722
|
* @type {GC.Spread.Sheets.GanttSheet.TaskStyle}
|
|
45723
45723
|
*/
|
|
45724
45724
|
style: GC.Spread.Sheets.GanttSheet.TaskStyle;
|
|
45725
|
+
/**
|
|
45726
|
+
* Represents the type name string used for supporting serialization.
|
|
45727
|
+
* For custom rules, this should be set to the full qualified type name (e.g., "MyNameScape.MyProgressRule").
|
|
45728
|
+
* @type {string}
|
|
45729
|
+
*/
|
|
45730
|
+
typeName: string;
|
|
45725
45731
|
/**
|
|
45726
45732
|
* Initialize a TaskbarStyleRule object using a JSON object.
|
|
45727
45733
|
*/
|