@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.
@@ -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
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mescius/spread-sheets",
3
- "version": "19.0.0",
3
+ "version": "19.0.1",
4
4
  "main": "index.js",
5
5
  "description":"A Complete Microsoft Excel-like JavaScript Spreadsheet for Enterprise Applications",
6
6
  "scripts": {},