@mescius/spread-sheets 18.2.3 → 18.2.5
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 +2 -2
- package/dist/gc.spread.sheets.d.ts +40 -0
- package/package.json +1 -1
- package/styles/gc.spread.sheets.css +17 -0
- package/styles/gc.spread.sheets.excel2013darkGray.css +14 -0
- package/styles/gc.spread.sheets.excel2013lightGray.css +14 -0
- package/styles/gc.spread.sheets.excel2013white.css +14 -0
- package/styles/gc.spread.sheets.excel2016black.css +14 -0
- package/styles/gc.spread.sheets.excel2016colorful.css +14 -0
- package/styles/gc.spread.sheets.excel2016darkGray.css +14 -0
|
@@ -12936,6 +12936,19 @@ declare module GC{
|
|
|
12936
12936
|
}
|
|
12937
12937
|
|
|
12938
12938
|
|
|
12939
|
+
export interface IColumnChangingEventArgs{
|
|
12940
|
+
sheet: GC.Spread.Sheets.Worksheet;
|
|
12941
|
+
sheetName: string;
|
|
12942
|
+
col: number;
|
|
12943
|
+
sheetArea: SheetArea;
|
|
12944
|
+
propertyName: string;
|
|
12945
|
+
oldValue: any;
|
|
12946
|
+
newValue: any;
|
|
12947
|
+
count?: number;
|
|
12948
|
+
cancel: boolean;
|
|
12949
|
+
}
|
|
12950
|
+
|
|
12951
|
+
|
|
12939
12952
|
export interface IColumnWidthChangedEventArgs{
|
|
12940
12953
|
sheet: GC.Spread.Sheets.Worksheet;
|
|
12941
12954
|
sheetName: string;
|
|
@@ -13795,6 +13808,19 @@ declare module GC{
|
|
|
13795
13808
|
}
|
|
13796
13809
|
|
|
13797
13810
|
|
|
13811
|
+
export interface IRowChangingEventArgs{
|
|
13812
|
+
sheet: GC.Spread.Sheets.Worksheet;
|
|
13813
|
+
sheetName: string;
|
|
13814
|
+
row: number;
|
|
13815
|
+
sheetArea: SheetArea;
|
|
13816
|
+
propertyName: string;
|
|
13817
|
+
oldValue: any;
|
|
13818
|
+
newValue: any;
|
|
13819
|
+
count?: number;
|
|
13820
|
+
cancel: boolean;
|
|
13821
|
+
}
|
|
13822
|
+
|
|
13823
|
+
|
|
13798
13824
|
export interface IRowHeightChangedEventArgs{
|
|
13799
13825
|
sheet: GC.Spread.Sheets.Worksheet;
|
|
13800
13826
|
sheetName: string;
|
|
@@ -18885,6 +18911,9 @@ declare module GC{
|
|
|
18885
18911
|
* @param eventParam *number* `col` The column index.
|
|
18886
18912
|
* @param eventParam *{@link GC.Spread.Sheets.SheetArea}* `sheetArea` The sheetArea of the column.
|
|
18887
18913
|
* @param eventParam *string* `propertyName` The name of the column's property that has changed.
|
|
18914
|
+
* @param eventParam *Object* `oldValue` The old value of the property.
|
|
18915
|
+
* @param eventParam *Object* `newValue` The new value of the property.
|
|
18916
|
+
* @param eventParam *number* `[count]` The number of columns affected.
|
|
18888
18917
|
* @param eventParam *boolean* `isUndo` Whether this event is from a undo operation.
|
|
18889
18918
|
* @example
|
|
18890
18919
|
* ```javascript
|
|
@@ -18906,6 +18935,10 @@ declare module GC{
|
|
|
18906
18935
|
* @param eventParam *number* `col` The column index.
|
|
18907
18936
|
* @param eventParam *{@link GC.Spread.Sheets.SheetArea}* `sheetArea` The sheetArea of the column.
|
|
18908
18937
|
* @param eventParam *string* `propertyName` The name of the column's property that has changed.
|
|
18938
|
+
* @param eventParam *Object* `oldValue` The old value of the property.
|
|
18939
|
+
* @param eventParam *Object* `newValue` The new value of the property.
|
|
18940
|
+
* @param eventParam *number* `[count]` The number of columns affected.
|
|
18941
|
+
* @param eventParam *boolean* `cancel` Whether the operation should be canceled.
|
|
18909
18942
|
* @example
|
|
18910
18943
|
* ```javascript
|
|
18911
18944
|
* //This example uses the ColumnChanging event.
|
|
@@ -20064,6 +20097,9 @@ declare module GC{
|
|
|
20064
20097
|
* @param eventParam *number* `row` The row index.
|
|
20065
20098
|
* @param eventParam *{@link GC.Spread.Sheets.SheetArea}* `sheetArea` The sheetArea of the row.
|
|
20066
20099
|
* @param eventParam *string* `propertyName` The name of the row's property that has changed.
|
|
20100
|
+
* @param eventParam *Object* `oldValue` The old value of the property.
|
|
20101
|
+
* @param eventParam *Object* `newValue` The new value of the property.
|
|
20102
|
+
* @param eventParam *number* `[count]` The number of rows affected.
|
|
20067
20103
|
* @param eventParam *boolean* `isUndo` Whether this event is from a undo operation.
|
|
20068
20104
|
* @example
|
|
20069
20105
|
* ```javascript
|
|
@@ -20083,6 +20119,10 @@ declare module GC{
|
|
|
20083
20119
|
* @param eventParam *number* `row` The row index.
|
|
20084
20120
|
* @param eventParam *{@link GC.Spread.Sheets.SheetArea}* `sheetArea` The sheetArea of the row.
|
|
20085
20121
|
* @param eventParam *string* `propertyName` The name of the row's property that has changed.
|
|
20122
|
+
* @param eventParam *Object* `oldValue` The old value of the property.
|
|
20123
|
+
* @param eventParam *Object* `newValue` The new value of the property.
|
|
20124
|
+
* @param eventParam *number* `[count]` The number of rows affected.
|
|
20125
|
+
* @param eventParam *boolean* `cancel` Whether the operation should be canceled.
|
|
20086
20126
|
* @example
|
|
20087
20127
|
* ```javascript
|
|
20088
20128
|
* //This example uses the RowChanging event.
|
package/package.json
CHANGED
|
@@ -1288,6 +1288,17 @@ div.gc-search-outer-div input::-ms-clear {
|
|
|
1288
1288
|
white-space: pre;
|
|
1289
1289
|
}
|
|
1290
1290
|
|
|
1291
|
+
.gc-ui-contextmenu-sheet-tab-text {
|
|
1292
|
+
display: inline-block;
|
|
1293
|
+
box-sizing: border-box;
|
|
1294
|
+
width: 164px;
|
|
1295
|
+
padding-left: 0;
|
|
1296
|
+
padding-right: 2px;
|
|
1297
|
+
white-space: nowrap;
|
|
1298
|
+
overflow: hidden;
|
|
1299
|
+
text-overflow: ellipsis;
|
|
1300
|
+
}
|
|
1301
|
+
|
|
1291
1302
|
.gc-ui-contextmenu-disable {
|
|
1292
1303
|
color: #b1b1b1 !important;
|
|
1293
1304
|
}
|
|
@@ -2034,6 +2045,9 @@ input.gc-checkbox-cell-type-input[type=checkbox]:after {
|
|
|
2034
2045
|
font-size: 12px;
|
|
2035
2046
|
padding: 1px 4px;
|
|
2036
2047
|
border: 1px solid #000;
|
|
2048
|
+
overflow: hidden;
|
|
2049
|
+
text-overflow: ellipsis;
|
|
2050
|
+
white-space: nowrap;
|
|
2037
2051
|
}
|
|
2038
2052
|
.gc-sjs-paste-special-dialog-container .gc-sjs-paste-special-dialog-content .gc-sjs-transform-formula-editor-input:focus-visible {
|
|
2039
2053
|
border-width: 1px;
|
|
@@ -7710,6 +7724,9 @@ div[gcUIElement=gcSpread] .gc-base-spread-div {
|
|
|
7710
7724
|
.gc-ui-none-icon-contextmenu-container .gc-ui-contextmenu-icon {
|
|
7711
7725
|
margin-right: 12px;
|
|
7712
7726
|
}
|
|
7727
|
+
.gc-ui-none-icon-contextmenu-container .gc-ui-contextmenu-sheet-tab-text {
|
|
7728
|
+
width: 152px;
|
|
7729
|
+
}
|
|
7713
7730
|
|
|
7714
7731
|
.gc-ui-contextmenu-search-label {
|
|
7715
7732
|
margin-left: 30px;
|
|
@@ -1329,6 +1329,17 @@ div.gc-search-outer-div input::-ms-clear {
|
|
|
1329
1329
|
white-space: pre;
|
|
1330
1330
|
}
|
|
1331
1331
|
|
|
1332
|
+
.gc-ui-contextmenu-sheet-tab-text {
|
|
1333
|
+
display: inline-block;
|
|
1334
|
+
box-sizing: border-box;
|
|
1335
|
+
width: 164px;
|
|
1336
|
+
padding-left: 0;
|
|
1337
|
+
padding-right: 2px;
|
|
1338
|
+
white-space: nowrap;
|
|
1339
|
+
overflow: hidden;
|
|
1340
|
+
text-overflow: ellipsis;
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1332
1343
|
.gc-ui-contextmenu-disable {
|
|
1333
1344
|
color: #b1b1b1 !important;
|
|
1334
1345
|
}
|
|
@@ -2074,6 +2085,9 @@ input.gc-checkbox-cell-type-input[type=checkbox]:after {
|
|
|
2074
2085
|
font-size: 12px;
|
|
2075
2086
|
padding: 1px 4px;
|
|
2076
2087
|
border: 1px solid #000;
|
|
2088
|
+
overflow: hidden;
|
|
2089
|
+
text-overflow: ellipsis;
|
|
2090
|
+
white-space: nowrap;
|
|
2077
2091
|
}
|
|
2078
2092
|
.gc-sjs-paste-special-dialog-container .gc-sjs-paste-special-dialog-content .gc-sjs-transform-formula-editor-input:focus-visible {
|
|
2079
2093
|
border-width: 1px;
|
|
@@ -1329,6 +1329,17 @@ div.gc-search-outer-div input::-ms-clear {
|
|
|
1329
1329
|
white-space: pre;
|
|
1330
1330
|
}
|
|
1331
1331
|
|
|
1332
|
+
.gc-ui-contextmenu-sheet-tab-text {
|
|
1333
|
+
display: inline-block;
|
|
1334
|
+
box-sizing: border-box;
|
|
1335
|
+
width: 164px;
|
|
1336
|
+
padding-left: 0;
|
|
1337
|
+
padding-right: 2px;
|
|
1338
|
+
white-space: nowrap;
|
|
1339
|
+
overflow: hidden;
|
|
1340
|
+
text-overflow: ellipsis;
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1332
1343
|
.gc-ui-contextmenu-disable {
|
|
1333
1344
|
color: #b1b1b1 !important;
|
|
1334
1345
|
}
|
|
@@ -2079,6 +2090,9 @@ input.gc-checkbox-cell-type-input[type=checkbox]:after {
|
|
|
2079
2090
|
font-size: 12px;
|
|
2080
2091
|
padding: 1px 4px;
|
|
2081
2092
|
border: 1px solid #000;
|
|
2093
|
+
overflow: hidden;
|
|
2094
|
+
text-overflow: ellipsis;
|
|
2095
|
+
white-space: nowrap;
|
|
2082
2096
|
}
|
|
2083
2097
|
.gc-sjs-paste-special-dialog-container .gc-sjs-paste-special-dialog-content .gc-sjs-transform-formula-editor-input:focus-visible {
|
|
2084
2098
|
border-width: 1px;
|
|
@@ -1320,6 +1320,17 @@ div.gc-search-outer-div input::-ms-clear {
|
|
|
1320
1320
|
white-space: pre;
|
|
1321
1321
|
}
|
|
1322
1322
|
|
|
1323
|
+
.gc-ui-contextmenu-sheet-tab-text {
|
|
1324
|
+
display: inline-block;
|
|
1325
|
+
box-sizing: border-box;
|
|
1326
|
+
width: 164px;
|
|
1327
|
+
padding-left: 0;
|
|
1328
|
+
padding-right: 2px;
|
|
1329
|
+
white-space: nowrap;
|
|
1330
|
+
overflow: hidden;
|
|
1331
|
+
text-overflow: ellipsis;
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1323
1334
|
.gc-ui-contextmenu-disable {
|
|
1324
1335
|
color: #b1b1b1 !important;
|
|
1325
1336
|
}
|
|
@@ -2066,6 +2077,9 @@ input.gc-checkbox-cell-type-input[type=checkbox]:after {
|
|
|
2066
2077
|
font-size: 12px;
|
|
2067
2078
|
padding: 1px 4px;
|
|
2068
2079
|
border: 1px solid #000;
|
|
2080
|
+
overflow: hidden;
|
|
2081
|
+
text-overflow: ellipsis;
|
|
2082
|
+
white-space: nowrap;
|
|
2069
2083
|
}
|
|
2070
2084
|
.gc-sjs-paste-special-dialog-container .gc-sjs-paste-special-dialog-content .gc-sjs-transform-formula-editor-input:focus-visible {
|
|
2071
2085
|
border-width: 1px;
|
|
@@ -1331,6 +1331,17 @@ div.gc-search-outer-div input::-ms-clear {
|
|
|
1331
1331
|
white-space: pre;
|
|
1332
1332
|
}
|
|
1333
1333
|
|
|
1334
|
+
.gc-ui-contextmenu-sheet-tab-text {
|
|
1335
|
+
display: inline-block;
|
|
1336
|
+
box-sizing: border-box;
|
|
1337
|
+
width: 164px;
|
|
1338
|
+
padding-left: 0;
|
|
1339
|
+
padding-right: 2px;
|
|
1340
|
+
white-space: nowrap;
|
|
1341
|
+
overflow: hidden;
|
|
1342
|
+
text-overflow: ellipsis;
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1334
1345
|
.gc-ui-contextmenu-disable {
|
|
1335
1346
|
color: #b1b1b1 !important;
|
|
1336
1347
|
}
|
|
@@ -2077,6 +2088,9 @@ input.gc-checkbox-cell-type-input[type=checkbox]:after {
|
|
|
2077
2088
|
font-size: 12px;
|
|
2078
2089
|
padding: 1px 4px;
|
|
2079
2090
|
border: 1px solid #000;
|
|
2091
|
+
overflow: hidden;
|
|
2092
|
+
text-overflow: ellipsis;
|
|
2093
|
+
white-space: nowrap;
|
|
2080
2094
|
}
|
|
2081
2095
|
.gc-sjs-paste-special-dialog-container .gc-sjs-paste-special-dialog-content .gc-sjs-transform-formula-editor-input:focus-visible {
|
|
2082
2096
|
border-width: 1px;
|
|
@@ -1325,6 +1325,17 @@ div.gc-search-outer-div input::-ms-clear {
|
|
|
1325
1325
|
white-space: pre;
|
|
1326
1326
|
}
|
|
1327
1327
|
|
|
1328
|
+
.gc-ui-contextmenu-sheet-tab-text {
|
|
1329
|
+
display: inline-block;
|
|
1330
|
+
box-sizing: border-box;
|
|
1331
|
+
width: 164px;
|
|
1332
|
+
padding-left: 0;
|
|
1333
|
+
padding-right: 2px;
|
|
1334
|
+
white-space: nowrap;
|
|
1335
|
+
overflow: hidden;
|
|
1336
|
+
text-overflow: ellipsis;
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1328
1339
|
.gc-ui-contextmenu-disable {
|
|
1329
1340
|
color: #b1b1b1 !important;
|
|
1330
1341
|
}
|
|
@@ -2070,6 +2081,9 @@ input.gc-checkbox-cell-type-input[type=checkbox]:after {
|
|
|
2070
2081
|
font-size: 12px;
|
|
2071
2082
|
padding: 1px 4px;
|
|
2072
2083
|
border: 1px solid #000;
|
|
2084
|
+
overflow: hidden;
|
|
2085
|
+
text-overflow: ellipsis;
|
|
2086
|
+
white-space: nowrap;
|
|
2073
2087
|
}
|
|
2074
2088
|
.gc-sjs-paste-special-dialog-container .gc-sjs-paste-special-dialog-content .gc-sjs-transform-formula-editor-input:focus-visible {
|
|
2075
2089
|
border-width: 1px;
|
|
@@ -1321,6 +1321,17 @@ div.gc-search-outer-div input::-ms-clear {
|
|
|
1321
1321
|
white-space: pre;
|
|
1322
1322
|
}
|
|
1323
1323
|
|
|
1324
|
+
.gc-ui-contextmenu-sheet-tab-text {
|
|
1325
|
+
display: inline-block;
|
|
1326
|
+
box-sizing: border-box;
|
|
1327
|
+
width: 164px;
|
|
1328
|
+
padding-left: 0;
|
|
1329
|
+
padding-right: 2px;
|
|
1330
|
+
white-space: nowrap;
|
|
1331
|
+
overflow: hidden;
|
|
1332
|
+
text-overflow: ellipsis;
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1324
1335
|
.gc-ui-contextmenu-disable {
|
|
1325
1336
|
color: #b1b1b1 !important;
|
|
1326
1337
|
}
|
|
@@ -2066,6 +2077,9 @@ input.gc-checkbox-cell-type-input[type=checkbox]:after {
|
|
|
2066
2077
|
font-size: 12px;
|
|
2067
2078
|
padding: 1px 4px;
|
|
2068
2079
|
border: 1px solid #000;
|
|
2080
|
+
overflow: hidden;
|
|
2081
|
+
text-overflow: ellipsis;
|
|
2082
|
+
white-space: nowrap;
|
|
2069
2083
|
}
|
|
2070
2084
|
.gc-sjs-paste-special-dialog-container .gc-sjs-paste-special-dialog-content .gc-sjs-transform-formula-editor-input:focus-visible {
|
|
2071
2085
|
border-width: 1px;
|