@mescius/spread-sheets 19.0.0 → 19.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 +1 -1
- package/dist/gc.spread.sheets.all.min.js +2 -2
- package/dist/gc.spread.sheets.d.ts +10 -13
- package/package.json +1 -1
|
@@ -15083,10 +15083,6 @@ declare module GC{
|
|
|
15083
15083
|
* Indicates whether the sheet is rendered from right to left.
|
|
15084
15084
|
*/
|
|
15085
15085
|
rightToLeft: boolean;
|
|
15086
|
-
/**
|
|
15087
|
-
* Indicates the URL of the background image.
|
|
15088
|
-
*/
|
|
15089
|
-
backgroundImage?: string;
|
|
15090
15086
|
}
|
|
15091
15087
|
|
|
15092
15088
|
|
|
@@ -23267,7 +23263,7 @@ declare module GC{
|
|
|
23267
23263
|
* @returns {string|GC.Spread.Sheets.ThemeFont} If no value is set, returns the name of the theme font; otherwise, returns the theme font.
|
|
23268
23264
|
* @example
|
|
23269
23265
|
* ```javascript
|
|
23270
|
-
* var custom = new GC.Spread.Sheets.Theme("Custom", "Cambria", "Calibri");
|
|
23266
|
+
* var custom = new GC.Spread.Sheets.Theme("Custom", null, "Cambria", "Calibri");
|
|
23271
23267
|
* custom.font().bodyEastAsianFont("SimSum");
|
|
23272
23268
|
* sheet.currentTheme(custom);
|
|
23273
23269
|
* ```
|
|
@@ -23279,7 +23275,7 @@ declare module GC{
|
|
|
23279
23275
|
* @returns {string|GC.Spread.Sheets.ThemeFont} If no value is set, returns the name of the theme font; otherwise, returns the theme font.
|
|
23280
23276
|
* @example
|
|
23281
23277
|
* ```javascript
|
|
23282
|
-
* var custom = new GC.Spread.Sheets.Theme("Custom", "Cambria", "Calibri");
|
|
23278
|
+
* var custom = new GC.Spread.Sheets.Theme("Custom", null, "Cambria", "Calibri");
|
|
23283
23279
|
* custom.font().bodyFont("Calibri");
|
|
23284
23280
|
* sheet.currentTheme(custom);
|
|
23285
23281
|
* ```
|
|
@@ -23306,7 +23302,7 @@ declare module GC{
|
|
|
23306
23302
|
* @returns {string|GC.Spread.Sheets.ThemeFont} If no value is set, returns the name of the theme font; otherwise, returns the theme font.
|
|
23307
23303
|
* @example
|
|
23308
23304
|
* ```javascript
|
|
23309
|
-
* var custom = new GC.Spread.Sheets.Theme("Custom", "Cambria", "Calibri");
|
|
23305
|
+
* var custom = new GC.Spread.Sheets.Theme("Custom", null, "Cambria", "Calibri");
|
|
23310
23306
|
* custom.font().headingEastAsianFont("SimSum");
|
|
23311
23307
|
* sheet.currentTheme(custom);
|
|
23312
23308
|
* ```
|
|
@@ -23318,7 +23314,7 @@ declare module GC{
|
|
|
23318
23314
|
* @returns {string|GC.Spread.Sheets.ThemeFont} If no value is set, returns the name of the theme font; otherwise, returns the theme font.
|
|
23319
23315
|
* @example
|
|
23320
23316
|
* ```javascript
|
|
23321
|
-
* var custom = new GC.Spread.Sheets.Theme("Custom", "Cambria", "Calibri");
|
|
23317
|
+
* var custom = new GC.Spread.Sheets.Theme("Custom", null, "Cambria", "Calibri");
|
|
23322
23318
|
* custom.font().headingFont("Calibri");
|
|
23323
23319
|
* sheet.currentTheme(custom);
|
|
23324
23320
|
* ```
|
|
@@ -24996,7 +24992,6 @@ declare module GC{
|
|
|
24996
24992
|
* @property {GC.Spread.Sheets.IAddRowButtonOption} [addRowButtonOption] - The add row button's options.
|
|
24997
24993
|
* @property {GC.Spread.Sheets.IAddColumnButtonOption} [addColumnButtonOption] - The add column button's options.
|
|
24998
24994
|
* @property {boolean} rightToLeft - Indicates whether the sheet is rendered from right to left.
|
|
24999
|
-
* @property {string} backgroundImage - Indicates the URL of the background image.
|
|
25000
24995
|
* @example
|
|
25001
24996
|
* ```javascript
|
|
25002
24997
|
* sheet.setRowCount(2,GC.Spread.Sheets.SheetArea.colHeader);
|
|
@@ -30373,10 +30368,6 @@ declare module GC{
|
|
|
30373
30368
|
* The error bar dashStyle.
|
|
30374
30369
|
*/
|
|
30375
30370
|
dashStyle?: GC.Spread.Sheets.Charts.ILineStyle;
|
|
30376
|
-
/**
|
|
30377
|
-
* The error bar visible info.
|
|
30378
|
-
*/
|
|
30379
|
-
visible?: boolean;
|
|
30380
30371
|
}
|
|
30381
30372
|
|
|
30382
30373
|
|
|
@@ -45722,6 +45713,12 @@ declare module GC{
|
|
|
45722
45713
|
* @type {GC.Spread.Sheets.GanttSheet.TaskStyle}
|
|
45723
45714
|
*/
|
|
45724
45715
|
style: GC.Spread.Sheets.GanttSheet.TaskStyle;
|
|
45716
|
+
/**
|
|
45717
|
+
* Represents the type name string used for supporting serialization.
|
|
45718
|
+
* For custom rules, this should be set to the full qualified type name (e.g., "MyNameScape.MyProgressRule").
|
|
45719
|
+
* @type {string}
|
|
45720
|
+
*/
|
|
45721
|
+
typeName: string;
|
|
45725
45722
|
/**
|
|
45726
45723
|
* Initialize a TaskbarStyleRule object using a JSON object.
|
|
45727
45724
|
*/
|