@odoo/o-spreadsheet 19.1.0-alpha.7 → 19.1.0-alpha.9
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/o-spreadsheet-engine.d.ts +19 -22
- package/dist/o-spreadsheet-engine.esm.js +489 -198
- package/dist/o-spreadsheet-engine.iife.js +489 -198
- package/dist/o-spreadsheet-engine.min.iife.js +313 -313
- package/dist/o-spreadsheet.d.ts +259 -171
- package/dist/o_spreadsheet.esm.js +804 -424
- package/dist/o_spreadsheet.iife.js +804 -424
- package/dist/o_spreadsheet.min.iife.js +317 -317
- package/dist/o_spreadsheet.xml +147 -37
- package/package.json +1 -1
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -115,6 +115,10 @@ interface Range {
|
|
|
115
115
|
/** the sheet on which the range is defined */
|
|
116
116
|
readonly sheetId: UID;
|
|
117
117
|
}
|
|
118
|
+
interface BoundedRange {
|
|
119
|
+
sheetId: UID;
|
|
120
|
+
zone: Zone;
|
|
121
|
+
}
|
|
118
122
|
interface RangeStringOptions {
|
|
119
123
|
useBoundedReference?: boolean;
|
|
120
124
|
useFixedReference?: boolean;
|
|
@@ -1277,10 +1281,6 @@ interface FileStore {
|
|
|
1277
1281
|
* Upload a file to a server and returns its path.
|
|
1278
1282
|
*/
|
|
1279
1283
|
upload(file: File): Promise<FilePath>;
|
|
1280
|
-
/**
|
|
1281
|
-
* Delete a file from the server
|
|
1282
|
-
*/
|
|
1283
|
-
delete(filePath: FilePath): Promise<void>;
|
|
1284
1284
|
/**
|
|
1285
1285
|
* get File from the server
|
|
1286
1286
|
*/
|
|
@@ -1312,10 +1312,6 @@ declare class ImagePlugin extends CorePlugin<ImageState> implements ImageState {
|
|
|
1312
1312
|
constructor(config: CorePluginConfig);
|
|
1313
1313
|
allowDispatch(cmd: CoreCommand): CommandResult.Success | CommandResult.InvalidFigureId;
|
|
1314
1314
|
handle(cmd: CoreCommand): void;
|
|
1315
|
-
/**
|
|
1316
|
-
* Delete unused images from the file store
|
|
1317
|
-
*/
|
|
1318
|
-
garbageCollectExternalResources(): void;
|
|
1319
1315
|
getImage(figureId: UID): Image;
|
|
1320
1316
|
getImagePath(figureId: UID): string;
|
|
1321
1317
|
getImageSize(figureId: UID): FigureSize;
|
|
@@ -1323,7 +1319,6 @@ declare class ImagePlugin extends CorePlugin<ImageState> implements ImageState {
|
|
|
1323
1319
|
import(data: WorkbookData): void;
|
|
1324
1320
|
export(data: WorkbookData): void;
|
|
1325
1321
|
exportForExcel(data: ExcelWorkbookData): void;
|
|
1326
|
-
private getAllImages;
|
|
1327
1322
|
}
|
|
1328
1323
|
|
|
1329
1324
|
type SheetMergeCellMap = Record<number, Record<number, number | undefined> | undefined>;
|
|
@@ -1442,6 +1437,7 @@ interface CommonPivotCoreDefinition {
|
|
|
1442
1437
|
sortedColumn?: PivotSortedColumn;
|
|
1443
1438
|
collapsedDomains?: PivotCollapsedDomains;
|
|
1444
1439
|
customFields?: Record<string, PivotCustomGroupedField>;
|
|
1440
|
+
style?: PivotStyle;
|
|
1445
1441
|
}
|
|
1446
1442
|
interface PivotSortedColumn {
|
|
1447
1443
|
order: SortDirection;
|
|
@@ -1569,10 +1565,12 @@ interface DimensionTreeNode {
|
|
|
1569
1565
|
width: number;
|
|
1570
1566
|
}
|
|
1571
1567
|
type DimensionTree = DimensionTreeNode[];
|
|
1572
|
-
interface
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1568
|
+
interface PivotStyle {
|
|
1569
|
+
numberOfRows?: number;
|
|
1570
|
+
numberOfColumns?: number;
|
|
1571
|
+
displayTotals?: boolean;
|
|
1572
|
+
displayColumnHeaders?: boolean;
|
|
1573
|
+
displayMeasuresRow?: boolean;
|
|
1576
1574
|
}
|
|
1577
1575
|
|
|
1578
1576
|
interface Pivot$1 {
|
|
@@ -2852,11 +2850,6 @@ declare class CorePlugin<State = any> extends BasePlugin<State, CoreCommand> imp
|
|
|
2852
2850
|
* @param sheetName couple of old and new sheet names to adapt ranges pointing to that sheet
|
|
2853
2851
|
*/
|
|
2854
2852
|
adaptRanges(applyChange: ApplyRangeChange, sheetId: UID, sheetName: AdaptSheetName): void;
|
|
2855
|
-
/**
|
|
2856
|
-
* Implement this method to clean unused external resources, such as images
|
|
2857
|
-
* stored on a server which have been deleted.
|
|
2858
|
-
*/
|
|
2859
|
-
garbageCollectExternalResources(): void;
|
|
2860
2853
|
}
|
|
2861
2854
|
|
|
2862
2855
|
type ZoneBorderData = {
|
|
@@ -3324,7 +3317,6 @@ declare class Model extends EventBus<any> implements CommandDispatcher {
|
|
|
3324
3317
|
* (e.g. open a document with several sheet and click on download before visiting each sheet)
|
|
3325
3318
|
*/
|
|
3326
3319
|
exportXLSX(): Promise<XLSXExport>;
|
|
3327
|
-
garbageCollectExternalResources(): void;
|
|
3328
3320
|
}
|
|
3329
3321
|
|
|
3330
3322
|
type SprintfValues = (string | String | number)[] | [{
|
|
@@ -3967,7 +3959,7 @@ declare class SpreadsheetPivotTable {
|
|
|
3967
3959
|
*/
|
|
3968
3960
|
getNumberOfDataColumns(): number;
|
|
3969
3961
|
private getSkippedRows;
|
|
3970
|
-
getPivotCells(
|
|
3962
|
+
getPivotCells(pivotStyle?: Required<PivotStyle>): PivotTableCell[][];
|
|
3971
3963
|
getRowTree(): DimensionTree;
|
|
3972
3964
|
getColTree(): DimensionTree;
|
|
3973
3965
|
private isTotalRow;
|
|
@@ -7173,7 +7165,7 @@ interface ChartBuilder {
|
|
|
7173
7165
|
dataSeriesLimit?: number;
|
|
7174
7166
|
}
|
|
7175
7167
|
|
|
7176
|
-
interface Props$
|
|
7168
|
+
interface Props$1t {
|
|
7177
7169
|
label?: string;
|
|
7178
7170
|
value: boolean;
|
|
7179
7171
|
className?: string;
|
|
@@ -7182,7 +7174,7 @@ interface Props$1s {
|
|
|
7182
7174
|
disabled?: boolean;
|
|
7183
7175
|
onChange: (value: boolean) => void;
|
|
7184
7176
|
}
|
|
7185
|
-
declare class Checkbox extends Component<Props$
|
|
7177
|
+
declare class Checkbox extends Component<Props$1t, SpreadsheetChildEnv> {
|
|
7186
7178
|
static template: string;
|
|
7187
7179
|
static props: {
|
|
7188
7180
|
label: {
|
|
@@ -7217,10 +7209,10 @@ declare class Checkbox extends Component<Props$1s, SpreadsheetChildEnv> {
|
|
|
7217
7209
|
onChange(ev: InputEvent): void;
|
|
7218
7210
|
}
|
|
7219
7211
|
|
|
7220
|
-
interface Props$
|
|
7212
|
+
interface Props$1s {
|
|
7221
7213
|
class?: string;
|
|
7222
7214
|
}
|
|
7223
|
-
declare class Section extends Component<Props$
|
|
7215
|
+
declare class Section extends Component<Props$1s, SpreadsheetChildEnv> {
|
|
7224
7216
|
static template: string;
|
|
7225
7217
|
static props: {
|
|
7226
7218
|
class: {
|
|
@@ -7414,7 +7406,7 @@ declare class SelectionInputStore extends SpreadsheetStore {
|
|
|
7414
7406
|
getIndex(rangeId: number | null): number | null;
|
|
7415
7407
|
}
|
|
7416
7408
|
|
|
7417
|
-
interface Props$
|
|
7409
|
+
interface Props$1r {
|
|
7418
7410
|
ranges: string[];
|
|
7419
7411
|
hasSingleRange?: boolean;
|
|
7420
7412
|
required?: boolean;
|
|
@@ -7442,7 +7434,7 @@ interface SelectionRange extends Omit<RangeInputValue, "color"> {
|
|
|
7442
7434
|
* onSelectionChanged is called every time the input value
|
|
7443
7435
|
* changes.
|
|
7444
7436
|
*/
|
|
7445
|
-
declare class SelectionInput extends Component<Props$
|
|
7437
|
+
declare class SelectionInput extends Component<Props$1r, SpreadsheetChildEnv> {
|
|
7446
7438
|
static template: string;
|
|
7447
7439
|
static props: {
|
|
7448
7440
|
ranges: ArrayConstructor;
|
|
@@ -7519,7 +7511,7 @@ declare class SelectionInput extends Component<Props$1q, SpreadsheetChildEnv> {
|
|
|
7519
7511
|
confirm(): void;
|
|
7520
7512
|
}
|
|
7521
7513
|
|
|
7522
|
-
interface Props$
|
|
7514
|
+
interface Props$1q {
|
|
7523
7515
|
ranges: CustomizedDataSet[];
|
|
7524
7516
|
hasSingleRange?: boolean;
|
|
7525
7517
|
onSelectionChanged: (ranges: string[]) => void;
|
|
@@ -7532,7 +7524,7 @@ interface Props$1p {
|
|
|
7532
7524
|
canChangeDatasetOrientation?: boolean;
|
|
7533
7525
|
onFlipAxis?: (structure: string) => void;
|
|
7534
7526
|
}
|
|
7535
|
-
declare class ChartDataSeries extends Component<Props$
|
|
7527
|
+
declare class ChartDataSeries extends Component<Props$1q, SpreadsheetChildEnv> {
|
|
7536
7528
|
static template: string;
|
|
7537
7529
|
static components: {
|
|
7538
7530
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7581,12 +7573,12 @@ declare class ChartDataSeries extends Component<Props$1p, SpreadsheetChildEnv> {
|
|
|
7581
7573
|
get title(): string;
|
|
7582
7574
|
}
|
|
7583
7575
|
|
|
7584
|
-
interface Props$
|
|
7576
|
+
interface Props$1p {
|
|
7585
7577
|
messages: string[];
|
|
7586
7578
|
msgType: "warning" | "error" | "info";
|
|
7587
7579
|
singleBox?: boolean;
|
|
7588
7580
|
}
|
|
7589
|
-
declare class ValidationMessages extends Component<Props$
|
|
7581
|
+
declare class ValidationMessages extends Component<Props$1p, SpreadsheetChildEnv> {
|
|
7590
7582
|
static template: string;
|
|
7591
7583
|
static props: {
|
|
7592
7584
|
messages: ArrayConstructor;
|
|
@@ -7600,10 +7592,10 @@ declare class ValidationMessages extends Component<Props$1o, SpreadsheetChildEnv
|
|
|
7600
7592
|
get alertBoxes(): string[][];
|
|
7601
7593
|
}
|
|
7602
7594
|
|
|
7603
|
-
interface Props$
|
|
7595
|
+
interface Props$1o {
|
|
7604
7596
|
messages: string[];
|
|
7605
7597
|
}
|
|
7606
|
-
declare class ChartErrorSection extends Component<Props$
|
|
7598
|
+
declare class ChartErrorSection extends Component<Props$1o, SpreadsheetChildEnv> {
|
|
7607
7599
|
static template: string;
|
|
7608
7600
|
static components: {
|
|
7609
7601
|
Section: typeof Section;
|
|
@@ -7617,7 +7609,7 @@ declare class ChartErrorSection extends Component<Props$1n, SpreadsheetChildEnv>
|
|
|
7617
7609
|
};
|
|
7618
7610
|
}
|
|
7619
7611
|
|
|
7620
|
-
interface Props$
|
|
7612
|
+
interface Props$1n {
|
|
7621
7613
|
title?: string;
|
|
7622
7614
|
range: string;
|
|
7623
7615
|
isInvalid: boolean;
|
|
@@ -7630,7 +7622,7 @@ interface Props$1m {
|
|
|
7630
7622
|
onChange: (value: boolean) => void;
|
|
7631
7623
|
}>;
|
|
7632
7624
|
}
|
|
7633
|
-
declare class ChartLabelRange extends Component<Props$
|
|
7625
|
+
declare class ChartLabelRange extends Component<Props$1n, SpreadsheetChildEnv> {
|
|
7634
7626
|
static template: string;
|
|
7635
7627
|
static components: {
|
|
7636
7628
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7651,10 +7643,10 @@ declare class ChartLabelRange extends Component<Props$1m, SpreadsheetChildEnv> {
|
|
|
7651
7643
|
optional: boolean;
|
|
7652
7644
|
};
|
|
7653
7645
|
};
|
|
7654
|
-
static defaultProps: Partial<Props$
|
|
7646
|
+
static defaultProps: Partial<Props$1n>;
|
|
7655
7647
|
}
|
|
7656
7648
|
|
|
7657
|
-
interface Props$
|
|
7649
|
+
interface Props$1m {
|
|
7658
7650
|
chartId: UID;
|
|
7659
7651
|
definition: ChartWithDataSetDefinition;
|
|
7660
7652
|
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
@@ -7664,7 +7656,7 @@ interface ChartPanelState {
|
|
|
7664
7656
|
datasetDispatchResult?: DispatchResult;
|
|
7665
7657
|
labelsDispatchResult?: DispatchResult;
|
|
7666
7658
|
}
|
|
7667
|
-
declare class GenericChartConfigPanel extends Component<Props$
|
|
7659
|
+
declare class GenericChartConfigPanel extends Component<Props$1m, SpreadsheetChildEnv> {
|
|
7668
7660
|
static template: string;
|
|
7669
7661
|
static components: {
|
|
7670
7662
|
ChartDataSeries: typeof ChartDataSeries;
|
|
@@ -7733,11 +7725,11 @@ declare class BarConfigPanel extends GenericChartConfigPanel {
|
|
|
7733
7725
|
onUpdateStacked(stacked: boolean): void;
|
|
7734
7726
|
}
|
|
7735
7727
|
|
|
7736
|
-
interface Props$
|
|
7728
|
+
interface Props$1l {
|
|
7737
7729
|
isCollapsed: boolean;
|
|
7738
7730
|
slots: any;
|
|
7739
7731
|
}
|
|
7740
|
-
declare class Collapse extends Component<Props$
|
|
7732
|
+
declare class Collapse extends Component<Props$1l, SpreadsheetChildEnv> {
|
|
7741
7733
|
static template: string;
|
|
7742
7734
|
static props: {
|
|
7743
7735
|
isCollapsed: BooleanConstructor;
|
|
@@ -7776,12 +7768,12 @@ interface Choice$1 {
|
|
|
7776
7768
|
value: string;
|
|
7777
7769
|
label: string;
|
|
7778
7770
|
}
|
|
7779
|
-
interface Props$
|
|
7771
|
+
interface Props$1k {
|
|
7780
7772
|
choices: Choice$1[];
|
|
7781
7773
|
onChange: (value: string) => void;
|
|
7782
7774
|
selectedValue: string;
|
|
7783
7775
|
}
|
|
7784
|
-
declare class BadgeSelection extends Component<Props$
|
|
7776
|
+
declare class BadgeSelection extends Component<Props$1k, SpreadsheetChildEnv> {
|
|
7785
7777
|
static template: string;
|
|
7786
7778
|
static props: {
|
|
7787
7779
|
choices: ArrayConstructor;
|
|
@@ -7790,6 +7782,91 @@ declare class BadgeSelection extends Component<Props$1j, SpreadsheetChildEnv> {
|
|
|
7790
7782
|
};
|
|
7791
7783
|
}
|
|
7792
7784
|
|
|
7785
|
+
interface GenericInputProps {
|
|
7786
|
+
value: string | number;
|
|
7787
|
+
onChange: (value: string) => void;
|
|
7788
|
+
class?: string;
|
|
7789
|
+
id?: string;
|
|
7790
|
+
placeholder?: string;
|
|
7791
|
+
autofocus?: boolean;
|
|
7792
|
+
selectContentOnFocus?: boolean;
|
|
7793
|
+
}
|
|
7794
|
+
declare class GenericInput<T extends GenericInputProps> extends Component<T, SpreadsheetChildEnv> {
|
|
7795
|
+
static props: {
|
|
7796
|
+
value: (StringConstructor | NumberConstructor)[];
|
|
7797
|
+
onChange: FunctionConstructor;
|
|
7798
|
+
class: {
|
|
7799
|
+
type: StringConstructor;
|
|
7800
|
+
optional: boolean;
|
|
7801
|
+
};
|
|
7802
|
+
id: {
|
|
7803
|
+
type: StringConstructor;
|
|
7804
|
+
optional: boolean;
|
|
7805
|
+
};
|
|
7806
|
+
placeholder: {
|
|
7807
|
+
type: StringConstructor;
|
|
7808
|
+
optional: boolean;
|
|
7809
|
+
};
|
|
7810
|
+
autofocus: {
|
|
7811
|
+
type: BooleanConstructor;
|
|
7812
|
+
optional: boolean;
|
|
7813
|
+
};
|
|
7814
|
+
alwaysShowBorder: {
|
|
7815
|
+
type: BooleanConstructor;
|
|
7816
|
+
optional: boolean;
|
|
7817
|
+
};
|
|
7818
|
+
selectContentOnFocus: {
|
|
7819
|
+
type: BooleanConstructor;
|
|
7820
|
+
optional: boolean;
|
|
7821
|
+
};
|
|
7822
|
+
};
|
|
7823
|
+
protected refName: string;
|
|
7824
|
+
protected inputRef: Ref<HTMLInputElement>;
|
|
7825
|
+
setup(): void;
|
|
7826
|
+
onKeyDown(ev: KeyboardEvent): void;
|
|
7827
|
+
save(keepFocus?: boolean): void;
|
|
7828
|
+
onMouseDown(ev: MouseEvent): void;
|
|
7829
|
+
onMouseUp(ev: MouseEvent): void;
|
|
7830
|
+
}
|
|
7831
|
+
|
|
7832
|
+
interface Props$1j extends GenericInputProps {
|
|
7833
|
+
alwaysShowBorder?: boolean;
|
|
7834
|
+
value: string;
|
|
7835
|
+
}
|
|
7836
|
+
declare class TextInput extends GenericInput<Props$1j> {
|
|
7837
|
+
static template: string;
|
|
7838
|
+
static components: {};
|
|
7839
|
+
static props: {
|
|
7840
|
+
value: (StringConstructor | NumberConstructor)[];
|
|
7841
|
+
onChange: FunctionConstructor;
|
|
7842
|
+
class: {
|
|
7843
|
+
type: StringConstructor;
|
|
7844
|
+
optional: boolean;
|
|
7845
|
+
};
|
|
7846
|
+
id: {
|
|
7847
|
+
type: StringConstructor;
|
|
7848
|
+
optional: boolean;
|
|
7849
|
+
};
|
|
7850
|
+
placeholder: {
|
|
7851
|
+
type: StringConstructor;
|
|
7852
|
+
optional: boolean;
|
|
7853
|
+
};
|
|
7854
|
+
autofocus: {
|
|
7855
|
+
type: BooleanConstructor;
|
|
7856
|
+
optional: boolean;
|
|
7857
|
+
};
|
|
7858
|
+
alwaysShowBorder: {
|
|
7859
|
+
type: BooleanConstructor;
|
|
7860
|
+
optional: boolean;
|
|
7861
|
+
};
|
|
7862
|
+
selectContentOnFocus: {
|
|
7863
|
+
type: BooleanConstructor;
|
|
7864
|
+
optional: boolean;
|
|
7865
|
+
};
|
|
7866
|
+
};
|
|
7867
|
+
get inputClass(): string;
|
|
7868
|
+
}
|
|
7869
|
+
|
|
7793
7870
|
interface Props$1i {
|
|
7794
7871
|
action: ActionSpec;
|
|
7795
7872
|
hasTriangleDownIcon?: boolean;
|
|
@@ -8173,6 +8250,7 @@ declare class ChartTitle extends Component<Props$1e, SpreadsheetChildEnv> {
|
|
|
8173
8250
|
static components: {
|
|
8174
8251
|
Section: typeof Section;
|
|
8175
8252
|
TextStyler: typeof TextStyler;
|
|
8253
|
+
TextInput: typeof TextInput;
|
|
8176
8254
|
};
|
|
8177
8255
|
static props: {
|
|
8178
8256
|
title: {
|
|
@@ -8198,7 +8276,7 @@ declare class ChartTitle extends Component<Props$1e, SpreadsheetChildEnv> {
|
|
|
8198
8276
|
title: string;
|
|
8199
8277
|
placeholder: string;
|
|
8200
8278
|
};
|
|
8201
|
-
updateTitle(
|
|
8279
|
+
updateTitle(value: string): void;
|
|
8202
8280
|
}
|
|
8203
8281
|
|
|
8204
8282
|
interface AxisDefinition {
|
|
@@ -8389,13 +8467,63 @@ declare class ChartLegend extends Component<Props$18, SpreadsheetChildEnv> {
|
|
|
8389
8467
|
updateLegendPosition(ev: any): void;
|
|
8390
8468
|
}
|
|
8391
8469
|
|
|
8392
|
-
interface Props$17 {
|
|
8470
|
+
interface Props$17 extends GenericInputProps {
|
|
8471
|
+
alwaysShowBorder?: boolean;
|
|
8472
|
+
min?: number;
|
|
8473
|
+
max?: number;
|
|
8474
|
+
value: number;
|
|
8475
|
+
}
|
|
8476
|
+
declare class NumberInput extends GenericInput<Props$17> {
|
|
8477
|
+
static template: string;
|
|
8478
|
+
static components: {};
|
|
8479
|
+
static props: {
|
|
8480
|
+
min: {
|
|
8481
|
+
type: NumberConstructor;
|
|
8482
|
+
optional: boolean;
|
|
8483
|
+
};
|
|
8484
|
+
max: {
|
|
8485
|
+
type: NumberConstructor;
|
|
8486
|
+
optional: boolean;
|
|
8487
|
+
};
|
|
8488
|
+
value: (StringConstructor | NumberConstructor)[];
|
|
8489
|
+
onChange: FunctionConstructor;
|
|
8490
|
+
class: {
|
|
8491
|
+
type: StringConstructor;
|
|
8492
|
+
optional: boolean;
|
|
8493
|
+
};
|
|
8494
|
+
id: {
|
|
8495
|
+
type: StringConstructor;
|
|
8496
|
+
optional: boolean;
|
|
8497
|
+
};
|
|
8498
|
+
placeholder: {
|
|
8499
|
+
type: StringConstructor;
|
|
8500
|
+
optional: boolean;
|
|
8501
|
+
};
|
|
8502
|
+
autofocus: {
|
|
8503
|
+
type: BooleanConstructor;
|
|
8504
|
+
optional: boolean;
|
|
8505
|
+
};
|
|
8506
|
+
alwaysShowBorder: {
|
|
8507
|
+
type: BooleanConstructor;
|
|
8508
|
+
optional: boolean;
|
|
8509
|
+
};
|
|
8510
|
+
selectContentOnFocus: {
|
|
8511
|
+
type: BooleanConstructor;
|
|
8512
|
+
optional: boolean;
|
|
8513
|
+
};
|
|
8514
|
+
};
|
|
8515
|
+
debouncedOnChange: DebouncedFunction<(value: string) => void>;
|
|
8516
|
+
save(): void;
|
|
8517
|
+
get inputClass(): string;
|
|
8518
|
+
}
|
|
8519
|
+
|
|
8520
|
+
interface Props$16 {
|
|
8393
8521
|
chartId: UID;
|
|
8394
8522
|
definition: ChartWithDataSetDefinition;
|
|
8395
8523
|
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8396
8524
|
updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8397
8525
|
}
|
|
8398
|
-
declare class SeriesDesignEditor extends Component<Props$
|
|
8526
|
+
declare class SeriesDesignEditor extends Component<Props$16, SpreadsheetChildEnv> {
|
|
8399
8527
|
static template: string;
|
|
8400
8528
|
static components: {
|
|
8401
8529
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
@@ -8423,13 +8551,13 @@ declare class SeriesDesignEditor extends Component<Props$17, SpreadsheetChildEnv
|
|
|
8423
8551
|
getDataSeriesLabel(): string | undefined;
|
|
8424
8552
|
}
|
|
8425
8553
|
|
|
8426
|
-
interface Props$
|
|
8554
|
+
interface Props$15 {
|
|
8427
8555
|
chartId: UID;
|
|
8428
8556
|
definition: ChartWithDataSetDefinition;
|
|
8429
8557
|
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8430
8558
|
updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8431
8559
|
}
|
|
8432
|
-
declare class SeriesWithAxisDesignEditor extends Component<Props$
|
|
8560
|
+
declare class SeriesWithAxisDesignEditor extends Component<Props$15, SpreadsheetChildEnv> {
|
|
8433
8561
|
static template: string;
|
|
8434
8562
|
static components: {
|
|
8435
8563
|
SeriesDesignEditor: typeof SeriesDesignEditor;
|
|
@@ -8437,6 +8565,7 @@ declare class SeriesWithAxisDesignEditor extends Component<Props$16, Spreadsheet
|
|
|
8437
8565
|
RadioSelection: typeof RadioSelection;
|
|
8438
8566
|
Section: typeof Section;
|
|
8439
8567
|
RoundColorPicker: typeof RoundColorPicker;
|
|
8568
|
+
NumberInput: typeof NumberInput;
|
|
8440
8569
|
};
|
|
8441
8570
|
static props: {
|
|
8442
8571
|
chartId: StringConstructor;
|
|
@@ -8463,21 +8592,21 @@ declare class SeriesWithAxisDesignEditor extends Component<Props$16, Spreadsheet
|
|
|
8463
8592
|
onChangePolynomialDegree(index: number, ev: InputEvent): void;
|
|
8464
8593
|
getMaxPolynomialDegree(index: any): number;
|
|
8465
8594
|
get defaultWindowSize(): number;
|
|
8466
|
-
onChangeMovingAverageWindow(index: number,
|
|
8595
|
+
onChangeMovingAverageWindow(index: number, value: string): void;
|
|
8467
8596
|
getDataSeriesColor(index: number): "" | Color;
|
|
8468
8597
|
getTrendLineColor(index: number): string;
|
|
8469
8598
|
updateTrendLineColor(index: number, color: Color): void;
|
|
8470
8599
|
updateTrendLineValue(index: number, config: any): void;
|
|
8471
8600
|
}
|
|
8472
8601
|
|
|
8473
|
-
interface Props$
|
|
8602
|
+
interface Props$14 {
|
|
8474
8603
|
chartId: UID;
|
|
8475
8604
|
definition: ChartWithDataSetDefinition;
|
|
8476
8605
|
updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8477
8606
|
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8478
8607
|
defaultValue?: boolean;
|
|
8479
8608
|
}
|
|
8480
|
-
declare class ChartShowValues extends Component<Props$
|
|
8609
|
+
declare class ChartShowValues extends Component<Props$14, SpreadsheetChildEnv> {
|
|
8481
8610
|
static template: string;
|
|
8482
8611
|
static components: {
|
|
8483
8612
|
Checkbox: typeof Checkbox;
|
|
@@ -8494,13 +8623,13 @@ declare class ChartShowValues extends Component<Props$15, SpreadsheetChildEnv> {
|
|
|
8494
8623
|
};
|
|
8495
8624
|
}
|
|
8496
8625
|
|
|
8497
|
-
interface Props$
|
|
8626
|
+
interface Props$13 {
|
|
8498
8627
|
chartId: UID;
|
|
8499
8628
|
definition: ChartWithDataSetDefinition;
|
|
8500
8629
|
canUpdateChart: (chartId: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8501
8630
|
updateChart: (chartId: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8502
8631
|
}
|
|
8503
|
-
declare class ChartWithAxisDesignPanel<P extends Props$
|
|
8632
|
+
declare class ChartWithAxisDesignPanel<P extends Props$13 = Props$13> extends Component<P, SpreadsheetChildEnv> {
|
|
8504
8633
|
static template: string;
|
|
8505
8634
|
static components: {
|
|
8506
8635
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -8521,13 +8650,13 @@ declare class ChartWithAxisDesignPanel<P extends Props$14 = Props$14> extends Co
|
|
|
8521
8650
|
get axesList(): AxisDefinition[];
|
|
8522
8651
|
}
|
|
8523
8652
|
|
|
8524
|
-
interface Props$
|
|
8653
|
+
interface Props$12 {
|
|
8525
8654
|
chartId: UID;
|
|
8526
8655
|
definition: GaugeChartDefinition;
|
|
8527
8656
|
canUpdateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8528
8657
|
updateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8529
8658
|
}
|
|
8530
|
-
declare class GaugeChartConfigPanel extends Component<Props$
|
|
8659
|
+
declare class GaugeChartConfigPanel extends Component<Props$12, SpreadsheetChildEnv> {
|
|
8531
8660
|
static template: string;
|
|
8532
8661
|
static components: {
|
|
8533
8662
|
ChartErrorSection: typeof ChartErrorSection;
|
|
@@ -8592,13 +8721,13 @@ interface EnrichedToken extends Token {
|
|
|
8592
8721
|
isInHoverContext?: boolean;
|
|
8593
8722
|
}
|
|
8594
8723
|
|
|
8595
|
-
interface Props$
|
|
8724
|
+
interface Props$11 {
|
|
8596
8725
|
proposals: AutoCompleteProposal[];
|
|
8597
8726
|
selectedIndex: number | undefined;
|
|
8598
8727
|
onValueSelected: (value: string) => void;
|
|
8599
8728
|
onValueHovered: (index: string) => void;
|
|
8600
8729
|
}
|
|
8601
|
-
declare class TextValueProvider extends Component<Props$
|
|
8730
|
+
declare class TextValueProvider extends Component<Props$11> {
|
|
8602
8731
|
static template: string;
|
|
8603
8732
|
static props: {
|
|
8604
8733
|
proposals: ArrayConstructor;
|
|
@@ -8655,11 +8784,11 @@ declare class ContentEditableHelper {
|
|
|
8655
8784
|
getText(): string;
|
|
8656
8785
|
}
|
|
8657
8786
|
|
|
8658
|
-
interface Props$
|
|
8787
|
+
interface Props$10 {
|
|
8659
8788
|
functionDescription: FunctionDescription;
|
|
8660
8789
|
argsToFocus: number[];
|
|
8661
8790
|
}
|
|
8662
|
-
declare class FunctionDescriptionProvider extends Component<Props$
|
|
8791
|
+
declare class FunctionDescriptionProvider extends Component<Props$10, SpreadsheetChildEnv> {
|
|
8663
8792
|
static template: string;
|
|
8664
8793
|
static props: {
|
|
8665
8794
|
functionDescription: ObjectConstructor;
|
|
@@ -8670,15 +8799,15 @@ declare class FunctionDescriptionProvider extends Component<Props$11, Spreadshee
|
|
|
8670
8799
|
};
|
|
8671
8800
|
private state;
|
|
8672
8801
|
toggle(): void;
|
|
8673
|
-
getContext(): Props$
|
|
8802
|
+
getContext(): Props$10;
|
|
8674
8803
|
get formulaArgSeparator(): string;
|
|
8675
8804
|
}
|
|
8676
8805
|
|
|
8677
|
-
interface Props
|
|
8806
|
+
interface Props$$ {
|
|
8678
8807
|
anchorRect: Rect;
|
|
8679
8808
|
content: string;
|
|
8680
8809
|
}
|
|
8681
|
-
declare class SpeechBubble extends Component<Props
|
|
8810
|
+
declare class SpeechBubble extends Component<Props$$, SpreadsheetChildEnv> {
|
|
8682
8811
|
static template: string;
|
|
8683
8812
|
static props: {
|
|
8684
8813
|
content: StringConstructor;
|
|
@@ -9089,7 +9218,7 @@ interface AutoCompleteProviderDefinition {
|
|
|
9089
9218
|
}, tokenAtCursor: EnrichedToken, text: string): void;
|
|
9090
9219
|
}
|
|
9091
9220
|
|
|
9092
|
-
interface Props
|
|
9221
|
+
interface Props$_ {
|
|
9093
9222
|
onConfirm: (content: string) => void;
|
|
9094
9223
|
composerContent: string;
|
|
9095
9224
|
defaultRangeSheetId: UID;
|
|
@@ -9101,7 +9230,7 @@ interface Props$$ {
|
|
|
9101
9230
|
invalid?: boolean;
|
|
9102
9231
|
getContextualColoredSymbolToken?: (token: Token) => Color;
|
|
9103
9232
|
}
|
|
9104
|
-
declare class StandaloneComposer extends Component<Props
|
|
9233
|
+
declare class StandaloneComposer extends Component<Props$_, SpreadsheetChildEnv> {
|
|
9105
9234
|
static template: string;
|
|
9106
9235
|
static props: {
|
|
9107
9236
|
composerContent: {
|
|
@@ -9164,13 +9293,13 @@ interface PanelState {
|
|
|
9164
9293
|
sectionRuleCancelledReasons?: CommandResult[];
|
|
9165
9294
|
sectionRule: SectionRule;
|
|
9166
9295
|
}
|
|
9167
|
-
interface Props$
|
|
9296
|
+
interface Props$Z {
|
|
9168
9297
|
chartId: UID;
|
|
9169
9298
|
definition: GaugeChartDefinition;
|
|
9170
9299
|
canUpdateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
9171
9300
|
updateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
9172
9301
|
}
|
|
9173
|
-
declare class GaugeChartDesignPanel extends Component<Props$
|
|
9302
|
+
declare class GaugeChartDesignPanel extends Component<Props$Z, SpreadsheetChildEnv> {
|
|
9174
9303
|
static template: string;
|
|
9175
9304
|
static components: {
|
|
9176
9305
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
@@ -9221,13 +9350,13 @@ declare class LineConfigPanel extends GenericChartConfigPanel {
|
|
|
9221
9350
|
onUpdateCumulative(cumulative: boolean): void;
|
|
9222
9351
|
}
|
|
9223
9352
|
|
|
9224
|
-
interface Props$
|
|
9353
|
+
interface Props$Y {
|
|
9225
9354
|
chartId: UID;
|
|
9226
9355
|
definition: ScorecardChartDefinition;
|
|
9227
9356
|
canUpdateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
9228
9357
|
updateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
9229
9358
|
}
|
|
9230
|
-
declare class ScorecardChartConfigPanel extends Component<Props$
|
|
9359
|
+
declare class ScorecardChartConfigPanel extends Component<Props$Y, SpreadsheetChildEnv> {
|
|
9231
9360
|
static template: string;
|
|
9232
9361
|
static components: {
|
|
9233
9362
|
SelectionInput: typeof SelectionInput;
|
|
@@ -9256,13 +9385,13 @@ declare class ScorecardChartConfigPanel extends Component<Props$Z, SpreadsheetCh
|
|
|
9256
9385
|
}
|
|
9257
9386
|
|
|
9258
9387
|
type ColorPickerId = undefined | "backgroundColor" | "baselineColorUp" | "baselineColorDown";
|
|
9259
|
-
interface Props$
|
|
9388
|
+
interface Props$X {
|
|
9260
9389
|
chartId: UID;
|
|
9261
9390
|
definition: ScorecardChartDefinition;
|
|
9262
9391
|
canUpdateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
9263
9392
|
updateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
9264
9393
|
}
|
|
9265
|
-
declare class ScorecardChartDesignPanel extends Component<Props$
|
|
9394
|
+
declare class ScorecardChartDesignPanel extends Component<Props$X, SpreadsheetChildEnv> {
|
|
9266
9395
|
static template: string;
|
|
9267
9396
|
static components: {
|
|
9268
9397
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -9461,11 +9590,11 @@ declare class ChartAnimationStore extends SpreadsheetStore {
|
|
|
9461
9590
|
enableAnimationForChart(chartId: UID): string;
|
|
9462
9591
|
}
|
|
9463
9592
|
|
|
9464
|
-
interface Props$
|
|
9593
|
+
interface Props$W {
|
|
9465
9594
|
chartId: UID;
|
|
9466
9595
|
isFullScreen?: boolean;
|
|
9467
9596
|
}
|
|
9468
|
-
declare class ChartJsComponent extends Component<Props$
|
|
9597
|
+
declare class ChartJsComponent extends Component<Props$W, SpreadsheetChildEnv> {
|
|
9469
9598
|
static template: string;
|
|
9470
9599
|
static props: {
|
|
9471
9600
|
chartId: StringConstructor;
|
|
@@ -9501,11 +9630,11 @@ declare class ChartJsComponent extends Component<Props$X, SpreadsheetChildEnv> {
|
|
|
9501
9630
|
get animationChartId(): string;
|
|
9502
9631
|
}
|
|
9503
9632
|
|
|
9504
|
-
interface Props$
|
|
9633
|
+
interface Props$V {
|
|
9505
9634
|
chartId: UID;
|
|
9506
9635
|
isFullScreen?: Boolean;
|
|
9507
9636
|
}
|
|
9508
|
-
declare class ScorecardChart$1 extends Component<Props$
|
|
9637
|
+
declare class ScorecardChart$1 extends Component<Props$V, SpreadsheetChildEnv> {
|
|
9509
9638
|
static template: string;
|
|
9510
9639
|
static props: {
|
|
9511
9640
|
chartId: StringConstructor;
|
|
@@ -9586,7 +9715,7 @@ declare class Menu extends Component<MenuProps, SpreadsheetChildEnv> {
|
|
|
9586
9715
|
onClickMenu(menu: Action, ev: CustomEvent): void;
|
|
9587
9716
|
}
|
|
9588
9717
|
|
|
9589
|
-
interface Props$
|
|
9718
|
+
interface Props$U {
|
|
9590
9719
|
anchorRect: Rect;
|
|
9591
9720
|
popoverPositioning: PopoverPropsPosition;
|
|
9592
9721
|
menuItems: Action[];
|
|
@@ -9606,7 +9735,7 @@ interface MenuState {
|
|
|
9606
9735
|
menuItems: Action[];
|
|
9607
9736
|
isHoveringChild?: boolean;
|
|
9608
9737
|
}
|
|
9609
|
-
declare class MenuPopover extends Component<Props$
|
|
9738
|
+
declare class MenuPopover extends Component<Props$U, SpreadsheetChildEnv> {
|
|
9610
9739
|
static template: string;
|
|
9611
9740
|
static props: {
|
|
9612
9741
|
anchorRect: ObjectConstructor;
|
|
@@ -9686,7 +9815,7 @@ declare class MenuPopover extends Component<Props$V, SpreadsheetChildEnv> {
|
|
|
9686
9815
|
}
|
|
9687
9816
|
|
|
9688
9817
|
type ResizeAnchor = "top left" | "top" | "top right" | "right" | "bottom right" | "bottom" | "bottom left" | "left";
|
|
9689
|
-
interface Props$
|
|
9818
|
+
interface Props$T {
|
|
9690
9819
|
figureUI: FigureUI;
|
|
9691
9820
|
style: string;
|
|
9692
9821
|
class: string;
|
|
@@ -9694,7 +9823,7 @@ interface Props$U {
|
|
|
9694
9823
|
onMouseDown: (ev: MouseEvent) => void;
|
|
9695
9824
|
onClickAnchor(dirX: ResizeDirection, dirY: ResizeDirection, ev: MouseEvent): void;
|
|
9696
9825
|
}
|
|
9697
|
-
declare class FigureComponent extends Component<Props$
|
|
9826
|
+
declare class FigureComponent extends Component<Props$T, SpreadsheetChildEnv> {
|
|
9698
9827
|
static template: string;
|
|
9699
9828
|
static props: {
|
|
9700
9829
|
figureUI: ObjectConstructor;
|
|
@@ -9750,7 +9879,7 @@ declare class FigureComponent extends Component<Props$U, SpreadsheetChildEnv> {
|
|
|
9750
9879
|
editWrapperStyle(properties: CSSProperties): void;
|
|
9751
9880
|
}
|
|
9752
9881
|
|
|
9753
|
-
interface Props$
|
|
9882
|
+
interface Props$S {
|
|
9754
9883
|
chartId: UID;
|
|
9755
9884
|
hasFullScreenButton: boolean;
|
|
9756
9885
|
}
|
|
@@ -9761,7 +9890,7 @@ interface MenuItem {
|
|
|
9761
9890
|
onClick: () => void;
|
|
9762
9891
|
preview?: string;
|
|
9763
9892
|
}
|
|
9764
|
-
declare class ChartDashboardMenu extends Component<Props$
|
|
9893
|
+
declare class ChartDashboardMenu extends Component<Props$S, SpreadsheetChildEnv> {
|
|
9765
9894
|
static template: string;
|
|
9766
9895
|
static components: {
|
|
9767
9896
|
MenuPopover: typeof MenuPopover;
|
|
@@ -9785,14 +9914,14 @@ declare class ChartDashboardMenu extends Component<Props$T, SpreadsheetChildEnv>
|
|
|
9785
9914
|
get fullScreenMenuItem(): MenuItem | undefined;
|
|
9786
9915
|
}
|
|
9787
9916
|
|
|
9788
|
-
interface Props$
|
|
9917
|
+
interface Props$R {
|
|
9789
9918
|
figureUI: FigureUI;
|
|
9790
9919
|
onFigureDeleted: () => void;
|
|
9791
9920
|
editFigureStyle?: (properties: CSSProperties) => void;
|
|
9792
9921
|
isFullScreen?: boolean;
|
|
9793
9922
|
openContextMenu?: (anchorRect: Rect, onClose?: () => void) => void;
|
|
9794
9923
|
}
|
|
9795
|
-
declare class ChartFigure extends Component<Props$
|
|
9924
|
+
declare class ChartFigure extends Component<Props$R, SpreadsheetChildEnv> {
|
|
9796
9925
|
static template: string;
|
|
9797
9926
|
static props: {
|
|
9798
9927
|
figureUI: ObjectConstructor;
|
|
@@ -9821,7 +9950,7 @@ declare class ChartFigure extends Component<Props$S, SpreadsheetChildEnv> {
|
|
|
9821
9950
|
|
|
9822
9951
|
type DnDDirection = "all" | "vertical" | "horizontal";
|
|
9823
9952
|
|
|
9824
|
-
interface Props$
|
|
9953
|
+
interface Props$Q {
|
|
9825
9954
|
isVisible: boolean;
|
|
9826
9955
|
position: Position;
|
|
9827
9956
|
}
|
|
@@ -9833,7 +9962,7 @@ interface State$4 {
|
|
|
9833
9962
|
position: Position;
|
|
9834
9963
|
handler: boolean;
|
|
9835
9964
|
}
|
|
9836
|
-
declare class Autofill extends Component<Props$
|
|
9965
|
+
declare class Autofill extends Component<Props$Q, SpreadsheetChildEnv> {
|
|
9837
9966
|
static template: string;
|
|
9838
9967
|
static props: {
|
|
9839
9968
|
position: ObjectConstructor;
|
|
@@ -9873,7 +10002,7 @@ declare class ClientTag extends Component<ClientTagProps, SpreadsheetChildEnv> {
|
|
|
9873
10002
|
get tagStyle(): string;
|
|
9874
10003
|
}
|
|
9875
10004
|
|
|
9876
|
-
interface Props$
|
|
10005
|
+
interface Props$P {
|
|
9877
10006
|
gridDims: DOMDimension;
|
|
9878
10007
|
onInputContextMenu: (event: MouseEvent) => void;
|
|
9879
10008
|
}
|
|
@@ -9881,7 +10010,7 @@ interface Props$Q {
|
|
|
9881
10010
|
* This component is a composer which positions itself on the grid at the anchor cell.
|
|
9882
10011
|
* It also applies the style of the cell to the composer input.
|
|
9883
10012
|
*/
|
|
9884
|
-
declare class GridComposer extends Component<Props$
|
|
10013
|
+
declare class GridComposer extends Component<Props$P, SpreadsheetChildEnv> {
|
|
9885
10014
|
static template: string;
|
|
9886
10015
|
static props: {
|
|
9887
10016
|
gridDims: ObjectConstructor;
|
|
@@ -9925,7 +10054,7 @@ interface SnapLine<T extends HFigureAxisType | VFigureAxisType> {
|
|
|
9925
10054
|
}
|
|
9926
10055
|
|
|
9927
10056
|
type ContainerType = "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "dnd";
|
|
9928
|
-
interface Props$
|
|
10057
|
+
interface Props$O {
|
|
9929
10058
|
onFigureDeleted: () => void;
|
|
9930
10059
|
}
|
|
9931
10060
|
interface Container {
|
|
@@ -10006,7 +10135,7 @@ interface DndState {
|
|
|
10006
10135
|
* that occurred during the drag & drop, and to position the figure on the correct pane.
|
|
10007
10136
|
*
|
|
10008
10137
|
*/
|
|
10009
|
-
declare class FiguresContainer extends Component<Props$
|
|
10138
|
+
declare class FiguresContainer extends Component<Props$O, SpreadsheetChildEnv> {
|
|
10010
10139
|
static template: string;
|
|
10011
10140
|
static props: {
|
|
10012
10141
|
onFigureDeleted: FunctionConstructor;
|
|
@@ -10044,10 +10173,10 @@ declare class FiguresContainer extends Component<Props$P, SpreadsheetChildEnv> {
|
|
|
10044
10173
|
private getCarouselOverlappingChart;
|
|
10045
10174
|
}
|
|
10046
10175
|
|
|
10047
|
-
interface Props$
|
|
10176
|
+
interface Props$N {
|
|
10048
10177
|
focusGrid: () => void;
|
|
10049
10178
|
}
|
|
10050
|
-
declare class GridAddRowsFooter extends Component<Props$
|
|
10179
|
+
declare class GridAddRowsFooter extends Component<Props$N, SpreadsheetChildEnv> {
|
|
10051
10180
|
static template: string;
|
|
10052
10181
|
static props: {
|
|
10053
10182
|
focusGrid: FunctionConstructor;
|
|
@@ -10071,7 +10200,7 @@ declare class GridAddRowsFooter extends Component<Props$O, SpreadsheetChildEnv>
|
|
|
10071
10200
|
private onExternalClick;
|
|
10072
10201
|
}
|
|
10073
10202
|
|
|
10074
|
-
interface Props$
|
|
10203
|
+
interface Props$M {
|
|
10075
10204
|
onCellDoubleClicked: (col: HeaderIndex, row: HeaderIndex) => void;
|
|
10076
10205
|
onCellClicked: (col: HeaderIndex, row: HeaderIndex, modifiers: GridClickModifiers, ev: PointerEvent | MouseEvent) => void;
|
|
10077
10206
|
onCellRightClicked: (col: HeaderIndex, row: HeaderIndex, coordinates: DOMCoordinates) => void;
|
|
@@ -10084,7 +10213,7 @@ interface Props$N {
|
|
|
10084
10213
|
height: number;
|
|
10085
10214
|
};
|
|
10086
10215
|
}
|
|
10087
|
-
declare class GridOverlay extends Component<Props$
|
|
10216
|
+
declare class GridOverlay extends Component<Props$M, SpreadsheetChildEnv> {
|
|
10088
10217
|
static template: string;
|
|
10089
10218
|
static props: {
|
|
10090
10219
|
onCellDoubleClicked: {
|
|
@@ -10144,12 +10273,12 @@ declare class GridOverlay extends Component<Props$N, SpreadsheetChildEnv> {
|
|
|
10144
10273
|
private getInteractiveIconAtEvent;
|
|
10145
10274
|
}
|
|
10146
10275
|
|
|
10147
|
-
interface Props$
|
|
10276
|
+
interface Props$L {
|
|
10148
10277
|
gridRect: Rect;
|
|
10149
10278
|
onClosePopover: () => void;
|
|
10150
10279
|
onMouseWheel: (ev: WheelEvent) => void;
|
|
10151
10280
|
}
|
|
10152
|
-
declare class GridPopover extends Component<Props$
|
|
10281
|
+
declare class GridPopover extends Component<Props$L, SpreadsheetChildEnv> {
|
|
10153
10282
|
static template: string;
|
|
10154
10283
|
static props: {
|
|
10155
10284
|
onClosePopover: FunctionConstructor;
|
|
@@ -10164,7 +10293,7 @@ declare class GridPopover extends Component<Props$M, SpreadsheetChildEnv> {
|
|
|
10164
10293
|
get cellPopover(): PositionedCellPopoverComponent | ClosedCellPopover;
|
|
10165
10294
|
}
|
|
10166
10295
|
|
|
10167
|
-
interface Props$
|
|
10296
|
+
interface Props$K {
|
|
10168
10297
|
headersGroups: ConsecutiveIndexes[];
|
|
10169
10298
|
offset: number;
|
|
10170
10299
|
headerRange: {
|
|
@@ -10172,7 +10301,7 @@ interface Props$L {
|
|
|
10172
10301
|
end: HeaderIndex;
|
|
10173
10302
|
};
|
|
10174
10303
|
}
|
|
10175
|
-
declare class UnhideRowHeaders extends Component<Props$
|
|
10304
|
+
declare class UnhideRowHeaders extends Component<Props$K, SpreadsheetChildEnv> {
|
|
10176
10305
|
static template: string;
|
|
10177
10306
|
static props: {
|
|
10178
10307
|
headersGroups: ArrayConstructor;
|
|
@@ -10191,7 +10320,7 @@ declare class UnhideRowHeaders extends Component<Props$L, SpreadsheetChildEnv> {
|
|
|
10191
10320
|
unhide(hiddenElements: HeaderIndex[]): void;
|
|
10192
10321
|
isVisible(header: HeaderIndex): boolean;
|
|
10193
10322
|
}
|
|
10194
|
-
declare class UnhideColumnHeaders extends Component<Props$
|
|
10323
|
+
declare class UnhideColumnHeaders extends Component<Props$K, SpreadsheetChildEnv> {
|
|
10195
10324
|
static template: string;
|
|
10196
10325
|
static props: {
|
|
10197
10326
|
headersGroups: ArrayConstructor;
|
|
@@ -10384,13 +10513,13 @@ declare class HeadersOverlay extends Component<any, SpreadsheetChildEnv> {
|
|
|
10384
10513
|
}
|
|
10385
10514
|
|
|
10386
10515
|
type Orientation$1 = "n" | "s" | "w" | "e";
|
|
10387
|
-
interface Props$
|
|
10516
|
+
interface Props$J {
|
|
10388
10517
|
zone: Zone;
|
|
10389
10518
|
orientation: Orientation$1;
|
|
10390
10519
|
isMoving: boolean;
|
|
10391
10520
|
onMoveHighlight: (ev: PointerEvent) => void;
|
|
10392
10521
|
}
|
|
10393
|
-
declare class Border extends Component<Props$
|
|
10522
|
+
declare class Border extends Component<Props$J, SpreadsheetChildEnv> {
|
|
10394
10523
|
static template: string;
|
|
10395
10524
|
static props: {
|
|
10396
10525
|
zone: ObjectConstructor;
|
|
@@ -10403,14 +10532,14 @@ declare class Border extends Component<Props$K, SpreadsheetChildEnv> {
|
|
|
10403
10532
|
}
|
|
10404
10533
|
|
|
10405
10534
|
type Orientation = "nw" | "ne" | "sw" | "se" | "n" | "s" | "e" | "w";
|
|
10406
|
-
interface Props$
|
|
10535
|
+
interface Props$I {
|
|
10407
10536
|
zone: Zone;
|
|
10408
10537
|
color: Color;
|
|
10409
10538
|
orientation: Orientation;
|
|
10410
10539
|
isResizing: boolean;
|
|
10411
10540
|
onResizeHighlight: (ev: PointerEvent, dirX: ResizeDirection, dirY: ResizeDirection) => void;
|
|
10412
10541
|
}
|
|
10413
|
-
declare class Corner extends Component<Props$
|
|
10542
|
+
declare class Corner extends Component<Props$I, SpreadsheetChildEnv> {
|
|
10414
10543
|
static template: string;
|
|
10415
10544
|
static props: {
|
|
10416
10545
|
zone: ObjectConstructor;
|
|
@@ -10459,7 +10588,7 @@ declare class Highlight extends Component<HighlightProps, SpreadsheetChildEnv> {
|
|
|
10459
10588
|
|
|
10460
10589
|
type ScrollDirection = "horizontal" | "vertical";
|
|
10461
10590
|
|
|
10462
|
-
interface Props$
|
|
10591
|
+
interface Props$H {
|
|
10463
10592
|
width: Pixel;
|
|
10464
10593
|
height: Pixel;
|
|
10465
10594
|
direction: ScrollDirection;
|
|
@@ -10467,7 +10596,7 @@ interface Props$I {
|
|
|
10467
10596
|
offset: Pixel;
|
|
10468
10597
|
onScroll: (offset: Pixel) => void;
|
|
10469
10598
|
}
|
|
10470
|
-
declare class ScrollBar extends Component<Props$
|
|
10599
|
+
declare class ScrollBar extends Component<Props$H> {
|
|
10471
10600
|
static props: {
|
|
10472
10601
|
width: {
|
|
10473
10602
|
type: NumberConstructor;
|
|
@@ -10495,10 +10624,10 @@ declare class ScrollBar extends Component<Props$I> {
|
|
|
10495
10624
|
onScroll(ev: any): void;
|
|
10496
10625
|
}
|
|
10497
10626
|
|
|
10498
|
-
interface Props$
|
|
10627
|
+
interface Props$G {
|
|
10499
10628
|
leftOffset: number;
|
|
10500
10629
|
}
|
|
10501
|
-
declare class HorizontalScrollBar extends Component<Props$
|
|
10630
|
+
declare class HorizontalScrollBar extends Component<Props$G, SpreadsheetChildEnv> {
|
|
10502
10631
|
static props: {
|
|
10503
10632
|
leftOffset: {
|
|
10504
10633
|
type: NumberConstructor;
|
|
@@ -10524,10 +10653,10 @@ declare class HorizontalScrollBar extends Component<Props$H, SpreadsheetChildEnv
|
|
|
10524
10653
|
onScroll(offset: any): void;
|
|
10525
10654
|
}
|
|
10526
10655
|
|
|
10527
|
-
interface Props$
|
|
10656
|
+
interface Props$F {
|
|
10528
10657
|
topOffset: number;
|
|
10529
10658
|
}
|
|
10530
|
-
declare class VerticalScrollBar extends Component<Props$
|
|
10659
|
+
declare class VerticalScrollBar extends Component<Props$F, SpreadsheetChildEnv> {
|
|
10531
10660
|
static props: {
|
|
10532
10661
|
topOffset: {
|
|
10533
10662
|
type: NumberConstructor;
|
|
@@ -10562,13 +10691,13 @@ declare class Selection extends Component<{}, SpreadsheetChildEnv> {
|
|
|
10562
10691
|
get highlightProps(): HighlightProps;
|
|
10563
10692
|
}
|
|
10564
10693
|
|
|
10565
|
-
interface Props$
|
|
10694
|
+
interface Props$E {
|
|
10566
10695
|
table: Table;
|
|
10567
10696
|
}
|
|
10568
10697
|
interface State$3 {
|
|
10569
10698
|
highlightZone: Zone | undefined;
|
|
10570
10699
|
}
|
|
10571
|
-
declare class TableResizer extends Component<Props$
|
|
10700
|
+
declare class TableResizer extends Component<Props$E, SpreadsheetChildEnv> {
|
|
10572
10701
|
static template: string;
|
|
10573
10702
|
static props: {
|
|
10574
10703
|
table: ObjectConstructor;
|
|
@@ -10597,11 +10726,11 @@ declare class TableResizer extends Component<Props$F, SpreadsheetChildEnv> {
|
|
|
10597
10726
|
* - a vertical resizer (same, for rows)
|
|
10598
10727
|
*/
|
|
10599
10728
|
type ContextMenuType = "ROW" | "COL" | "CELL" | "FILTER" | "GROUP_HEADERS" | "UNGROUP_HEADERS";
|
|
10600
|
-
interface Props$
|
|
10729
|
+
interface Props$D {
|
|
10601
10730
|
exposeFocus: (focus: () => void) => void;
|
|
10602
10731
|
getGridSize: () => DOMDimension;
|
|
10603
10732
|
}
|
|
10604
|
-
declare class Grid extends Component<Props$
|
|
10733
|
+
declare class Grid extends Component<Props$D, SpreadsheetChildEnv> {
|
|
10605
10734
|
static template: string;
|
|
10606
10735
|
static props: {
|
|
10607
10736
|
exposeFocus: FunctionConstructor;
|
|
@@ -10717,7 +10846,7 @@ declare class MainChartPanelStore extends SpreadsheetStore {
|
|
|
10717
10846
|
private getChartDefinitionFromContextCreation;
|
|
10718
10847
|
}
|
|
10719
10848
|
|
|
10720
|
-
interface Props$
|
|
10849
|
+
interface Props$C {
|
|
10721
10850
|
chartId: UID;
|
|
10722
10851
|
chartPanelStore: MainChartPanelStore;
|
|
10723
10852
|
}
|
|
@@ -10725,7 +10854,7 @@ interface ChartTypePickerState {
|
|
|
10725
10854
|
popoverProps: PopoverProps | undefined;
|
|
10726
10855
|
popoverStyle: string;
|
|
10727
10856
|
}
|
|
10728
|
-
declare class ChartTypePicker extends Component<Props$
|
|
10857
|
+
declare class ChartTypePicker extends Component<Props$C, SpreadsheetChildEnv> {
|
|
10729
10858
|
static template: string;
|
|
10730
10859
|
static components: {
|
|
10731
10860
|
Section: typeof Section;
|
|
@@ -10761,11 +10890,11 @@ declare class ChartTypePicker extends Component<Props$D, SpreadsheetChildEnv> {
|
|
|
10761
10890
|
private closePopover;
|
|
10762
10891
|
}
|
|
10763
10892
|
|
|
10764
|
-
interface Props$
|
|
10893
|
+
interface Props$B {
|
|
10765
10894
|
onCloseSidePanel: () => void;
|
|
10766
10895
|
chartId: UID;
|
|
10767
10896
|
}
|
|
10768
|
-
declare class ChartPanel extends Component<Props$
|
|
10897
|
+
declare class ChartPanel extends Component<Props$B, SpreadsheetChildEnv> {
|
|
10769
10898
|
static template: string;
|
|
10770
10899
|
static components: {
|
|
10771
10900
|
Section: typeof Section;
|
|
@@ -10788,30 +10917,30 @@ declare class ChartPanel extends Component<Props$C, SpreadsheetChildEnv> {
|
|
|
10788
10917
|
private getChartDefinition;
|
|
10789
10918
|
}
|
|
10790
10919
|
|
|
10791
|
-
interface Props$
|
|
10920
|
+
interface Props$A {
|
|
10792
10921
|
onValueChange: (value: number) => void;
|
|
10793
10922
|
value: number;
|
|
10794
10923
|
}
|
|
10795
|
-
declare class PieHoleSize extends Component<Props$
|
|
10924
|
+
declare class PieHoleSize extends Component<Props$A, SpreadsheetChildEnv> {
|
|
10796
10925
|
static template: string;
|
|
10797
10926
|
static components: {
|
|
10798
10927
|
Section: typeof Section;
|
|
10928
|
+
NumberInput: typeof NumberInput;
|
|
10799
10929
|
};
|
|
10800
10930
|
static props: {
|
|
10801
10931
|
onValueChange: FunctionConstructor;
|
|
10802
10932
|
value: NumberConstructor;
|
|
10803
10933
|
};
|
|
10804
|
-
debouncedOnChange: DebouncedFunction<(value: string) => void>;
|
|
10805
10934
|
onChange(value: string): void;
|
|
10806
10935
|
}
|
|
10807
10936
|
|
|
10808
|
-
interface Props$
|
|
10937
|
+
interface Props$z {
|
|
10809
10938
|
chartId: UID;
|
|
10810
10939
|
definition: PieChartDefinition;
|
|
10811
10940
|
canUpdateChart: (chartId: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
|
|
10812
10941
|
updateChart: (chartId: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
|
|
10813
10942
|
}
|
|
10814
|
-
declare class PieChartDesignPanel extends Component<Props$
|
|
10943
|
+
declare class PieChartDesignPanel extends Component<Props$z, SpreadsheetChildEnv> {
|
|
10815
10944
|
static template: string;
|
|
10816
10945
|
static components: {
|
|
10817
10946
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -10835,10 +10964,10 @@ declare class PieChartDesignPanel extends Component<Props$A, SpreadsheetChildEnv
|
|
|
10835
10964
|
get defaultHoleSize(): number;
|
|
10836
10965
|
}
|
|
10837
10966
|
|
|
10838
|
-
interface Props$
|
|
10967
|
+
interface Props$y {
|
|
10839
10968
|
items: ActionSpec[];
|
|
10840
10969
|
}
|
|
10841
|
-
declare class CogWheelMenu extends Component<Props$
|
|
10970
|
+
declare class CogWheelMenu extends Component<Props$y, SpreadsheetChildEnv> {
|
|
10842
10971
|
static template: string;
|
|
10843
10972
|
static components: {
|
|
10844
10973
|
MenuPopover: typeof MenuPopover;
|
|
@@ -10921,14 +11050,14 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
|
|
|
10921
11050
|
get highlights(): Highlight$1[];
|
|
10922
11051
|
}
|
|
10923
11052
|
|
|
10924
|
-
interface Props$
|
|
11053
|
+
interface Props$x {
|
|
10925
11054
|
deferUpdate: boolean;
|
|
10926
11055
|
isDirty: boolean;
|
|
10927
11056
|
toggleDeferUpdate: (value: boolean) => void;
|
|
10928
11057
|
discard: () => void;
|
|
10929
11058
|
apply: () => void;
|
|
10930
11059
|
}
|
|
10931
|
-
declare class PivotDeferUpdate extends Component<Props$
|
|
11060
|
+
declare class PivotDeferUpdate extends Component<Props$x, SpreadsheetChildEnv> {
|
|
10932
11061
|
static template: string;
|
|
10933
11062
|
static props: {
|
|
10934
11063
|
deferUpdate: BooleanConstructor;
|
|
@@ -10945,11 +11074,11 @@ declare class PivotDeferUpdate extends Component<Props$y, SpreadsheetChildEnv> {
|
|
|
10945
11074
|
get deferUpdatesTooltip(): string;
|
|
10946
11075
|
}
|
|
10947
11076
|
|
|
10948
|
-
interface Props$
|
|
11077
|
+
interface Props$w {
|
|
10949
11078
|
onFieldPicked: (field: string) => void;
|
|
10950
11079
|
fields: PivotField[];
|
|
10951
11080
|
}
|
|
10952
|
-
declare class AddDimensionButton extends Component<Props$
|
|
11081
|
+
declare class AddDimensionButton extends Component<Props$w, SpreadsheetChildEnv> {
|
|
10953
11082
|
static template: string;
|
|
10954
11083
|
static components: {
|
|
10955
11084
|
Popover: typeof Popover;
|
|
@@ -10985,50 +11114,6 @@ declare class AddDimensionButton extends Component<Props$x, SpreadsheetChildEnv>
|
|
|
10985
11114
|
onKeyDown(ev: KeyboardEvent): void;
|
|
10986
11115
|
}
|
|
10987
11116
|
|
|
10988
|
-
interface Props$w {
|
|
10989
|
-
value: string;
|
|
10990
|
-
onChange: (value: string) => void;
|
|
10991
|
-
class?: string;
|
|
10992
|
-
id?: string;
|
|
10993
|
-
placeholder?: string;
|
|
10994
|
-
autofocus?: boolean;
|
|
10995
|
-
alwaysShowBorder?: boolean;
|
|
10996
|
-
}
|
|
10997
|
-
declare class TextInput extends Component<Props$w, SpreadsheetChildEnv> {
|
|
10998
|
-
static template: string;
|
|
10999
|
-
static props: {
|
|
11000
|
-
value: StringConstructor;
|
|
11001
|
-
onChange: FunctionConstructor;
|
|
11002
|
-
class: {
|
|
11003
|
-
type: StringConstructor;
|
|
11004
|
-
optional: boolean;
|
|
11005
|
-
};
|
|
11006
|
-
id: {
|
|
11007
|
-
type: StringConstructor;
|
|
11008
|
-
optional: boolean;
|
|
11009
|
-
};
|
|
11010
|
-
placeholder: {
|
|
11011
|
-
type: StringConstructor;
|
|
11012
|
-
optional: boolean;
|
|
11013
|
-
};
|
|
11014
|
-
autofocus: {
|
|
11015
|
-
type: BooleanConstructor;
|
|
11016
|
-
optional: boolean;
|
|
11017
|
-
};
|
|
11018
|
-
alwaysShowBorder: {
|
|
11019
|
-
type: BooleanConstructor;
|
|
11020
|
-
optional: boolean;
|
|
11021
|
-
};
|
|
11022
|
-
};
|
|
11023
|
-
private inputRef;
|
|
11024
|
-
setup(): void;
|
|
11025
|
-
onKeyDown(ev: KeyboardEvent): void;
|
|
11026
|
-
save(): void;
|
|
11027
|
-
onMouseDown(ev: MouseEvent): void;
|
|
11028
|
-
onMouseUp(ev: MouseEvent): void;
|
|
11029
|
-
get inputClass(): string;
|
|
11030
|
-
}
|
|
11031
|
-
|
|
11032
11117
|
interface Props$v {
|
|
11033
11118
|
dimension: PivotCoreDimension | PivotCoreMeasure;
|
|
11034
11119
|
onRemoved: (dimension: PivotCoreDimension | PivotCoreMeasure) => void;
|
|
@@ -11279,14 +11364,16 @@ declare class PivotLayoutConfigurator extends Component<Props$p, SpreadsheetChil
|
|
|
11279
11364
|
|
|
11280
11365
|
declare class PivotSidePanelStore extends SpreadsheetStore {
|
|
11281
11366
|
private pivotId;
|
|
11367
|
+
private updateMode;
|
|
11282
11368
|
mutators: readonly ["reset", "deferUpdates", "applyUpdate", "discardPendingUpdate", "update"];
|
|
11283
|
-
private
|
|
11369
|
+
private _updatesAreDeferred;
|
|
11284
11370
|
private draft;
|
|
11285
11371
|
private notification;
|
|
11286
11372
|
private alreadyNotified;
|
|
11287
11373
|
private alreadyNotifiedForPivotSize;
|
|
11288
|
-
constructor(get: Get, pivotId: UID);
|
|
11374
|
+
constructor(get: Get, pivotId: UID, updateMode?: "neverDefer" | "canDefer");
|
|
11289
11375
|
handle(cmd: Command): void;
|
|
11376
|
+
get updatesAreDeferred(): boolean;
|
|
11290
11377
|
get fields(): PivotFields;
|
|
11291
11378
|
get pivot(): Pivot<PivotRuntimeDefinition>;
|
|
11292
11379
|
get definition(): PivotRuntimeDefinition;
|
|
@@ -13135,6 +13222,7 @@ declare const components: {
|
|
|
13135
13222
|
GeoChartRegionSelectSection: typeof GeoChartRegionSelectSection;
|
|
13136
13223
|
ChartDashboardMenu: typeof ChartDashboardMenu;
|
|
13137
13224
|
FullScreenFigure: typeof FullScreenFigure;
|
|
13225
|
+
NumberInput: typeof NumberInput;
|
|
13138
13226
|
};
|
|
13139
13227
|
declare const hooks: {
|
|
13140
13228
|
useDragAndDropListItems: typeof useDragAndDropListItems;
|
|
@@ -13743,4 +13831,4 @@ declare const chartHelpers: {
|
|
|
13743
13831
|
WaterfallChart: typeof WaterfallChart;
|
|
13744
13832
|
};
|
|
13745
13833
|
|
|
13746
|
-
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AdaptSheetName, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFigureChartToCarouselCommand, AddFunctionDescription, AddMergeCommand, AddNewChartToCarouselCommand, AddPivotCommand, AdjacentEdge, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgProposal, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BadExpressionError, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescrWithOpacity, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Carousel, CarouselItem, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CircularDependencyError, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, ClipboardCell, ClipboardCellData, ClipboardCopyOptions, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateCarouselCommand, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteChartCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DivisionByZeroError, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, ErrorValue, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image$1 as Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, InvalidReferenceError, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, LocalTransportService, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, MinimalClipboardData, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NEXT_VALUE, NewLocalStateUpdateEvent, NotAvailableError, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PREVIOUS_VALUE, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotCustomGroup, PivotCustomGroupedField, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, PivotVisibilityOptions, Pixel, PixelPosition, PopOutChartFromCarouselCommand, Position$1 as Position, PositionDependentCommand, RGBA, Range, RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RenderingBorder, RenderingBox, RenderingGridIcon, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection$1 as Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplillBlockedError, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetClipboardData, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, ToggleCheckboxCommand, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UnknownFunctionError, UpdateCarouselActiveItemCommand, UpdateCarouselCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValueAndLabel, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, ZoomableChartDefinition, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, categories, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, createAutocompleteArgumentsProvider, errorTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, getCaretDownSvg, getCaretUpSvg, helpers, hooks, invalidSubtotalFormulasCommands, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|
|
13834
|
+
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AdaptSheetName, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFigureChartToCarouselCommand, AddFunctionDescription, AddMergeCommand, AddNewChartToCarouselCommand, AddPivotCommand, AdjacentEdge, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgProposal, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BadExpressionError, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescrWithOpacity, BorderPosition, BorderStyle, BoundedRange, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Carousel, CarouselItem, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CircularDependencyError, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, ClipboardCell, ClipboardCellData, ClipboardCopyOptions, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, ColorSheetCommand, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComposerFocusType, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormatRuleInternal, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, CreateCarouselCommand, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, CriterionFilter, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataBarFill, DataBarRule, DataBarRuleInternal, DataFilterValue, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIncrementModifier, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteChartCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DivisionByZeroError, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, ErrorValue, EvalContext, EvaluateCellsCommand, EvaluateChartsCommand, EvaluatedCell, EvaluatedCriterion, EvaluatedDateCriterion, EvaluationError, ExcelChartDataset, ExcelChartDefinition, ExcelChartTrendConfiguration, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelTrendlineType, ExcelWorkbookData, ExpressionRule, Figure, FigureData, FigureInfo, FigureSize, FigureUI, Filter, FilterCriterionType, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, FunctionResultNumber, FunctionResultObject, GeneratorCell, GenericCriterion, GenericCriterionType, GenericDateCriterion, GenericDefinition, GetSymbolValue, Getters, Granularity, GridClickModifiers, GridRenderingContext, GroupHeadersCommand, HSLA, HeaderData, HeaderDimensions, HeaderGroup, HeaderIndex, HeadersDependentCommand, HideColumnsRowsCommand, HideSheetCommand, Highlight$1 as Highlight, HistoryChange, IconSet, IconSetRule, IconThreshold, Image$1 as Image, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, InvalidReferenceError, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, LocalTransportService, Locale, LocaleCode, LocaleFormat, LookupCaches, Matrix, Maybe, MenuMouseEvent, Merge, MinimalClipboardData, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NEXT_VALUE, NewLocalStateUpdateEvent, NotAvailableError, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PREVIOUS_VALUE, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotCustomGroup, PivotCustomGroupedField, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureDisplay, PivotMeasureDisplayType, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotSortedColumn, PivotStartPresenceTracking, PivotStopPresenceTracking, PivotStyle, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotTimeAdapterNotNull, PivotValueCell, Pixel, PixelPosition, PopOutChartFromCarouselCommand, Position$1 as Position, PositionDependentCommand, RGBA, Range, RangeAdapter, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangeStringOptions, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RenderingBorder, RenderingBox, RenderingGridIcon, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection$1 as Selection, SelectionStep, SetBorderCommand, SetBorderTargetCommand, SetContextualFormatCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetEditingCommand, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplillBlockedError, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetClipboardData, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableBorder, TableConfig, TableData$1 as TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, ToggleCheckboxCommand, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrendConfiguration, TrendType, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UnknownFunctionError, UpdateCarouselActiveItemCommand, UpdateCarouselCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValueAndLabel, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, ZoomableChartDefinition, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, categories, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, createAutocompleteArgumentsProvider, errorTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, getCaretDownSvg, getCaretUpSvg, helpers, hooks, invalidSubtotalFormulasCommands, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateChartEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|