@mescius/spread-sheets 18.0.2 → 18.0.4
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.sheets.all.min.js +3 -3
- package/dist/gc.spread.sheets.d.ts +195 -6
- package/package.json +1 -1
- package/styles/gc.spread.sheets.css +6 -5
- package/styles/gc.spread.sheets.excel2013darkGray.css +6 -5
- package/styles/gc.spread.sheets.excel2013lightGray.css +6 -5
- package/styles/gc.spread.sheets.excel2013white.css +6 -5
- package/styles/gc.spread.sheets.excel2016black.css +6 -5
- package/styles/gc.spread.sheets.excel2016colorful.css +6 -5
- package/styles/gc.spread.sheets.excel2016darkGray.css +6 -5
@@ -389,6 +389,29 @@ declare module GC{
|
|
389
389
|
}
|
390
390
|
|
391
391
|
|
392
|
+
/**
|
393
|
+
* @typedef GC.Data.CornerFold
|
394
|
+
* @property {number} size - The size of the corner fold.
|
395
|
+
* @property {string} position - The corner fold's position, which supports "leftTop", "rightTop", "leftBottom", "rightBottom".
|
396
|
+
* @property {string} color - The color of the corner fold.
|
397
|
+
*/
|
398
|
+
export type CornerFold =
|
399
|
+
{
|
400
|
+
/**
|
401
|
+
* The size of the corner fold.
|
402
|
+
*/
|
403
|
+
size?: number;
|
404
|
+
/**
|
405
|
+
* The corner fold's position, which supports "leftTop", "rightTop", "leftBottom", "rightBottom".
|
406
|
+
*/
|
407
|
+
position?: "leftTop" | "rightTop" | "leftBottom" | "rightBottom";
|
408
|
+
/**
|
409
|
+
* The color of the corner fold.
|
410
|
+
*/
|
411
|
+
color?: string;
|
412
|
+
}
|
413
|
+
|
414
|
+
|
392
415
|
/**
|
393
416
|
* @typedef GC.Data.DataBarAxisPosition
|
394
417
|
* @type {"automatic"|"cellMidPoint"|"none"}
|
@@ -666,6 +689,7 @@ declare module GC{
|
|
666
689
|
/**
|
667
690
|
* @typedef GC.Data.Decoration
|
668
691
|
* @property {GC.Data.Icon[]} icons - The icons of the decoration in the style.
|
692
|
+
* @property {GC.Data.CornerFold} cornerFold - The corner fold of the decoration in the style.
|
669
693
|
*/
|
670
694
|
export type Decoration =
|
671
695
|
{
|
@@ -673,6 +697,10 @@ declare module GC{
|
|
673
697
|
* The icons of the decoration in the style.
|
674
698
|
*/
|
675
699
|
icons?: GC.Data.Icon[];
|
700
|
+
/**
|
701
|
+
* The corner fold of the decoration in the style.
|
702
|
+
*/
|
703
|
+
cornerFold?: GC.Data.CornerFold;
|
676
704
|
}
|
677
705
|
|
678
706
|
|
@@ -1089,6 +1117,7 @@ declare module GC{
|
|
1089
1117
|
* @property {GC.Data.LabelOptions} labelOptions - The cell label options.
|
1090
1118
|
* @property {boolean} isVerticalText - Whether to set the cell's text vertical.
|
1091
1119
|
* @property {boolean} showEllipsis - Whether the text out of bounds shows ellipsis.
|
1120
|
+
* @property {GC.Data.Decoration} decoration - The decoration.
|
1092
1121
|
*/
|
1093
1122
|
export type HeaderStyleOptions =
|
1094
1123
|
{
|
@@ -1200,6 +1229,10 @@ declare module GC{
|
|
1200
1229
|
* Whether the text out of bounds shows ellipsis.
|
1201
1230
|
*/
|
1202
1231
|
showEllipsis?: boolean;
|
1232
|
+
/**
|
1233
|
+
* The decoration.
|
1234
|
+
*/
|
1235
|
+
decoration?: GC.Data.Decoration;
|
1203
1236
|
}
|
1204
1237
|
|
1205
1238
|
|
@@ -14308,7 +14341,7 @@ declare module GC{
|
|
14308
14341
|
*/
|
14309
14342
|
autoFitType: GC.Spread.Sheets.AutoFitType;
|
14310
14343
|
/**
|
14311
|
-
*
|
14344
|
+
* the style for cell and range references in cell formulas on the workbook.
|
14312
14345
|
*/
|
14313
14346
|
referenceStyle: GC.Spread.Sheets.ReferenceStyle;
|
14314
14347
|
/**
|
@@ -16436,8 +16469,8 @@ declare module GC{
|
|
16436
16469
|
* @enum {number}
|
16437
16470
|
* @example
|
16438
16471
|
* ```
|
16439
|
-
* //This example sets the reference style for the
|
16440
|
-
*
|
16472
|
+
* //This example sets the reference style for the workbook.
|
16473
|
+
* workbook.options.referenceStyle = GC.Spread.Sheets.ReferenceStyle.r1c1;
|
16441
16474
|
* ```
|
16442
16475
|
*/
|
16443
16476
|
export enum ReferenceStyle{
|
@@ -22592,7 +22625,7 @@ declare module GC{
|
|
22592
22625
|
* @param {boolean} [options.allowUserEditFormula] - Whether the user can edit formulas in a cell in the spreadsheet.
|
22593
22626
|
* @param {boolean} [options.enableFormulaTextbox] - Whether to enable the formula text box in the spreadsheet.
|
22594
22627
|
* @param {GC.Spread.Sheets.AutoFitType} [options.autoFitType] - Whether content will be formatted to fit in cells or in cells and headers.
|
22595
|
-
* @param {GC.Spread.Sheets.ReferenceStyle} [options.referenceStyle] - the style for cell and range references in cell formulas on
|
22628
|
+
* @param {GC.Spread.Sheets.ReferenceStyle} [options.referenceStyle] - the style for cell and range references in cell formulas on the workbook.
|
22596
22629
|
* @param {boolean} [options.calcOnDemand] - Whether to calculate formulas only when they are demanded.
|
22597
22630
|
* @param {boolean} [options.incrementalCalculation] - Whether to incremental calculate formulas without blocking UI.
|
22598
22631
|
* @param {boolean} [options.allowCopyPasteExcelStyle] - Whether the user can copy style from Spread Sheets then paste to Excel, or copy style from Excel then paste to Spread Sheets.
|
@@ -22714,7 +22747,7 @@ declare module GC{
|
|
22714
22747
|
* @property {boolean} allowUserEditFormula - Whether the user can edit formulas in a cell in the spreadsheet.
|
22715
22748
|
* @property {boolean} enableFormulaTextbox - Whether to enable the formula text box in the spreadsheet.
|
22716
22749
|
* @property {GC.Spread.Sheets.AutoFitType} autoFitType - Whether content will be formatted to fit in cells or in cells and headers.
|
22717
|
-
* @property {GC.Spread.Sheets.ReferenceStyle} referenceStyle - the style for cell and range references in cell formulas on
|
22750
|
+
* @property {GC.Spread.Sheets.ReferenceStyle} referenceStyle - the style for cell and range references in cell formulas on the workbook.
|
22718
22751
|
* @property {boolean} allowDynamicArray - Whether to enable dynamic array.
|
22719
22752
|
* @property {boolean} iterativeCalculation - Whether to enable the iterative calculation.
|
22720
22753
|
* @property {number} iterativeCalculationMaximumIterations - The Maximum Iterations when iterative calculation.
|
@@ -32534,6 +32567,162 @@ declare module GC{
|
|
32534
32567
|
* ```
|
32535
32568
|
*/
|
32536
32569
|
var renameSheet: { canUndo: boolean, execute(context: GC.Spread.Sheets.Workbook, options: {sheetName: string, name: string}, isUndo: boolean): any};
|
32570
|
+
/**
|
32571
|
+
* Represents the command used to change the report chart preview visible in reportSheet cell binding chart.
|
32572
|
+
* @property {boolean} canUndo - indicates whether the command supports undo and redo operations.
|
32573
|
+
* @property {function} execute - performs an execute or undo operation.
|
32574
|
+
* The arguments of the execute method are as follows.
|
32575
|
+
* @param {GC.Spread.Sheets.Workbook} context The context of the operation.
|
32576
|
+
* @param {Object} options The options of the operation.
|
32577
|
+
* @param {string} options.sheetName The sheet name.
|
32578
|
+
* @param {number} options.row The data chart row number.
|
32579
|
+
* @param {number} options.col The data chart column number.
|
32580
|
+
* @param {boolean} options.visible The data chart visible.
|
32581
|
+
* @param {boolean} isUndo `true` if this is an undo operation; otherwise, `false`.
|
32582
|
+
* @example
|
32583
|
+
* ```
|
32584
|
+
* // change the data chart preview visible in reportSheet while in Design mode with invoking command.
|
32585
|
+
* spread.commandManager().execute({cmd: "ReportChartPreviewVisible", sheetName: "Report1", row: 1, col: 1, visible: true});
|
32586
|
+
* ```
|
32587
|
+
*/
|
32588
|
+
var ReportChartPreviewVisible: { canUndo: boolean, execute(context: GC.Spread.Sheets.Workbook, options: {sheetName: string, row: number, col: number, visible: boolean}, isUndo: boolean): boolean};
|
32589
|
+
/**
|
32590
|
+
* Represents the command used to toggle one collapse button in reportSheet.
|
32591
|
+
* @property {boolean} canUndo - indicates whether the command supports undo and redo operations.
|
32592
|
+
* @property {function} execute - performs an execute or undo operation.
|
32593
|
+
* The arguments of the execute method are as follows.
|
32594
|
+
* @param {GC.Spread.Sheets.Workbook} context The context of the operation.
|
32595
|
+
* @param {Object} options The options of the operation.
|
32596
|
+
* @param {string} options.sheetName The sheet name.
|
32597
|
+
* @param {number} options.row The collapse button row.
|
32598
|
+
* @param {number} options.col The collapse button col.
|
32599
|
+
* @param {boolean} isUndo `true` if this is an undo operation; otherwise, `false`.
|
32600
|
+
* @example
|
32601
|
+
* ```
|
32602
|
+
* // toggle one collapse button with invoking command.
|
32603
|
+
* spread.commandManager().execute({cmd: "ReportCollapseButtonToggle", sheetName: "Report1", row: 1, col: 1});
|
32604
|
+
* ```
|
32605
|
+
*/
|
32606
|
+
var ReportCollapseButtonToggle: { canUndo: boolean, execute(context: GC.Spread.Sheets.Workbook, options: {sheetName: string, row: number, col: number}, isUndo: boolean): boolean};
|
32607
|
+
/**
|
32608
|
+
* Represents the command used to add record in reportSheet.
|
32609
|
+
* @property {boolean} canUndo - indicates whether the command supports undo and redo operations.
|
32610
|
+
* @property {function} execute - performs an execute or undo operation.
|
32611
|
+
* The arguments of the execute method are as follows.
|
32612
|
+
* @param {GC.Spread.Sheets.Workbook} context The context of the operation.
|
32613
|
+
* @param {Object} options The options of the operation.
|
32614
|
+
* @param {string} options.sheetName The sheet name.
|
32615
|
+
* @param {number} options.activeRow The add record active row number.
|
32616
|
+
* @param {number} options.activeCol The add record active column number.
|
32617
|
+
* @param {boolean} isUndo `true` if this is an undo operation; otherwise, `false`.
|
32618
|
+
* @example
|
32619
|
+
* ```
|
32620
|
+
* // add record in reportSheet while in DataEntry mode with invoking command.
|
32621
|
+
* spread.commandManager().execute({cmd: "reportSheetAddRecord", sheetName: "Report1", activeRow: 1, activeCol: 1});
|
32622
|
+
* ```
|
32623
|
+
*/
|
32624
|
+
var reportSheetAddRecord: { canUndo: boolean, execute(context: GC.Spread.Sheets.Workbook, options: {sheetName: string, activeRow: number, activeCol: number}, isUndo: boolean): boolean};
|
32625
|
+
/**
|
32626
|
+
* Represents the command used to collapse all collapse button in reportSheet.
|
32627
|
+
* @property {boolean} canUndo - indicates whether the command supports undo and redo operations.
|
32628
|
+
* @property {function} execute - performs an execute or undo operation.
|
32629
|
+
* The arguments of the execute method are as follows.
|
32630
|
+
* @param {GC.Spread.Sheets.Workbook} context The context of the operation.
|
32631
|
+
* @param {Object} options The options of the operation.
|
32632
|
+
* @param {string} options.sheetName The sheet name.
|
32633
|
+
* @param {GC.Spread.Sheets.Range[]} options.selections The collapse button selections.
|
32634
|
+
* @param {boolean} isUndo `true` if this is an undo operation; otherwise, `false`.
|
32635
|
+
* @example
|
32636
|
+
* ```
|
32637
|
+
* // collapse all collapse button while in DataEntry mode with invoking command.
|
32638
|
+
* spread.commandManager().execute({cmd: "reportSheetCollapseAll", sheetName: "Report1", selections: [new GC.Spread.Sheets.Range(1, 1, 1, 1)]});
|
32639
|
+
* ```
|
32640
|
+
*/
|
32641
|
+
var reportSheetCollapseAll: { canUndo: boolean, execute(context: GC.Spread.Sheets.Workbook, options: {sheetName: string, selections: GC.Spread.Sheets.Range[]}, isUndo: boolean): boolean};
|
32642
|
+
/**
|
32643
|
+
* Represents the command used to delete record in reportSheet.
|
32644
|
+
* @property {boolean} canUndo - indicates whether the command supports undo and redo operations.
|
32645
|
+
* @property {function} execute - performs an execute or undo operation.
|
32646
|
+
* The arguments of the execute method are as follows.
|
32647
|
+
* @param {GC.Spread.Sheets.Workbook} context The context of the operation.
|
32648
|
+
* @param {Object} options The options of the operation.
|
32649
|
+
* @param {string} options.sheetName The sheet name.
|
32650
|
+
* @param {number} options.activeRow The deleted record active row number.
|
32651
|
+
* @param {number} options.activeCol The deleted record active column number.
|
32652
|
+
* @param {boolean} isUndo `true` if this is an undo operation; otherwise, `false`.
|
32653
|
+
* @example
|
32654
|
+
* ```
|
32655
|
+
* // delete record in reportSheet while in DataEntry mode with invoking command.
|
32656
|
+
* spread.commandManager().execute({cmd: "reportSheetDeleteRecord", sheetName: "Report1", activeRow: 2, activeCol: 1});
|
32657
|
+
* ```
|
32658
|
+
*/
|
32659
|
+
var reportSheetDeleteRecord: { canUndo: boolean, execute(context: GC.Spread.Sheets.Workbook, options: {sheetName: string, activeRow: number, activeCol: number}, isUndo: boolean): boolean};
|
32660
|
+
/**
|
32661
|
+
* Represents the command used to expand all collapse button in reportSheet.
|
32662
|
+
* @property {boolean} canUndo - indicates whether the command supports undo and redo operations.
|
32663
|
+
* @property {function} execute - performs an execute or undo operation.
|
32664
|
+
* The arguments of the execute method are as follows.
|
32665
|
+
* @param {GC.Spread.Sheets.Workbook} context The context of the operation.
|
32666
|
+
* @param {Object} options The options of the operation.
|
32667
|
+
* @param {string} options.sheetName The sheet name.
|
32668
|
+
* @param {GC.Spread.Sheets.Range[]} options.selections The collapse button selections.
|
32669
|
+
* @param {boolean} isUndo `true` if this is an undo operation; otherwise, `false`.
|
32670
|
+
* @example
|
32671
|
+
* ```
|
32672
|
+
* // expand all collapse button while in DataEntry mode with invoking command.
|
32673
|
+
* spread.commandManager().execute({cmd: "reportSheetExpandAll", sheetName: "Report1", selections: [new GC.Spread.Sheets.Range(1, 1, 1, 1)]});
|
32674
|
+
* ```
|
32675
|
+
*/
|
32676
|
+
var reportSheetExpandAll: { canUndo: boolean, execute(context: GC.Spread.Sheets.Workbook, options: {sheetName: string, selections: GC.Spread.Sheets.Range[]}, isUndo: boolean): boolean};
|
32677
|
+
/**
|
32678
|
+
* Represents the command used to regenerate reportSheet.
|
32679
|
+
* @property {boolean} canUndo - indicates whether the command supports undo and redo operations.
|
32680
|
+
* @property {function} execute - performs an execute or undo operation.
|
32681
|
+
* The arguments of the execute method are as follows.
|
32682
|
+
* @param {GC.Spread.Sheets.Workbook} context The context of the operation.
|
32683
|
+
* @param {Object} options The options of the operation.
|
32684
|
+
* @param {string} options.sheetName The sheet name.
|
32685
|
+
* @param {boolean} isUndo `true` if this is an undo operation; otherwise, `false`.
|
32686
|
+
* @example
|
32687
|
+
* ```
|
32688
|
+
* // regenerate reportSheet with invoking command.
|
32689
|
+
* spread.commandManager().execute({cmd: "reportSheetRegenerateReport", sheetName: "Report1"});
|
32690
|
+
* ```
|
32691
|
+
*/
|
32692
|
+
var reportSheetRegenerateReport: { canUndo: boolean, execute(context: GC.Spread.Sheets.Workbook, options: {sheetName: string}, isUndo: boolean): boolean};
|
32693
|
+
/**
|
32694
|
+
* Represents the command used to reset all selected cells value in reportSheet.
|
32695
|
+
* @property {boolean} canUndo - indicates whether the command supports undo and redo operations.
|
32696
|
+
* @property {function} execute - performs an execute or undo operation.
|
32697
|
+
* The arguments of the execute method are as follows.
|
32698
|
+
* @param {GC.Spread.Sheets.Workbook} context The context of the operation.
|
32699
|
+
* @param {Object} options The options of the operation.
|
32700
|
+
* @param {string} options.sheetName The sheet name.
|
32701
|
+
* @param {GC.Spread.Sheets.Range[]} options.selections The reset value selections.
|
32702
|
+
* @param {boolean} isUndo `true` if this is an undo operation; otherwise, `false`.
|
32703
|
+
* @example
|
32704
|
+
* ```
|
32705
|
+
* // reset all selected cells value while in DataEntry mode with invoking command.
|
32706
|
+
* spread.commandManager().execute({cmd: "reportSheetResetCellValue", sheetName: "Report1", selections: [new GC.Spread.Sheets.Range(1, 1, 1, 1)]});
|
32707
|
+
* ```
|
32708
|
+
*/
|
32709
|
+
var reportSheetResetCellValue: { canUndo: boolean, execute(context: GC.Spread.Sheets.Workbook, options: {sheetName: string, selections: GC.Spread.Sheets.Range[]}, isUndo: boolean): boolean};
|
32710
|
+
/**
|
32711
|
+
* Represents the command used to submit the data entry changes in reportSheet.
|
32712
|
+
* @property {boolean} canUndo - indicates whether the command supports undo and redo operations.
|
32713
|
+
* @property {function} execute - performs an execute or undo operation.
|
32714
|
+
* The arguments of the execute method are as follows.
|
32715
|
+
* @param {GC.Spread.Sheets.Workbook} context The context of the operation.
|
32716
|
+
* @param {Object} options The options of the operation.
|
32717
|
+
* @param {string} options.sheetName The sheet name.
|
32718
|
+
* @param {boolean} isUndo `true` if this is an undo operation; otherwise, `false`.
|
32719
|
+
* @example
|
32720
|
+
* ```
|
32721
|
+
* // submit the data entry changes with invoking command.
|
32722
|
+
* spread.commandManager().execute({cmd: "reportSheetSubmit", sheetName: "Report1"});
|
32723
|
+
* ```
|
32724
|
+
*/
|
32725
|
+
var reportSheetSubmit: { canUndo: boolean, execute(context: GC.Spread.Sheets.Workbook, options: {sheetName: string}, isUndo: boolean): boolean};
|
32537
32726
|
/**
|
32538
32727
|
* Represents the command used to resize the column on a worksheet.
|
32539
32728
|
* @property {boolean} canUndo - indicates whether the command supports undo and redo operations.
|
@@ -38634,7 +38823,7 @@ declare module GC{
|
|
38634
38823
|
}
|
38635
38824
|
|
38636
38825
|
/**
|
38637
|
-
* Specifies the datachart plot
|
38826
|
+
* Specifies the datachart plot ValueOptionType.
|
38638
38827
|
* @enum {string}
|
38639
38828
|
*/
|
38640
38829
|
export enum ValueOptionType{
|
package/package.json
CHANGED
@@ -3101,7 +3101,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
3101
3101
|
text-wrap: nowrap;
|
3102
3102
|
flex: 1;
|
3103
3103
|
}
|
3104
|
-
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-title .cancel-icon {
|
3104
|
+
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-title .sjs-cancel-icon {
|
3105
3105
|
flex: 0 0 50px;
|
3106
3106
|
}
|
3107
3107
|
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-content {
|
@@ -4092,7 +4092,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4092
4092
|
background-color: white;
|
4093
4093
|
padding-left: 10px;
|
4094
4094
|
}
|
4095
|
-
.date-group-dialog-header > .cancel-icon {
|
4095
|
+
.date-group-dialog-header > .sjs-cancel-icon {
|
4096
4096
|
line-height: 26px;
|
4097
4097
|
border: none;
|
4098
4098
|
}
|
@@ -4104,7 +4104,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4104
4104
|
background-color: white;
|
4105
4105
|
padding-left: 10px;
|
4106
4106
|
}
|
4107
|
-
.number-group-dialog-header > .cancel-icon {
|
4107
|
+
.number-group-dialog-header > .sjs-cancel-icon {
|
4108
4108
|
line-height: 28px;
|
4109
4109
|
border: none;
|
4110
4110
|
}
|
@@ -4244,7 +4244,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4244
4244
|
width: calc(100% - 50px);
|
4245
4245
|
}
|
4246
4246
|
|
4247
|
-
.cancel-icon {
|
4247
|
+
.sjs-cancel-icon {
|
4248
4248
|
height: 100%;
|
4249
4249
|
width: 50px;
|
4250
4250
|
font-size: 26px;
|
@@ -4256,7 +4256,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4256
4256
|
border: none;
|
4257
4257
|
cursor: default;
|
4258
4258
|
}
|
4259
|
-
.cancel-icon:hover {
|
4259
|
+
.sjs-cancel-icon:hover {
|
4260
4260
|
background-color: rgb(232, 17, 35);
|
4261
4261
|
color: white;
|
4262
4262
|
}
|
@@ -4679,6 +4679,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4679
4679
|
margin-top: 11px;
|
4680
4680
|
overflow: hidden;
|
4681
4681
|
text-overflow: ellipsis;
|
4682
|
+
white-space: pre;
|
4682
4683
|
}
|
4683
4684
|
|
4684
4685
|
.gc-sort-select {
|
@@ -3141,7 +3141,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
3141
3141
|
text-wrap: nowrap;
|
3142
3142
|
flex: 1;
|
3143
3143
|
}
|
3144
|
-
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-title .cancel-icon {
|
3144
|
+
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-title .sjs-cancel-icon {
|
3145
3145
|
flex: 0 0 50px;
|
3146
3146
|
}
|
3147
3147
|
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-content {
|
@@ -4136,7 +4136,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4136
4136
|
background-color: white;
|
4137
4137
|
padding-left: 10px;
|
4138
4138
|
}
|
4139
|
-
.date-group-dialog-header > .cancel-icon {
|
4139
|
+
.date-group-dialog-header > .sjs-cancel-icon {
|
4140
4140
|
line-height: 26px;
|
4141
4141
|
border: none;
|
4142
4142
|
}
|
@@ -4148,7 +4148,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4148
4148
|
background-color: white;
|
4149
4149
|
padding-left: 10px;
|
4150
4150
|
}
|
4151
|
-
.number-group-dialog-header > .cancel-icon {
|
4151
|
+
.number-group-dialog-header > .sjs-cancel-icon {
|
4152
4152
|
line-height: 28px;
|
4153
4153
|
border: none;
|
4154
4154
|
}
|
@@ -4288,7 +4288,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4288
4288
|
width: calc(100% - 50px);
|
4289
4289
|
}
|
4290
4290
|
|
4291
|
-
.cancel-icon {
|
4291
|
+
.sjs-cancel-icon {
|
4292
4292
|
height: 100%;
|
4293
4293
|
width: 50px;
|
4294
4294
|
font-size: 26px;
|
@@ -4300,7 +4300,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4300
4300
|
border: none;
|
4301
4301
|
cursor: default;
|
4302
4302
|
}
|
4303
|
-
.cancel-icon:hover {
|
4303
|
+
.sjs-cancel-icon:hover {
|
4304
4304
|
background-color: rgb(232, 17, 35);
|
4305
4305
|
color: white;
|
4306
4306
|
}
|
@@ -4723,6 +4723,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4723
4723
|
margin-top: 11px;
|
4724
4724
|
overflow: hidden;
|
4725
4725
|
text-overflow: ellipsis;
|
4726
|
+
white-space: pre;
|
4726
4727
|
}
|
4727
4728
|
|
4728
4729
|
.gc-sort-select {
|
@@ -3146,7 +3146,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
3146
3146
|
text-wrap: nowrap;
|
3147
3147
|
flex: 1;
|
3148
3148
|
}
|
3149
|
-
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-title .cancel-icon {
|
3149
|
+
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-title .sjs-cancel-icon {
|
3150
3150
|
flex: 0 0 50px;
|
3151
3151
|
}
|
3152
3152
|
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-content {
|
@@ -4141,7 +4141,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4141
4141
|
background-color: white;
|
4142
4142
|
padding-left: 10px;
|
4143
4143
|
}
|
4144
|
-
.date-group-dialog-header > .cancel-icon {
|
4144
|
+
.date-group-dialog-header > .sjs-cancel-icon {
|
4145
4145
|
line-height: 26px;
|
4146
4146
|
border: none;
|
4147
4147
|
}
|
@@ -4153,7 +4153,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4153
4153
|
background-color: white;
|
4154
4154
|
padding-left: 10px;
|
4155
4155
|
}
|
4156
|
-
.number-group-dialog-header > .cancel-icon {
|
4156
|
+
.number-group-dialog-header > .sjs-cancel-icon {
|
4157
4157
|
line-height: 28px;
|
4158
4158
|
border: none;
|
4159
4159
|
}
|
@@ -4293,7 +4293,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4293
4293
|
width: calc(100% - 50px);
|
4294
4294
|
}
|
4295
4295
|
|
4296
|
-
.cancel-icon {
|
4296
|
+
.sjs-cancel-icon {
|
4297
4297
|
height: 100%;
|
4298
4298
|
width: 50px;
|
4299
4299
|
font-size: 26px;
|
@@ -4305,7 +4305,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4305
4305
|
border: none;
|
4306
4306
|
cursor: default;
|
4307
4307
|
}
|
4308
|
-
.cancel-icon:hover {
|
4308
|
+
.sjs-cancel-icon:hover {
|
4309
4309
|
background-color: rgb(232, 17, 35);
|
4310
4310
|
color: white;
|
4311
4311
|
}
|
@@ -4728,6 +4728,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4728
4728
|
margin-top: 11px;
|
4729
4729
|
overflow: hidden;
|
4730
4730
|
text-overflow: ellipsis;
|
4731
|
+
white-space: pre;
|
4731
4732
|
}
|
4732
4733
|
|
4733
4734
|
.gc-sort-select {
|
@@ -3133,7 +3133,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
3133
3133
|
text-wrap: nowrap;
|
3134
3134
|
flex: 1;
|
3135
3135
|
}
|
3136
|
-
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-title .cancel-icon {
|
3136
|
+
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-title .sjs-cancel-icon {
|
3137
3137
|
flex: 0 0 50px;
|
3138
3138
|
}
|
3139
3139
|
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-content {
|
@@ -4128,7 +4128,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4128
4128
|
background-color: white;
|
4129
4129
|
padding-left: 10px;
|
4130
4130
|
}
|
4131
|
-
.date-group-dialog-header > .cancel-icon {
|
4131
|
+
.date-group-dialog-header > .sjs-cancel-icon {
|
4132
4132
|
line-height: 26px;
|
4133
4133
|
border: none;
|
4134
4134
|
}
|
@@ -4140,7 +4140,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4140
4140
|
background-color: white;
|
4141
4141
|
padding-left: 10px;
|
4142
4142
|
}
|
4143
|
-
.number-group-dialog-header > .cancel-icon {
|
4143
|
+
.number-group-dialog-header > .sjs-cancel-icon {
|
4144
4144
|
line-height: 28px;
|
4145
4145
|
border: none;
|
4146
4146
|
}
|
@@ -4280,7 +4280,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4280
4280
|
width: calc(100% - 50px);
|
4281
4281
|
}
|
4282
4282
|
|
4283
|
-
.cancel-icon {
|
4283
|
+
.sjs-cancel-icon {
|
4284
4284
|
height: 100%;
|
4285
4285
|
width: 50px;
|
4286
4286
|
font-size: 26px;
|
@@ -4292,7 +4292,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4292
4292
|
border: none;
|
4293
4293
|
cursor: default;
|
4294
4294
|
}
|
4295
|
-
.cancel-icon:hover {
|
4295
|
+
.sjs-cancel-icon:hover {
|
4296
4296
|
background-color: rgb(232, 17, 35);
|
4297
4297
|
color: white;
|
4298
4298
|
}
|
@@ -4715,6 +4715,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4715
4715
|
margin-top: 11px;
|
4716
4716
|
overflow: hidden;
|
4717
4717
|
text-overflow: ellipsis;
|
4718
|
+
white-space: pre;
|
4718
4719
|
}
|
4719
4720
|
|
4720
4721
|
.gc-sort-select {
|
@@ -3144,7 +3144,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
3144
3144
|
text-wrap: nowrap;
|
3145
3145
|
flex: 1;
|
3146
3146
|
}
|
3147
|
-
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-title .cancel-icon {
|
3147
|
+
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-title .sjs-cancel-icon {
|
3148
3148
|
flex: 0 0 50px;
|
3149
3149
|
}
|
3150
3150
|
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-content {
|
@@ -4139,7 +4139,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4139
4139
|
background-color: white;
|
4140
4140
|
padding-left: 10px;
|
4141
4141
|
}
|
4142
|
-
.date-group-dialog-header > .cancel-icon {
|
4142
|
+
.date-group-dialog-header > .sjs-cancel-icon {
|
4143
4143
|
line-height: 26px;
|
4144
4144
|
border: none;
|
4145
4145
|
}
|
@@ -4151,7 +4151,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4151
4151
|
background-color: white;
|
4152
4152
|
padding-left: 10px;
|
4153
4153
|
}
|
4154
|
-
.number-group-dialog-header > .cancel-icon {
|
4154
|
+
.number-group-dialog-header > .sjs-cancel-icon {
|
4155
4155
|
line-height: 28px;
|
4156
4156
|
border: none;
|
4157
4157
|
}
|
@@ -4291,7 +4291,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4291
4291
|
width: calc(100% - 50px);
|
4292
4292
|
}
|
4293
4293
|
|
4294
|
-
.cancel-icon {
|
4294
|
+
.sjs-cancel-icon {
|
4295
4295
|
height: 100%;
|
4296
4296
|
width: 50px;
|
4297
4297
|
font-size: 26px;
|
@@ -4303,7 +4303,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4303
4303
|
border: none;
|
4304
4304
|
cursor: default;
|
4305
4305
|
}
|
4306
|
-
.cancel-icon:hover {
|
4306
|
+
.sjs-cancel-icon:hover {
|
4307
4307
|
background-color: rgb(232, 17, 35);
|
4308
4308
|
color: white;
|
4309
4309
|
}
|
@@ -4726,6 +4726,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4726
4726
|
margin-top: 11px;
|
4727
4727
|
overflow: hidden;
|
4728
4728
|
text-overflow: ellipsis;
|
4729
|
+
white-space: pre;
|
4729
4730
|
}
|
4730
4731
|
|
4731
4732
|
.gc-sort-select {
|
@@ -3137,7 +3137,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
3137
3137
|
text-wrap: nowrap;
|
3138
3138
|
flex: 1;
|
3139
3139
|
}
|
3140
|
-
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-title .cancel-icon {
|
3140
|
+
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-title .sjs-cancel-icon {
|
3141
3141
|
flex: 0 0 50px;
|
3142
3142
|
}
|
3143
3143
|
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-content {
|
@@ -4132,7 +4132,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4132
4132
|
background-color: white;
|
4133
4133
|
padding-left: 10px;
|
4134
4134
|
}
|
4135
|
-
.date-group-dialog-header > .cancel-icon {
|
4135
|
+
.date-group-dialog-header > .sjs-cancel-icon {
|
4136
4136
|
line-height: 26px;
|
4137
4137
|
border: none;
|
4138
4138
|
}
|
@@ -4144,7 +4144,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4144
4144
|
background-color: white;
|
4145
4145
|
padding-left: 10px;
|
4146
4146
|
}
|
4147
|
-
.number-group-dialog-header > .cancel-icon {
|
4147
|
+
.number-group-dialog-header > .sjs-cancel-icon {
|
4148
4148
|
line-height: 28px;
|
4149
4149
|
border: none;
|
4150
4150
|
}
|
@@ -4284,7 +4284,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4284
4284
|
width: calc(100% - 50px);
|
4285
4285
|
}
|
4286
4286
|
|
4287
|
-
.cancel-icon {
|
4287
|
+
.sjs-cancel-icon {
|
4288
4288
|
height: 100%;
|
4289
4289
|
width: 50px;
|
4290
4290
|
font-size: 26px;
|
@@ -4296,7 +4296,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4296
4296
|
border: none;
|
4297
4297
|
cursor: default;
|
4298
4298
|
}
|
4299
|
-
.cancel-icon:hover {
|
4299
|
+
.sjs-cancel-icon:hover {
|
4300
4300
|
background-color: rgb(232, 17, 35);
|
4301
4301
|
color: white;
|
4302
4302
|
}
|
@@ -4719,6 +4719,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4719
4719
|
margin-top: 11px;
|
4720
4720
|
overflow: hidden;
|
4721
4721
|
text-overflow: ellipsis;
|
4722
|
+
white-space: pre;
|
4722
4723
|
}
|
4723
4724
|
|
4724
4725
|
.gc-sort-select {
|
@@ -3133,7 +3133,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
3133
3133
|
text-wrap: nowrap;
|
3134
3134
|
flex: 1;
|
3135
3135
|
}
|
3136
|
-
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-title .cancel-icon {
|
3136
|
+
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-title .sjs-cancel-icon {
|
3137
3137
|
flex: 0 0 50px;
|
3138
3138
|
}
|
3139
3139
|
.gc-sjs-file-preview-dialog-container .gc-sjs-file-preview-dialog-content {
|
@@ -4128,7 +4128,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4128
4128
|
background-color: white;
|
4129
4129
|
padding-left: 10px;
|
4130
4130
|
}
|
4131
|
-
.date-group-dialog-header > .cancel-icon {
|
4131
|
+
.date-group-dialog-header > .sjs-cancel-icon {
|
4132
4132
|
line-height: 26px;
|
4133
4133
|
border: none;
|
4134
4134
|
}
|
@@ -4140,7 +4140,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4140
4140
|
background-color: white;
|
4141
4141
|
padding-left: 10px;
|
4142
4142
|
}
|
4143
|
-
.number-group-dialog-header > .cancel-icon {
|
4143
|
+
.number-group-dialog-header > .sjs-cancel-icon {
|
4144
4144
|
line-height: 28px;
|
4145
4145
|
border: none;
|
4146
4146
|
}
|
@@ -4280,7 +4280,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4280
4280
|
width: calc(100% - 50px);
|
4281
4281
|
}
|
4282
4282
|
|
4283
|
-
.cancel-icon {
|
4283
|
+
.sjs-cancel-icon {
|
4284
4284
|
height: 100%;
|
4285
4285
|
width: 50px;
|
4286
4286
|
font-size: 26px;
|
@@ -4292,7 +4292,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4292
4292
|
border: none;
|
4293
4293
|
cursor: default;
|
4294
4294
|
}
|
4295
|
-
.cancel-icon:hover {
|
4295
|
+
.sjs-cancel-icon:hover {
|
4296
4296
|
background-color: rgb(232, 17, 35);
|
4297
4297
|
color: white;
|
4298
4298
|
}
|
@@ -4715,6 +4715,7 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
4715
4715
|
margin-top: 11px;
|
4716
4716
|
overflow: hidden;
|
4717
4717
|
text-overflow: ellipsis;
|
4718
|
+
white-space: pre;
|
4718
4719
|
}
|
4719
4720
|
|
4720
4721
|
.gc-sort-select {
|