@odoo/o-spreadsheet 18.5.0-alpha.5 → 18.5.0-alpha.6
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.cjs.js +11009 -10511
- package/dist/o-spreadsheet.d.ts +191 -131
- package/dist/o-spreadsheet.esm.js +11009 -10511
- package/dist/o-spreadsheet.iife.js +11054 -10556
- package/dist/o-spreadsheet.iife.min.js +429 -429
- package/dist/o_spreadsheet.xml +75 -12
- package/package.json +1 -1
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -958,6 +958,9 @@ interface PivotCoreDimension {
|
|
|
958
958
|
fieldName: string;
|
|
959
959
|
order?: SortDirection;
|
|
960
960
|
granularity?: Granularity | string;
|
|
961
|
+
isCustomField?: boolean;
|
|
962
|
+
parentField?: string;
|
|
963
|
+
customGroups?: PivotCustomGroup[];
|
|
961
964
|
}
|
|
962
965
|
interface PivotCoreMeasure {
|
|
963
966
|
/**
|
|
@@ -984,6 +987,7 @@ interface CommonPivotCoreDefinition {
|
|
|
984
987
|
deferUpdates?: boolean;
|
|
985
988
|
sortedColumn?: PivotSortedColumn;
|
|
986
989
|
collapsedDomains?: PivotCollapsedDomains;
|
|
990
|
+
customFields?: Record<string, PivotCustomGroupedField>;
|
|
987
991
|
}
|
|
988
992
|
interface PivotSortedColumn {
|
|
989
993
|
order: SortDirection;
|
|
@@ -994,6 +998,16 @@ interface PivotCollapsedDomains {
|
|
|
994
998
|
COL: PivotDomain[];
|
|
995
999
|
ROW: PivotDomain[];
|
|
996
1000
|
}
|
|
1001
|
+
interface PivotCustomGroupedField {
|
|
1002
|
+
parentField: string;
|
|
1003
|
+
name: string;
|
|
1004
|
+
groups: PivotCustomGroup[];
|
|
1005
|
+
}
|
|
1006
|
+
interface PivotCustomGroup {
|
|
1007
|
+
name: string;
|
|
1008
|
+
values: CellValue[];
|
|
1009
|
+
isOtherGroup?: boolean;
|
|
1010
|
+
}
|
|
997
1011
|
interface SpreadsheetPivotCoreDefinition extends CommonPivotCoreDefinition {
|
|
998
1012
|
type: "SPREADSHEET";
|
|
999
1013
|
dataSet?: {
|
|
@@ -1012,6 +1026,9 @@ interface PivotField {
|
|
|
1012
1026
|
string: string;
|
|
1013
1027
|
aggregator?: string;
|
|
1014
1028
|
help?: string;
|
|
1029
|
+
isCustomField?: boolean;
|
|
1030
|
+
parentField?: string;
|
|
1031
|
+
customGroups?: PivotCustomGroup[];
|
|
1015
1032
|
}
|
|
1016
1033
|
type PivotFields = Record<TechnicalName, PivotField | undefined>;
|
|
1017
1034
|
interface PivotMeasure extends PivotCoreMeasure {
|
|
@@ -3453,7 +3470,8 @@ declare const enum CommandResult {
|
|
|
3453
3470
|
ValueCellIsInvalidFormula = "ValueCellIsInvalidFormula",
|
|
3454
3471
|
InvalidDefinition = "InvalidDefinition",
|
|
3455
3472
|
InvalidColor = "InvalidColor",
|
|
3456
|
-
InvalidPivotDataSet = "InvalidPivotDataSet"
|
|
3473
|
+
InvalidPivotDataSet = "InvalidPivotDataSet",
|
|
3474
|
+
InvalidPivotCustomField = "InvalidPivotCustomField"
|
|
3457
3475
|
}
|
|
3458
3476
|
interface CommandHandler<T> {
|
|
3459
3477
|
allowDispatch(command: T): CommandResult | CommandResult[];
|
|
@@ -3878,6 +3896,10 @@ interface GridClickModifiers {
|
|
|
3878
3896
|
type ComposerFocusType = "inactive" | "cellFocus" | "contentFocus";
|
|
3879
3897
|
type EditionMode = "editing" | "selecting" | "inactive";
|
|
3880
3898
|
type SortDirection = "asc" | "desc";
|
|
3899
|
+
interface ValueAndLabel<T = string> {
|
|
3900
|
+
value: T;
|
|
3901
|
+
label: string;
|
|
3902
|
+
}
|
|
3881
3903
|
|
|
3882
3904
|
type LocaleCode = string & Alias;
|
|
3883
3905
|
interface Locale {
|
|
@@ -5141,6 +5163,7 @@ declare class PivotCorePlugin extends CorePlugin<CoreState> implements CoreState
|
|
|
5141
5163
|
private replaceMeasureFormula;
|
|
5142
5164
|
private checkSortedColumnInMeasures;
|
|
5143
5165
|
private checkDuplicatedMeasureIds;
|
|
5166
|
+
private checkCustomFieldsAreValid;
|
|
5144
5167
|
/**
|
|
5145
5168
|
* Import the pivots
|
|
5146
5169
|
*/
|
|
@@ -5734,9 +5757,13 @@ declare class PivotRuntimeDefinition {
|
|
|
5734
5757
|
readonly rows: PivotDimension$1[];
|
|
5735
5758
|
readonly sortedColumn?: PivotSortedColumn;
|
|
5736
5759
|
readonly collapsedDomains?: PivotCollapsedDomains;
|
|
5760
|
+
readonly customFields?: Record<string, PivotCustomGroupedField>;
|
|
5737
5761
|
constructor(definition: CommonPivotCoreDefinition, fields: PivotFields);
|
|
5738
5762
|
getDimension(nameWithGranularity: string): PivotDimension$1;
|
|
5739
5763
|
getMeasure(id: string): PivotMeasure;
|
|
5764
|
+
get invalidAggregatorsForCustomField(): string[];
|
|
5765
|
+
private createMeasure;
|
|
5766
|
+
private createPivotDimension;
|
|
5740
5767
|
}
|
|
5741
5768
|
|
|
5742
5769
|
interface CollapsiblePivotTableColumn extends PivotTableColumn {
|
|
@@ -6771,6 +6798,7 @@ interface PivotRegistryItem {
|
|
|
6771
6798
|
datetimeGranularities: string[];
|
|
6772
6799
|
isMeasureCandidate: (field: PivotField) => boolean;
|
|
6773
6800
|
isGroupable: (field: PivotField) => boolean;
|
|
6801
|
+
canHaveCustomGroup: (field: PivotField) => boolean;
|
|
6774
6802
|
}
|
|
6775
6803
|
|
|
6776
6804
|
declare class ClipboardHandler<T> {
|
|
@@ -7018,7 +7046,7 @@ interface ChartSubtypeProperties {
|
|
|
7018
7046
|
preview: string;
|
|
7019
7047
|
}
|
|
7020
7048
|
|
|
7021
|
-
interface Props$
|
|
7049
|
+
interface Props$1o {
|
|
7022
7050
|
label?: string;
|
|
7023
7051
|
value: boolean;
|
|
7024
7052
|
className?: string;
|
|
@@ -7027,7 +7055,7 @@ interface Props$1n {
|
|
|
7027
7055
|
disabled?: boolean;
|
|
7028
7056
|
onChange: (value: boolean) => void;
|
|
7029
7057
|
}
|
|
7030
|
-
declare class Checkbox extends Component<Props$
|
|
7058
|
+
declare class Checkbox extends Component<Props$1o, SpreadsheetChildEnv> {
|
|
7031
7059
|
static template: string;
|
|
7032
7060
|
static props: {
|
|
7033
7061
|
label: {
|
|
@@ -7062,10 +7090,10 @@ declare class Checkbox extends Component<Props$1n, SpreadsheetChildEnv> {
|
|
|
7062
7090
|
onChange(ev: InputEvent): void;
|
|
7063
7091
|
}
|
|
7064
7092
|
|
|
7065
|
-
interface Props$
|
|
7093
|
+
interface Props$1n {
|
|
7066
7094
|
class?: string;
|
|
7067
7095
|
}
|
|
7068
|
-
declare class Section extends Component<Props$
|
|
7096
|
+
declare class Section extends Component<Props$1n, SpreadsheetChildEnv> {
|
|
7069
7097
|
static template: string;
|
|
7070
7098
|
static props: {
|
|
7071
7099
|
class: {
|
|
@@ -7230,7 +7258,7 @@ declare class SelectionInputStore extends SpreadsheetStore {
|
|
|
7230
7258
|
getIndex(rangeId: number | null): number | null;
|
|
7231
7259
|
}
|
|
7232
7260
|
|
|
7233
|
-
interface Props$
|
|
7261
|
+
interface Props$1m {
|
|
7234
7262
|
ranges: string[];
|
|
7235
7263
|
hasSingleRange?: boolean;
|
|
7236
7264
|
required?: boolean;
|
|
@@ -7258,7 +7286,7 @@ interface SelectionRange extends Omit<RangeInputValue, "color"> {
|
|
|
7258
7286
|
* onSelectionChanged is called every time the input value
|
|
7259
7287
|
* changes.
|
|
7260
7288
|
*/
|
|
7261
|
-
declare class SelectionInput extends Component<Props$
|
|
7289
|
+
declare class SelectionInput extends Component<Props$1m, SpreadsheetChildEnv> {
|
|
7262
7290
|
static template: string;
|
|
7263
7291
|
static props: {
|
|
7264
7292
|
ranges: ArrayConstructor;
|
|
@@ -7335,7 +7363,7 @@ declare class SelectionInput extends Component<Props$1l, SpreadsheetChildEnv> {
|
|
|
7335
7363
|
confirm(): void;
|
|
7336
7364
|
}
|
|
7337
7365
|
|
|
7338
|
-
interface Props$
|
|
7366
|
+
interface Props$1l {
|
|
7339
7367
|
ranges: CustomizedDataSet[];
|
|
7340
7368
|
hasSingleRange?: boolean;
|
|
7341
7369
|
onSelectionChanged: (ranges: string[]) => void;
|
|
@@ -7348,7 +7376,7 @@ interface Props$1k {
|
|
|
7348
7376
|
canChangeDatasetOrientation?: boolean;
|
|
7349
7377
|
onFlipAxis?: (structure: string) => void;
|
|
7350
7378
|
}
|
|
7351
|
-
declare class ChartDataSeries extends Component<Props$
|
|
7379
|
+
declare class ChartDataSeries extends Component<Props$1l, SpreadsheetChildEnv> {
|
|
7352
7380
|
static template: string;
|
|
7353
7381
|
static components: {
|
|
7354
7382
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7397,12 +7425,12 @@ declare class ChartDataSeries extends Component<Props$1k, SpreadsheetChildEnv> {
|
|
|
7397
7425
|
get title(): string;
|
|
7398
7426
|
}
|
|
7399
7427
|
|
|
7400
|
-
interface Props$
|
|
7428
|
+
interface Props$1k {
|
|
7401
7429
|
messages: string[];
|
|
7402
7430
|
msgType: "warning" | "error" | "info";
|
|
7403
7431
|
singleBox?: boolean;
|
|
7404
7432
|
}
|
|
7405
|
-
declare class ValidationMessages extends Component<Props$
|
|
7433
|
+
declare class ValidationMessages extends Component<Props$1k, SpreadsheetChildEnv> {
|
|
7406
7434
|
static template: string;
|
|
7407
7435
|
static props: {
|
|
7408
7436
|
messages: ArrayConstructor;
|
|
@@ -7416,10 +7444,10 @@ declare class ValidationMessages extends Component<Props$1j, SpreadsheetChildEnv
|
|
|
7416
7444
|
get alertBoxes(): string[][];
|
|
7417
7445
|
}
|
|
7418
7446
|
|
|
7419
|
-
interface Props$
|
|
7447
|
+
interface Props$1j {
|
|
7420
7448
|
messages: string[];
|
|
7421
7449
|
}
|
|
7422
|
-
declare class ChartErrorSection extends Component<Props$
|
|
7450
|
+
declare class ChartErrorSection extends Component<Props$1j, SpreadsheetChildEnv> {
|
|
7423
7451
|
static template: string;
|
|
7424
7452
|
static components: {
|
|
7425
7453
|
Section: typeof Section;
|
|
@@ -7433,7 +7461,7 @@ declare class ChartErrorSection extends Component<Props$1i, SpreadsheetChildEnv>
|
|
|
7433
7461
|
};
|
|
7434
7462
|
}
|
|
7435
7463
|
|
|
7436
|
-
interface Props$
|
|
7464
|
+
interface Props$1i {
|
|
7437
7465
|
title?: string;
|
|
7438
7466
|
range: string;
|
|
7439
7467
|
isInvalid: boolean;
|
|
@@ -7446,7 +7474,7 @@ interface Props$1h {
|
|
|
7446
7474
|
onChange: (value: boolean) => void;
|
|
7447
7475
|
}>;
|
|
7448
7476
|
}
|
|
7449
|
-
declare class ChartLabelRange extends Component<Props$
|
|
7477
|
+
declare class ChartLabelRange extends Component<Props$1i, SpreadsheetChildEnv> {
|
|
7450
7478
|
static template: string;
|
|
7451
7479
|
static components: {
|
|
7452
7480
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7467,10 +7495,10 @@ declare class ChartLabelRange extends Component<Props$1h, SpreadsheetChildEnv> {
|
|
|
7467
7495
|
optional: boolean;
|
|
7468
7496
|
};
|
|
7469
7497
|
};
|
|
7470
|
-
static defaultProps: Partial<Props$
|
|
7498
|
+
static defaultProps: Partial<Props$1i>;
|
|
7471
7499
|
}
|
|
7472
7500
|
|
|
7473
|
-
interface Props$
|
|
7501
|
+
interface Props$1h {
|
|
7474
7502
|
figureId: UID;
|
|
7475
7503
|
definition: ChartWithDataSetDefinition;
|
|
7476
7504
|
canUpdateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
@@ -7480,7 +7508,7 @@ interface ChartPanelState {
|
|
|
7480
7508
|
datasetDispatchResult?: DispatchResult;
|
|
7481
7509
|
labelsDispatchResult?: DispatchResult;
|
|
7482
7510
|
}
|
|
7483
|
-
declare class GenericChartConfigPanel extends Component<Props$
|
|
7511
|
+
declare class GenericChartConfigPanel extends Component<Props$1h, SpreadsheetChildEnv> {
|
|
7484
7512
|
static template: string;
|
|
7485
7513
|
static components: {
|
|
7486
7514
|
ChartDataSeries: typeof ChartDataSeries;
|
|
@@ -7549,11 +7577,11 @@ declare class BarConfigPanel extends GenericChartConfigPanel {
|
|
|
7549
7577
|
onUpdateStacked(stacked: boolean): void;
|
|
7550
7578
|
}
|
|
7551
7579
|
|
|
7552
|
-
interface Props$
|
|
7580
|
+
interface Props$1g {
|
|
7553
7581
|
isCollapsed: boolean;
|
|
7554
7582
|
slots: any;
|
|
7555
7583
|
}
|
|
7556
|
-
declare class Collapse extends Component<Props$
|
|
7584
|
+
declare class Collapse extends Component<Props$1g, SpreadsheetChildEnv> {
|
|
7557
7585
|
static template: string;
|
|
7558
7586
|
static props: {
|
|
7559
7587
|
isCollapsed: BooleanConstructor;
|
|
@@ -7592,12 +7620,12 @@ interface Choice$1 {
|
|
|
7592
7620
|
value: string;
|
|
7593
7621
|
label: string;
|
|
7594
7622
|
}
|
|
7595
|
-
interface Props$
|
|
7623
|
+
interface Props$1f {
|
|
7596
7624
|
choices: Choice$1[];
|
|
7597
7625
|
onChange: (value: string) => void;
|
|
7598
7626
|
selectedValue: string;
|
|
7599
7627
|
}
|
|
7600
|
-
declare class BadgeSelection extends Component<Props$
|
|
7628
|
+
declare class BadgeSelection extends Component<Props$1f, SpreadsheetChildEnv> {
|
|
7601
7629
|
static template: string;
|
|
7602
7630
|
static props: {
|
|
7603
7631
|
choices: ArrayConstructor;
|
|
@@ -7606,14 +7634,14 @@ declare class BadgeSelection extends Component<Props$1e, SpreadsheetChildEnv> {
|
|
|
7606
7634
|
};
|
|
7607
7635
|
}
|
|
7608
7636
|
|
|
7609
|
-
interface Props$
|
|
7637
|
+
interface Props$1e {
|
|
7610
7638
|
action: ActionSpec;
|
|
7611
7639
|
hasTriangleDownIcon?: boolean;
|
|
7612
7640
|
selectedColor?: string;
|
|
7613
7641
|
class?: string;
|
|
7614
7642
|
onClick?: (ev: MouseEvent) => void;
|
|
7615
7643
|
}
|
|
7616
|
-
declare class ActionButton extends Component<Props$
|
|
7644
|
+
declare class ActionButton extends Component<Props$1e, SpreadsheetChildEnv> {
|
|
7617
7645
|
static template: string;
|
|
7618
7646
|
static props: {
|
|
7619
7647
|
action: ObjectConstructor;
|
|
@@ -7800,7 +7828,7 @@ declare class ColorPicker extends Component<ColorPickerProps, SpreadsheetChildEn
|
|
|
7800
7828
|
isSameColor(color1: Color, color2: Color): boolean;
|
|
7801
7829
|
}
|
|
7802
7830
|
|
|
7803
|
-
interface Props$
|
|
7831
|
+
interface Props$1d {
|
|
7804
7832
|
currentColor: string | undefined;
|
|
7805
7833
|
toggleColorPicker: () => void;
|
|
7806
7834
|
showColorPicker: boolean;
|
|
@@ -7811,7 +7839,7 @@ interface Props$1c {
|
|
|
7811
7839
|
dropdownMaxHeight?: Pixel;
|
|
7812
7840
|
class?: string;
|
|
7813
7841
|
}
|
|
7814
|
-
declare class ColorPickerWidget extends Component<Props$
|
|
7842
|
+
declare class ColorPickerWidget extends Component<Props$1d, SpreadsheetChildEnv> {
|
|
7815
7843
|
static template: string;
|
|
7816
7844
|
static props: {
|
|
7817
7845
|
currentColor: {
|
|
@@ -7872,14 +7900,14 @@ declare class CellPopoverStore extends SpreadsheetStore {
|
|
|
7872
7900
|
interface State$5 {
|
|
7873
7901
|
isOpen: boolean;
|
|
7874
7902
|
}
|
|
7875
|
-
interface Props$
|
|
7903
|
+
interface Props$1c {
|
|
7876
7904
|
currentFontSize: number;
|
|
7877
7905
|
class: string;
|
|
7878
7906
|
onFontSizeChanged: (fontSize: number) => void;
|
|
7879
7907
|
onToggle?: () => void;
|
|
7880
7908
|
onFocusInput?: () => void;
|
|
7881
7909
|
}
|
|
7882
|
-
declare class FontSizeEditor extends Component<Props$
|
|
7910
|
+
declare class FontSizeEditor extends Component<Props$1c, SpreadsheetChildEnv> {
|
|
7883
7911
|
static template: string;
|
|
7884
7912
|
static props: {
|
|
7885
7913
|
currentFontSize: NumberConstructor;
|
|
@@ -7917,7 +7945,7 @@ declare class FontSizeEditor extends Component<Props$1b, SpreadsheetChildEnv> {
|
|
|
7917
7945
|
onInputKeydown(ev: KeyboardEvent): void;
|
|
7918
7946
|
}
|
|
7919
7947
|
|
|
7920
|
-
interface Props$
|
|
7948
|
+
interface Props$1b {
|
|
7921
7949
|
class?: string;
|
|
7922
7950
|
style: ChartStyle;
|
|
7923
7951
|
updateStyle: (style: ChartStyle) => void;
|
|
@@ -7926,7 +7954,7 @@ interface Props$1a {
|
|
|
7926
7954
|
hasHorizontalAlign?: boolean;
|
|
7927
7955
|
hasBackgroundColor?: boolean;
|
|
7928
7956
|
}
|
|
7929
|
-
declare class TextStyler extends Component<Props$
|
|
7957
|
+
declare class TextStyler extends Component<Props$1b, SpreadsheetChildEnv> {
|
|
7930
7958
|
static template: string;
|
|
7931
7959
|
static components: {
|
|
7932
7960
|
ColorPickerWidget: typeof ColorPickerWidget;
|
|
@@ -7994,7 +8022,7 @@ declare class TextStyler extends Component<Props$1a, SpreadsheetChildEnv> {
|
|
|
7994
8022
|
get verticalAlignActions(): ActionSpec[];
|
|
7995
8023
|
}
|
|
7996
8024
|
|
|
7997
|
-
interface Props$
|
|
8025
|
+
interface Props$1a {
|
|
7998
8026
|
title?: string;
|
|
7999
8027
|
placeholder?: string;
|
|
8000
8028
|
updateTitle: (title: string) => void;
|
|
@@ -8003,7 +8031,7 @@ interface Props$19 {
|
|
|
8003
8031
|
defaultStyle?: Partial<TitleDesign>;
|
|
8004
8032
|
updateStyle: (style: TitleDesign) => void;
|
|
8005
8033
|
}
|
|
8006
|
-
declare class ChartTitle extends Component<Props$
|
|
8034
|
+
declare class ChartTitle extends Component<Props$1a, SpreadsheetChildEnv> {
|
|
8007
8035
|
static template: string;
|
|
8008
8036
|
static components: {
|
|
8009
8037
|
Section: typeof Section;
|
|
@@ -8040,13 +8068,13 @@ interface AxisDefinition {
|
|
|
8040
8068
|
id: string;
|
|
8041
8069
|
name: string;
|
|
8042
8070
|
}
|
|
8043
|
-
interface Props$
|
|
8071
|
+
interface Props$19 {
|
|
8044
8072
|
figureId: UID;
|
|
8045
8073
|
definition: ChartWithAxisDefinition;
|
|
8046
8074
|
updateChart: (figureId: UID, definition: Partial<ChartWithAxisDefinition>) => DispatchResult;
|
|
8047
8075
|
axesList: AxisDefinition[];
|
|
8048
8076
|
}
|
|
8049
|
-
declare class AxisDesignEditor extends Component<Props$
|
|
8077
|
+
declare class AxisDesignEditor extends Component<Props$19, SpreadsheetChildEnv> {
|
|
8050
8078
|
static template: string;
|
|
8051
8079
|
static components: {
|
|
8052
8080
|
Section: typeof Section;
|
|
@@ -8078,14 +8106,14 @@ interface Choice {
|
|
|
8078
8106
|
value: unknown;
|
|
8079
8107
|
label: string;
|
|
8080
8108
|
}
|
|
8081
|
-
interface Props$
|
|
8109
|
+
interface Props$18 {
|
|
8082
8110
|
choices: Choice[];
|
|
8083
8111
|
onChange: (value: unknown) => void;
|
|
8084
8112
|
selectedValue: string;
|
|
8085
8113
|
name: string;
|
|
8086
8114
|
direction: "horizontal" | "vertical";
|
|
8087
8115
|
}
|
|
8088
|
-
declare class RadioSelection extends Component<Props$
|
|
8116
|
+
declare class RadioSelection extends Component<Props$18, SpreadsheetChildEnv> {
|
|
8089
8117
|
static template: string;
|
|
8090
8118
|
static props: {
|
|
8091
8119
|
choices: ArrayConstructor;
|
|
@@ -8104,13 +8132,13 @@ declare class RadioSelection extends Component<Props$17, SpreadsheetChildEnv> {
|
|
|
8104
8132
|
};
|
|
8105
8133
|
}
|
|
8106
8134
|
|
|
8107
|
-
interface Props$
|
|
8135
|
+
interface Props$17 {
|
|
8108
8136
|
currentColor?: string;
|
|
8109
8137
|
onColorPicked: (color: string) => void;
|
|
8110
8138
|
title?: string;
|
|
8111
8139
|
disableNoColor?: boolean;
|
|
8112
8140
|
}
|
|
8113
|
-
declare class RoundColorPicker extends Component<Props$
|
|
8141
|
+
declare class RoundColorPicker extends Component<Props$17, SpreadsheetChildEnv> {
|
|
8114
8142
|
static template: string;
|
|
8115
8143
|
static components: {
|
|
8116
8144
|
Section: typeof Section;
|
|
@@ -8143,14 +8171,14 @@ declare class RoundColorPicker extends Component<Props$16, SpreadsheetChildEnv>
|
|
|
8143
8171
|
get buttonStyle(): string;
|
|
8144
8172
|
}
|
|
8145
8173
|
|
|
8146
|
-
interface Props$
|
|
8174
|
+
interface Props$16 {
|
|
8147
8175
|
figureId: UID;
|
|
8148
8176
|
definition: ChartDefinition;
|
|
8149
8177
|
updateChart: (figureId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
|
|
8150
8178
|
canUpdateChart: (figureId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
|
|
8151
8179
|
defaultChartTitleFontSize?: number;
|
|
8152
8180
|
}
|
|
8153
|
-
declare class GeneralDesignEditor extends Component<Props$
|
|
8181
|
+
declare class GeneralDesignEditor extends Component<Props$16, SpreadsheetChildEnv> {
|
|
8154
8182
|
static template: string;
|
|
8155
8183
|
static components: {
|
|
8156
8184
|
RoundColorPicker: typeof RoundColorPicker;
|
|
@@ -8185,13 +8213,13 @@ declare class GeneralDesignEditor extends Component<Props$15, SpreadsheetChildEn
|
|
|
8185
8213
|
updateChartTitleStyle(style: TitleDesign): void;
|
|
8186
8214
|
}
|
|
8187
8215
|
|
|
8188
|
-
interface Props$
|
|
8216
|
+
interface Props$15 {
|
|
8189
8217
|
figureId: UID;
|
|
8190
8218
|
definition: ChartWithDataSetDefinition;
|
|
8191
8219
|
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8192
8220
|
canUpdateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8193
8221
|
}
|
|
8194
|
-
declare class ChartLegend extends Component<Props$
|
|
8222
|
+
declare class ChartLegend extends Component<Props$15, SpreadsheetChildEnv> {
|
|
8195
8223
|
static template: string;
|
|
8196
8224
|
static components: {
|
|
8197
8225
|
Section: typeof Section;
|
|
@@ -8205,13 +8233,13 @@ declare class ChartLegend extends Component<Props$14, SpreadsheetChildEnv> {
|
|
|
8205
8233
|
updateLegendPosition(ev: any): void;
|
|
8206
8234
|
}
|
|
8207
8235
|
|
|
8208
|
-
interface Props$
|
|
8236
|
+
interface Props$14 {
|
|
8209
8237
|
figureId: UID;
|
|
8210
8238
|
definition: ChartWithDataSetDefinition;
|
|
8211
8239
|
canUpdateChart: (figureID: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8212
8240
|
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8213
8241
|
}
|
|
8214
|
-
declare class SeriesDesignEditor extends Component<Props$
|
|
8242
|
+
declare class SeriesDesignEditor extends Component<Props$14, SpreadsheetChildEnv> {
|
|
8215
8243
|
static template: string;
|
|
8216
8244
|
static components: {
|
|
8217
8245
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
@@ -8239,13 +8267,13 @@ declare class SeriesDesignEditor extends Component<Props$13, SpreadsheetChildEnv
|
|
|
8239
8267
|
getDataSeriesLabel(): string | undefined;
|
|
8240
8268
|
}
|
|
8241
8269
|
|
|
8242
|
-
interface Props$
|
|
8270
|
+
interface Props$13 {
|
|
8243
8271
|
figureId: UID;
|
|
8244
8272
|
definition: ChartWithDataSetDefinition;
|
|
8245
8273
|
canUpdateChart: (figureID: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8246
8274
|
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8247
8275
|
}
|
|
8248
|
-
declare class SeriesWithAxisDesignEditor extends Component<Props$
|
|
8276
|
+
declare class SeriesWithAxisDesignEditor extends Component<Props$13, SpreadsheetChildEnv> {
|
|
8249
8277
|
static template: string;
|
|
8250
8278
|
static components: {
|
|
8251
8279
|
SeriesDesignEditor: typeof SeriesDesignEditor;
|
|
@@ -8286,14 +8314,14 @@ declare class SeriesWithAxisDesignEditor extends Component<Props$12, Spreadsheet
|
|
|
8286
8314
|
updateTrendLineValue(index: number, config: any): void;
|
|
8287
8315
|
}
|
|
8288
8316
|
|
|
8289
|
-
interface Props$
|
|
8317
|
+
interface Props$12 {
|
|
8290
8318
|
figureId: UID;
|
|
8291
8319
|
definition: ChartWithDataSetDefinition;
|
|
8292
8320
|
updateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8293
8321
|
canUpdateChart: (figureId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8294
8322
|
defaultValue?: boolean;
|
|
8295
8323
|
}
|
|
8296
|
-
declare class ChartShowValues extends Component<Props$
|
|
8324
|
+
declare class ChartShowValues extends Component<Props$12, SpreadsheetChildEnv> {
|
|
8297
8325
|
static template: string;
|
|
8298
8326
|
static components: {
|
|
8299
8327
|
Checkbox: typeof Checkbox;
|
|
@@ -8310,13 +8338,13 @@ declare class ChartShowValues extends Component<Props$11, SpreadsheetChildEnv> {
|
|
|
8310
8338
|
};
|
|
8311
8339
|
}
|
|
8312
8340
|
|
|
8313
|
-
interface Props$
|
|
8341
|
+
interface Props$11 {
|
|
8314
8342
|
figureId: UID;
|
|
8315
8343
|
definition: ChartWithDataSetDefinition;
|
|
8316
8344
|
canUpdateChart: (figureID: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8317
8345
|
updateChart: (figureId: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8318
8346
|
}
|
|
8319
|
-
declare class ChartWithAxisDesignPanel<P extends Props$
|
|
8347
|
+
declare class ChartWithAxisDesignPanel<P extends Props$11 = Props$11> extends Component<P, SpreadsheetChildEnv> {
|
|
8320
8348
|
static template: string;
|
|
8321
8349
|
static components: {
|
|
8322
8350
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -8336,13 +8364,13 @@ declare class ChartWithAxisDesignPanel<P extends Props$10 = Props$10> extends Co
|
|
|
8336
8364
|
get axesList(): AxisDefinition[];
|
|
8337
8365
|
}
|
|
8338
8366
|
|
|
8339
|
-
interface Props
|
|
8367
|
+
interface Props$10 {
|
|
8340
8368
|
figureId: UID;
|
|
8341
8369
|
definition: GaugeChartDefinition;
|
|
8342
8370
|
canUpdateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8343
8371
|
updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8344
8372
|
}
|
|
8345
|
-
declare class GaugeChartConfigPanel extends Component<Props
|
|
8373
|
+
declare class GaugeChartConfigPanel extends Component<Props$10, SpreadsheetChildEnv> {
|
|
8346
8374
|
static template: string;
|
|
8347
8375
|
static components: {
|
|
8348
8376
|
ChartErrorSection: typeof ChartErrorSection;
|
|
@@ -8407,13 +8435,13 @@ interface EnrichedToken extends Token {
|
|
|
8407
8435
|
isInHoverContext?: boolean;
|
|
8408
8436
|
}
|
|
8409
8437
|
|
|
8410
|
-
interface Props
|
|
8438
|
+
interface Props$$ {
|
|
8411
8439
|
proposals: AutoCompleteProposal[];
|
|
8412
8440
|
selectedIndex: number | undefined;
|
|
8413
8441
|
onValueSelected: (value: string) => void;
|
|
8414
8442
|
onValueHovered: (index: string) => void;
|
|
8415
8443
|
}
|
|
8416
|
-
declare class TextValueProvider extends Component<Props
|
|
8444
|
+
declare class TextValueProvider extends Component<Props$$> {
|
|
8417
8445
|
static template: string;
|
|
8418
8446
|
static props: {
|
|
8419
8447
|
proposals: ArrayConstructor;
|
|
@@ -8470,11 +8498,11 @@ declare class ContentEditableHelper {
|
|
|
8470
8498
|
getText(): string;
|
|
8471
8499
|
}
|
|
8472
8500
|
|
|
8473
|
-
interface Props$
|
|
8501
|
+
interface Props$_ {
|
|
8474
8502
|
functionDescription: FunctionDescription;
|
|
8475
8503
|
argsToFocus: number[];
|
|
8476
8504
|
}
|
|
8477
|
-
declare class FunctionDescriptionProvider extends Component<Props$
|
|
8505
|
+
declare class FunctionDescriptionProvider extends Component<Props$_, SpreadsheetChildEnv> {
|
|
8478
8506
|
static template: string;
|
|
8479
8507
|
static props: {
|
|
8480
8508
|
functionDescription: ObjectConstructor;
|
|
@@ -8485,15 +8513,15 @@ declare class FunctionDescriptionProvider extends Component<Props$Z, Spreadsheet
|
|
|
8485
8513
|
};
|
|
8486
8514
|
private state;
|
|
8487
8515
|
toggle(): void;
|
|
8488
|
-
getContext(): Props$
|
|
8516
|
+
getContext(): Props$_;
|
|
8489
8517
|
get formulaArgSeparator(): string;
|
|
8490
8518
|
}
|
|
8491
8519
|
|
|
8492
|
-
interface Props$
|
|
8520
|
+
interface Props$Z {
|
|
8493
8521
|
anchorRect: Rect;
|
|
8494
8522
|
content: string;
|
|
8495
8523
|
}
|
|
8496
|
-
declare class SpeechBubble extends Component<Props$
|
|
8524
|
+
declare class SpeechBubble extends Component<Props$Z, SpreadsheetChildEnv> {
|
|
8497
8525
|
static template: string;
|
|
8498
8526
|
static props: {
|
|
8499
8527
|
content: StringConstructor;
|
|
@@ -8906,7 +8934,7 @@ interface AutoCompleteProviderDefinition {
|
|
|
8906
8934
|
}, tokenAtCursor: EnrichedToken, text: string): void;
|
|
8907
8935
|
}
|
|
8908
8936
|
|
|
8909
|
-
interface Props$
|
|
8937
|
+
interface Props$Y {
|
|
8910
8938
|
onConfirm: (content: string) => void;
|
|
8911
8939
|
composerContent: string;
|
|
8912
8940
|
defaultRangeSheetId: UID;
|
|
@@ -8918,7 +8946,7 @@ interface Props$X {
|
|
|
8918
8946
|
invalid?: boolean;
|
|
8919
8947
|
getContextualColoredSymbolToken?: (token: Token) => Color;
|
|
8920
8948
|
}
|
|
8921
|
-
declare class StandaloneComposer extends Component<Props$
|
|
8949
|
+
declare class StandaloneComposer extends Component<Props$Y, SpreadsheetChildEnv> {
|
|
8922
8950
|
static template: string;
|
|
8923
8951
|
static props: {
|
|
8924
8952
|
composerContent: {
|
|
@@ -8981,13 +9009,13 @@ interface PanelState {
|
|
|
8981
9009
|
sectionRuleCancelledReasons?: CommandResult[];
|
|
8982
9010
|
sectionRule: SectionRule;
|
|
8983
9011
|
}
|
|
8984
|
-
interface Props$
|
|
9012
|
+
interface Props$X {
|
|
8985
9013
|
figureId: UID;
|
|
8986
9014
|
definition: GaugeChartDefinition;
|
|
8987
9015
|
canUpdateChart: (figureID: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8988
9016
|
updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8989
9017
|
}
|
|
8990
|
-
declare class GaugeChartDesignPanel extends Component<Props$
|
|
9018
|
+
declare class GaugeChartDesignPanel extends Component<Props$X, SpreadsheetChildEnv> {
|
|
8991
9019
|
static template: string;
|
|
8992
9020
|
static components: {
|
|
8993
9021
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
@@ -9037,13 +9065,13 @@ declare class LineConfigPanel extends GenericChartConfigPanel {
|
|
|
9037
9065
|
onUpdateCumulative(cumulative: boolean): void;
|
|
9038
9066
|
}
|
|
9039
9067
|
|
|
9040
|
-
interface Props$
|
|
9068
|
+
interface Props$W {
|
|
9041
9069
|
figureId: UID;
|
|
9042
9070
|
definition: ScorecardChartDefinition;
|
|
9043
9071
|
canUpdateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
9044
9072
|
updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
9045
9073
|
}
|
|
9046
|
-
declare class ScorecardChartConfigPanel extends Component<Props$
|
|
9074
|
+
declare class ScorecardChartConfigPanel extends Component<Props$W, SpreadsheetChildEnv> {
|
|
9047
9075
|
static template: string;
|
|
9048
9076
|
static components: {
|
|
9049
9077
|
SelectionInput: typeof SelectionInput;
|
|
@@ -9072,13 +9100,13 @@ declare class ScorecardChartConfigPanel extends Component<Props$V, SpreadsheetCh
|
|
|
9072
9100
|
}
|
|
9073
9101
|
|
|
9074
9102
|
type ColorPickerId = undefined | "backgroundColor" | "baselineColorUp" | "baselineColorDown";
|
|
9075
|
-
interface Props$
|
|
9103
|
+
interface Props$V {
|
|
9076
9104
|
figureId: UID;
|
|
9077
9105
|
definition: ScorecardChartDefinition;
|
|
9078
9106
|
canUpdateChart: (figureID: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
9079
9107
|
updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
9080
9108
|
}
|
|
9081
|
-
declare class ScorecardChartDesignPanel extends Component<Props$
|
|
9109
|
+
declare class ScorecardChartDesignPanel extends Component<Props$V, SpreadsheetChildEnv> {
|
|
9082
9110
|
static template: string;
|
|
9083
9111
|
static components: {
|
|
9084
9112
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -9256,11 +9284,11 @@ declare class ComposerFocusStore extends SpreadsheetStore {
|
|
|
9256
9284
|
private setComposerContent;
|
|
9257
9285
|
}
|
|
9258
9286
|
|
|
9259
|
-
interface Props$
|
|
9287
|
+
interface Props$U {
|
|
9260
9288
|
figureUI: FigureUI;
|
|
9261
9289
|
isFullScreen?: boolean;
|
|
9262
9290
|
}
|
|
9263
|
-
declare class ChartJsComponent extends Component<Props$
|
|
9291
|
+
declare class ChartJsComponent extends Component<Props$U, SpreadsheetChildEnv> {
|
|
9264
9292
|
static template: string;
|
|
9265
9293
|
static props: {
|
|
9266
9294
|
figureUI: ObjectConstructor;
|
|
@@ -9285,10 +9313,10 @@ declare class ChartJsComponent extends Component<Props$T, SpreadsheetChildEnv> {
|
|
|
9285
9313
|
get animationFigureId(): string;
|
|
9286
9314
|
}
|
|
9287
9315
|
|
|
9288
|
-
interface Props$
|
|
9316
|
+
interface Props$T {
|
|
9289
9317
|
figureUI: FigureUI;
|
|
9290
9318
|
}
|
|
9291
|
-
declare class ScorecardChart$1 extends Component<Props$
|
|
9319
|
+
declare class ScorecardChart$1 extends Component<Props$T, SpreadsheetChildEnv> {
|
|
9292
9320
|
static template: string;
|
|
9293
9321
|
static props: {
|
|
9294
9322
|
figureUI: ObjectConstructor;
|
|
@@ -9364,7 +9392,7 @@ declare class Menu extends Component<MenuProps, SpreadsheetChildEnv> {
|
|
|
9364
9392
|
onClickMenu(menu: Action, ev: CustomEvent): void;
|
|
9365
9393
|
}
|
|
9366
9394
|
|
|
9367
|
-
interface Props$
|
|
9395
|
+
interface Props$S {
|
|
9368
9396
|
anchorRect: Rect;
|
|
9369
9397
|
popoverPositioning: PopoverPropsPosition;
|
|
9370
9398
|
menuItems: Action[];
|
|
@@ -9384,7 +9412,7 @@ interface MenuState {
|
|
|
9384
9412
|
menuItems: Action[];
|
|
9385
9413
|
isHoveringChild?: boolean;
|
|
9386
9414
|
}
|
|
9387
|
-
declare class MenuPopover extends Component<Props$
|
|
9415
|
+
declare class MenuPopover extends Component<Props$S, SpreadsheetChildEnv> {
|
|
9388
9416
|
static template: string;
|
|
9389
9417
|
static props: {
|
|
9390
9418
|
anchorRect: ObjectConstructor;
|
|
@@ -9464,14 +9492,14 @@ declare class MenuPopover extends Component<Props$R, SpreadsheetChildEnv> {
|
|
|
9464
9492
|
}
|
|
9465
9493
|
|
|
9466
9494
|
type ResizeAnchor = "top left" | "top" | "top right" | "right" | "bottom right" | "bottom" | "bottom left" | "left";
|
|
9467
|
-
interface Props$
|
|
9495
|
+
interface Props$R {
|
|
9468
9496
|
figureUI: FigureUI;
|
|
9469
9497
|
style: string;
|
|
9470
9498
|
onFigureDeleted: () => void;
|
|
9471
9499
|
onMouseDown: (ev: MouseEvent) => void;
|
|
9472
9500
|
onClickAnchor(dirX: ResizeDirection, dirY: ResizeDirection, ev: MouseEvent): void;
|
|
9473
9501
|
}
|
|
9474
|
-
declare class FigureComponent extends Component<Props$
|
|
9502
|
+
declare class FigureComponent extends Component<Props$R, SpreadsheetChildEnv> {
|
|
9475
9503
|
static template: string;
|
|
9476
9504
|
static props: {
|
|
9477
9505
|
figureUI: ObjectConstructor;
|
|
@@ -9521,7 +9549,7 @@ declare class FigureComponent extends Component<Props$Q, SpreadsheetChildEnv> {
|
|
|
9521
9549
|
private openContextMenu;
|
|
9522
9550
|
}
|
|
9523
9551
|
|
|
9524
|
-
interface Props$
|
|
9552
|
+
interface Props$Q {
|
|
9525
9553
|
figureUI: FigureUI;
|
|
9526
9554
|
}
|
|
9527
9555
|
interface MenuItem {
|
|
@@ -9531,7 +9559,7 @@ interface MenuItem {
|
|
|
9531
9559
|
onClick: () => void;
|
|
9532
9560
|
isSelected?: boolean;
|
|
9533
9561
|
}
|
|
9534
|
-
declare class ChartDashboardMenu extends Component<Props$
|
|
9562
|
+
declare class ChartDashboardMenu extends Component<Props$Q, SpreadsheetChildEnv> {
|
|
9535
9563
|
static template: string;
|
|
9536
9564
|
static components: {
|
|
9537
9565
|
MenuPopover: typeof MenuPopover;
|
|
@@ -9549,11 +9577,11 @@ declare class ChartDashboardMenu extends Component<Props$P, SpreadsheetChildEnv>
|
|
|
9549
9577
|
get fullScreenMenuItem(): MenuItem | undefined;
|
|
9550
9578
|
}
|
|
9551
9579
|
|
|
9552
|
-
interface Props$
|
|
9580
|
+
interface Props$P {
|
|
9553
9581
|
figureUI: FigureUI;
|
|
9554
9582
|
onFigureDeleted: () => void;
|
|
9555
9583
|
}
|
|
9556
|
-
declare class ChartFigure extends Component<Props$
|
|
9584
|
+
declare class ChartFigure extends Component<Props$P, SpreadsheetChildEnv> {
|
|
9557
9585
|
static template: string;
|
|
9558
9586
|
static props: {
|
|
9559
9587
|
figureUI: ObjectConstructor;
|
|
@@ -9578,7 +9606,7 @@ declare class DelayedHoveredCellStore extends SpreadsheetStore {
|
|
|
9578
9606
|
|
|
9579
9607
|
type DnDDirection = "all" | "vertical" | "horizontal";
|
|
9580
9608
|
|
|
9581
|
-
interface Props$
|
|
9609
|
+
interface Props$O {
|
|
9582
9610
|
isVisible: boolean;
|
|
9583
9611
|
position: Position;
|
|
9584
9612
|
}
|
|
@@ -9590,7 +9618,7 @@ interface State$4 {
|
|
|
9590
9618
|
position: Position;
|
|
9591
9619
|
handler: boolean;
|
|
9592
9620
|
}
|
|
9593
|
-
declare class Autofill extends Component<Props$
|
|
9621
|
+
declare class Autofill extends Component<Props$O, SpreadsheetChildEnv> {
|
|
9594
9622
|
static template: string;
|
|
9595
9623
|
static props: {
|
|
9596
9624
|
position: ObjectConstructor;
|
|
@@ -9630,7 +9658,7 @@ declare class ClientTag extends Component<ClientTagProps, SpreadsheetChildEnv> {
|
|
|
9630
9658
|
get tagStyle(): string;
|
|
9631
9659
|
}
|
|
9632
9660
|
|
|
9633
|
-
interface Props$
|
|
9661
|
+
interface Props$N {
|
|
9634
9662
|
gridDims: DOMDimension;
|
|
9635
9663
|
onInputContextMenu: (event: MouseEvent) => void;
|
|
9636
9664
|
}
|
|
@@ -9638,7 +9666,7 @@ interface Props$M {
|
|
|
9638
9666
|
* This component is a composer which positions itself on the grid at the anchor cell.
|
|
9639
9667
|
* It also applies the style of the cell to the composer input.
|
|
9640
9668
|
*/
|
|
9641
|
-
declare class GridComposer extends Component<Props$
|
|
9669
|
+
declare class GridComposer extends Component<Props$N, SpreadsheetChildEnv> {
|
|
9642
9670
|
static template: string;
|
|
9643
9671
|
static props: {
|
|
9644
9672
|
gridDims: ObjectConstructor;
|
|
@@ -9682,7 +9710,7 @@ interface SnapLine<T extends HFigureAxisType | VFigureAxisType> {
|
|
|
9682
9710
|
}
|
|
9683
9711
|
|
|
9684
9712
|
type ContainerType = "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "dnd";
|
|
9685
|
-
interface Props$
|
|
9713
|
+
interface Props$M {
|
|
9686
9714
|
onFigureDeleted: () => void;
|
|
9687
9715
|
}
|
|
9688
9716
|
interface Container {
|
|
@@ -9762,7 +9790,7 @@ interface DndState {
|
|
|
9762
9790
|
* that occurred during the drag & drop, and to position the figure on the correct pane.
|
|
9763
9791
|
*
|
|
9764
9792
|
*/
|
|
9765
|
-
declare class FiguresContainer extends Component<Props$
|
|
9793
|
+
declare class FiguresContainer extends Component<Props$M, SpreadsheetChildEnv> {
|
|
9766
9794
|
static template: string;
|
|
9767
9795
|
static props: {
|
|
9768
9796
|
onFigureDeleted: FunctionConstructor;
|
|
@@ -9798,10 +9826,10 @@ declare class FiguresContainer extends Component<Props$L, SpreadsheetChildEnv> {
|
|
|
9798
9826
|
private getSnapLineStyle;
|
|
9799
9827
|
}
|
|
9800
9828
|
|
|
9801
|
-
interface Props$
|
|
9829
|
+
interface Props$L {
|
|
9802
9830
|
focusGrid: () => void;
|
|
9803
9831
|
}
|
|
9804
|
-
declare class GridAddRowsFooter extends Component<Props$
|
|
9832
|
+
declare class GridAddRowsFooter extends Component<Props$L, SpreadsheetChildEnv> {
|
|
9805
9833
|
static template: string;
|
|
9806
9834
|
static props: {
|
|
9807
9835
|
focusGrid: FunctionConstructor;
|
|
@@ -9825,7 +9853,7 @@ declare class GridAddRowsFooter extends Component<Props$K, SpreadsheetChildEnv>
|
|
|
9825
9853
|
private onExternalClick;
|
|
9826
9854
|
}
|
|
9827
9855
|
|
|
9828
|
-
interface Props$
|
|
9856
|
+
interface Props$K {
|
|
9829
9857
|
onCellDoubleClicked: (col: HeaderIndex, row: HeaderIndex) => void;
|
|
9830
9858
|
onCellClicked: (col: HeaderIndex, row: HeaderIndex, modifiers: GridClickModifiers, ev: PointerEvent | MouseEvent) => void;
|
|
9831
9859
|
onCellRightClicked: (col: HeaderIndex, row: HeaderIndex, coordinates: DOMCoordinates) => void;
|
|
@@ -9838,7 +9866,7 @@ interface Props$J {
|
|
|
9838
9866
|
height: number;
|
|
9839
9867
|
};
|
|
9840
9868
|
}
|
|
9841
|
-
declare class GridOverlay extends Component<Props$
|
|
9869
|
+
declare class GridOverlay extends Component<Props$K, SpreadsheetChildEnv> {
|
|
9842
9870
|
static template: string;
|
|
9843
9871
|
static props: {
|
|
9844
9872
|
onCellDoubleClicked: {
|
|
@@ -9898,12 +9926,12 @@ declare class GridOverlay extends Component<Props$J, SpreadsheetChildEnv> {
|
|
|
9898
9926
|
private getInteractiveIconAtEvent;
|
|
9899
9927
|
}
|
|
9900
9928
|
|
|
9901
|
-
interface Props$
|
|
9929
|
+
interface Props$J {
|
|
9902
9930
|
gridRect: Rect;
|
|
9903
9931
|
onClosePopover: () => void;
|
|
9904
9932
|
onMouseWheel: (ev: WheelEvent) => void;
|
|
9905
9933
|
}
|
|
9906
|
-
declare class GridPopover extends Component<Props$
|
|
9934
|
+
declare class GridPopover extends Component<Props$J, SpreadsheetChildEnv> {
|
|
9907
9935
|
static template: string;
|
|
9908
9936
|
static props: {
|
|
9909
9937
|
onClosePopover: FunctionConstructor;
|
|
@@ -9919,7 +9947,7 @@ declare class GridPopover extends Component<Props$I, SpreadsheetChildEnv> {
|
|
|
9919
9947
|
get cellPopover(): PositionedCellPopoverComponent | ClosedCellPopover;
|
|
9920
9948
|
}
|
|
9921
9949
|
|
|
9922
|
-
interface Props$
|
|
9950
|
+
interface Props$I {
|
|
9923
9951
|
headersGroups: ConsecutiveIndexes[];
|
|
9924
9952
|
offset: number;
|
|
9925
9953
|
headerRange: {
|
|
@@ -9927,7 +9955,7 @@ interface Props$H {
|
|
|
9927
9955
|
end: HeaderIndex;
|
|
9928
9956
|
};
|
|
9929
9957
|
}
|
|
9930
|
-
declare class UnhideRowHeaders extends Component<Props$
|
|
9958
|
+
declare class UnhideRowHeaders extends Component<Props$I, SpreadsheetChildEnv> {
|
|
9931
9959
|
static template: string;
|
|
9932
9960
|
static props: {
|
|
9933
9961
|
headersGroups: ArrayConstructor;
|
|
@@ -9946,7 +9974,7 @@ declare class UnhideRowHeaders extends Component<Props$H, SpreadsheetChildEnv> {
|
|
|
9946
9974
|
unhide(hiddenElements: HeaderIndex[]): void;
|
|
9947
9975
|
isVisible(header: HeaderIndex): boolean;
|
|
9948
9976
|
}
|
|
9949
|
-
declare class UnhideColumnHeaders extends Component<Props$
|
|
9977
|
+
declare class UnhideColumnHeaders extends Component<Props$I, SpreadsheetChildEnv> {
|
|
9950
9978
|
static template: string;
|
|
9951
9979
|
static props: {
|
|
9952
9980
|
headersGroups: ArrayConstructor;
|
|
@@ -10139,13 +10167,13 @@ declare class HeadersOverlay extends Component<any, SpreadsheetChildEnv> {
|
|
|
10139
10167
|
}
|
|
10140
10168
|
|
|
10141
10169
|
type Orientation$1 = "n" | "s" | "w" | "e";
|
|
10142
|
-
interface Props$
|
|
10170
|
+
interface Props$H {
|
|
10143
10171
|
zone: Zone;
|
|
10144
10172
|
orientation: Orientation$1;
|
|
10145
10173
|
isMoving: boolean;
|
|
10146
10174
|
onMoveHighlight: (ev: PointerEvent) => void;
|
|
10147
10175
|
}
|
|
10148
|
-
declare class Border extends Component<Props$
|
|
10176
|
+
declare class Border extends Component<Props$H, SpreadsheetChildEnv> {
|
|
10149
10177
|
static template: string;
|
|
10150
10178
|
static props: {
|
|
10151
10179
|
zone: ObjectConstructor;
|
|
@@ -10158,14 +10186,14 @@ declare class Border extends Component<Props$G, SpreadsheetChildEnv> {
|
|
|
10158
10186
|
}
|
|
10159
10187
|
|
|
10160
10188
|
type Orientation = "nw" | "ne" | "sw" | "se" | "n" | "s" | "e" | "w";
|
|
10161
|
-
interface Props$
|
|
10189
|
+
interface Props$G {
|
|
10162
10190
|
zone: Zone;
|
|
10163
10191
|
color: Color;
|
|
10164
10192
|
orientation: Orientation;
|
|
10165
10193
|
isResizing: boolean;
|
|
10166
10194
|
onResizeHighlight: (ev: PointerEvent, dirX: ResizeDirection, dirY: ResizeDirection) => void;
|
|
10167
10195
|
}
|
|
10168
|
-
declare class Corner extends Component<Props$
|
|
10196
|
+
declare class Corner extends Component<Props$G, SpreadsheetChildEnv> {
|
|
10169
10197
|
static template: string;
|
|
10170
10198
|
static props: {
|
|
10171
10199
|
zone: ObjectConstructor;
|
|
@@ -10214,7 +10242,7 @@ declare class Highlight extends Component<HighlightProps, SpreadsheetChildEnv> {
|
|
|
10214
10242
|
|
|
10215
10243
|
type ScrollDirection = "horizontal" | "vertical";
|
|
10216
10244
|
|
|
10217
|
-
interface Props$
|
|
10245
|
+
interface Props$F {
|
|
10218
10246
|
width: Pixel;
|
|
10219
10247
|
height: Pixel;
|
|
10220
10248
|
direction: ScrollDirection;
|
|
@@ -10222,7 +10250,7 @@ interface Props$E {
|
|
|
10222
10250
|
offset: Pixel;
|
|
10223
10251
|
onScroll: (offset: Pixel) => void;
|
|
10224
10252
|
}
|
|
10225
|
-
declare class ScrollBar extends Component<Props$
|
|
10253
|
+
declare class ScrollBar extends Component<Props$F> {
|
|
10226
10254
|
static props: {
|
|
10227
10255
|
width: {
|
|
10228
10256
|
type: NumberConstructor;
|
|
@@ -10250,10 +10278,10 @@ declare class ScrollBar extends Component<Props$E> {
|
|
|
10250
10278
|
onScroll(ev: any): void;
|
|
10251
10279
|
}
|
|
10252
10280
|
|
|
10253
|
-
interface Props$
|
|
10281
|
+
interface Props$E {
|
|
10254
10282
|
leftOffset: number;
|
|
10255
10283
|
}
|
|
10256
|
-
declare class HorizontalScrollBar extends Component<Props$
|
|
10284
|
+
declare class HorizontalScrollBar extends Component<Props$E, SpreadsheetChildEnv> {
|
|
10257
10285
|
static props: {
|
|
10258
10286
|
leftOffset: {
|
|
10259
10287
|
type: NumberConstructor;
|
|
@@ -10279,10 +10307,10 @@ declare class HorizontalScrollBar extends Component<Props$D, SpreadsheetChildEnv
|
|
|
10279
10307
|
onScroll(offset: any): void;
|
|
10280
10308
|
}
|
|
10281
10309
|
|
|
10282
|
-
interface Props$
|
|
10310
|
+
interface Props$D {
|
|
10283
10311
|
topOffset: number;
|
|
10284
10312
|
}
|
|
10285
|
-
declare class VerticalScrollBar extends Component<Props$
|
|
10313
|
+
declare class VerticalScrollBar extends Component<Props$D, SpreadsheetChildEnv> {
|
|
10286
10314
|
static props: {
|
|
10287
10315
|
topOffset: {
|
|
10288
10316
|
type: NumberConstructor;
|
|
@@ -10317,13 +10345,13 @@ declare class Selection extends Component<{}, SpreadsheetChildEnv> {
|
|
|
10317
10345
|
get highlightProps(): HighlightProps;
|
|
10318
10346
|
}
|
|
10319
10347
|
|
|
10320
|
-
interface Props$
|
|
10348
|
+
interface Props$C {
|
|
10321
10349
|
table: Table;
|
|
10322
10350
|
}
|
|
10323
10351
|
interface State$3 {
|
|
10324
10352
|
highlightZone: Zone | undefined;
|
|
10325
10353
|
}
|
|
10326
|
-
declare class TableResizer extends Component<Props$
|
|
10354
|
+
declare class TableResizer extends Component<Props$C, SpreadsheetChildEnv> {
|
|
10327
10355
|
static template: string;
|
|
10328
10356
|
static props: {
|
|
10329
10357
|
table: ObjectConstructor;
|
|
@@ -10352,11 +10380,11 @@ declare class TableResizer extends Component<Props$B, SpreadsheetChildEnv> {
|
|
|
10352
10380
|
* - a vertical resizer (same, for rows)
|
|
10353
10381
|
*/
|
|
10354
10382
|
type ContextMenuType = "ROW" | "COL" | "CELL" | "FILTER" | "GROUP_HEADERS" | "UNGROUP_HEADERS";
|
|
10355
|
-
interface Props$
|
|
10383
|
+
interface Props$B {
|
|
10356
10384
|
exposeFocus: (focus: () => void) => void;
|
|
10357
10385
|
getGridSize: () => DOMDimension;
|
|
10358
10386
|
}
|
|
10359
|
-
declare class Grid extends Component<Props$
|
|
10387
|
+
declare class Grid extends Component<Props$B, SpreadsheetChildEnv> {
|
|
10360
10388
|
static template: string;
|
|
10361
10389
|
static props: {
|
|
10362
10390
|
exposeFocus: FunctionConstructor;
|
|
@@ -10472,7 +10500,7 @@ declare class MainChartPanelStore extends SpreadsheetStore {
|
|
|
10472
10500
|
private getChartDefinitionFromContextCreation;
|
|
10473
10501
|
}
|
|
10474
10502
|
|
|
10475
|
-
interface Props$
|
|
10503
|
+
interface Props$A {
|
|
10476
10504
|
figureId: UID;
|
|
10477
10505
|
chartPanelStore: MainChartPanelStore;
|
|
10478
10506
|
}
|
|
@@ -10480,7 +10508,7 @@ interface ChartTypePickerState {
|
|
|
10480
10508
|
popoverProps: PopoverProps | undefined;
|
|
10481
10509
|
popoverStyle: string;
|
|
10482
10510
|
}
|
|
10483
|
-
declare class ChartTypePicker extends Component<Props$
|
|
10511
|
+
declare class ChartTypePicker extends Component<Props$A, SpreadsheetChildEnv> {
|
|
10484
10512
|
static template: string;
|
|
10485
10513
|
static components: {
|
|
10486
10514
|
Section: typeof Section;
|
|
@@ -10516,11 +10544,11 @@ declare class ChartTypePicker extends Component<Props$z, SpreadsheetChildEnv> {
|
|
|
10516
10544
|
private closePopover;
|
|
10517
10545
|
}
|
|
10518
10546
|
|
|
10519
|
-
interface Props$
|
|
10547
|
+
interface Props$z {
|
|
10520
10548
|
onCloseSidePanel: () => void;
|
|
10521
10549
|
figureId: UID;
|
|
10522
10550
|
}
|
|
10523
|
-
declare class ChartPanel extends Component<Props$
|
|
10551
|
+
declare class ChartPanel extends Component<Props$z, SpreadsheetChildEnv> {
|
|
10524
10552
|
static template: string;
|
|
10525
10553
|
static components: {
|
|
10526
10554
|
Section: typeof Section;
|
|
@@ -10543,11 +10571,11 @@ declare class ChartPanel extends Component<Props$y, SpreadsheetChildEnv> {
|
|
|
10543
10571
|
private getChartDefinition;
|
|
10544
10572
|
}
|
|
10545
10573
|
|
|
10546
|
-
interface Props$
|
|
10574
|
+
interface Props$y {
|
|
10547
10575
|
onValueChange: (value: number) => void;
|
|
10548
10576
|
value: number;
|
|
10549
10577
|
}
|
|
10550
|
-
declare class PieHoleSize extends Component<Props$
|
|
10578
|
+
declare class PieHoleSize extends Component<Props$y, SpreadsheetChildEnv> {
|
|
10551
10579
|
static template: string;
|
|
10552
10580
|
static components: {
|
|
10553
10581
|
Section: typeof Section;
|
|
@@ -10560,13 +10588,13 @@ declare class PieHoleSize extends Component<Props$x, SpreadsheetChildEnv> {
|
|
|
10560
10588
|
onChange(value: string): void;
|
|
10561
10589
|
}
|
|
10562
10590
|
|
|
10563
|
-
interface Props$
|
|
10591
|
+
interface Props$x {
|
|
10564
10592
|
figureId: UID;
|
|
10565
10593
|
definition: PieChartDefinition;
|
|
10566
10594
|
canUpdateChart: (figureID: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
|
|
10567
10595
|
updateChart: (figureId: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
|
|
10568
10596
|
}
|
|
10569
|
-
declare class PieChartDesignPanel extends Component<Props$
|
|
10597
|
+
declare class PieChartDesignPanel extends Component<Props$x, SpreadsheetChildEnv> {
|
|
10570
10598
|
static template: string;
|
|
10571
10599
|
static components: {
|
|
10572
10600
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -10588,10 +10616,10 @@ declare class PieChartDesignPanel extends Component<Props$w, SpreadsheetChildEnv
|
|
|
10588
10616
|
get defaultHoleSize(): number;
|
|
10589
10617
|
}
|
|
10590
10618
|
|
|
10591
|
-
interface Props$
|
|
10619
|
+
interface Props$w {
|
|
10592
10620
|
items: ActionSpec[];
|
|
10593
10621
|
}
|
|
10594
|
-
declare class CogWheelMenu extends Component<Props$
|
|
10622
|
+
declare class CogWheelMenu extends Component<Props$w, SpreadsheetChildEnv> {
|
|
10595
10623
|
static template: string;
|
|
10596
10624
|
static components: {
|
|
10597
10625
|
MenuPopover: typeof MenuPopover;
|
|
@@ -10674,14 +10702,14 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
|
|
|
10674
10702
|
get highlights(): Highlight$1[];
|
|
10675
10703
|
}
|
|
10676
10704
|
|
|
10677
|
-
interface Props$
|
|
10705
|
+
interface Props$v {
|
|
10678
10706
|
deferUpdate: boolean;
|
|
10679
10707
|
isDirty: boolean;
|
|
10680
10708
|
toggleDeferUpdate: (value: boolean) => void;
|
|
10681
10709
|
discard: () => void;
|
|
10682
10710
|
apply: () => void;
|
|
10683
10711
|
}
|
|
10684
|
-
declare class PivotDeferUpdate extends Component<Props$
|
|
10712
|
+
declare class PivotDeferUpdate extends Component<Props$v, SpreadsheetChildEnv> {
|
|
10685
10713
|
static template: string;
|
|
10686
10714
|
static props: {
|
|
10687
10715
|
deferUpdate: BooleanConstructor;
|
|
@@ -10698,11 +10726,11 @@ declare class PivotDeferUpdate extends Component<Props$u, SpreadsheetChildEnv> {
|
|
|
10698
10726
|
get deferUpdatesTooltip(): string;
|
|
10699
10727
|
}
|
|
10700
10728
|
|
|
10701
|
-
interface Props$
|
|
10729
|
+
interface Props$u {
|
|
10702
10730
|
onFieldPicked: (field: string) => void;
|
|
10703
10731
|
fields: PivotField[];
|
|
10704
10732
|
}
|
|
10705
|
-
declare class AddDimensionButton extends Component<Props$
|
|
10733
|
+
declare class AddDimensionButton extends Component<Props$u, SpreadsheetChildEnv> {
|
|
10706
10734
|
static template: string;
|
|
10707
10735
|
static components: {
|
|
10708
10736
|
Popover: typeof Popover;
|
|
@@ -10738,7 +10766,7 @@ declare class AddDimensionButton extends Component<Props$t, SpreadsheetChildEnv>
|
|
|
10738
10766
|
onKeyDown(ev: KeyboardEvent): void;
|
|
10739
10767
|
}
|
|
10740
10768
|
|
|
10741
|
-
interface Props$
|
|
10769
|
+
interface Props$t {
|
|
10742
10770
|
value: string;
|
|
10743
10771
|
onChange: (value: string) => void;
|
|
10744
10772
|
class?: string;
|
|
@@ -10746,7 +10774,7 @@ interface Props$s {
|
|
|
10746
10774
|
placeholder?: string;
|
|
10747
10775
|
autofocus?: boolean;
|
|
10748
10776
|
}
|
|
10749
|
-
declare class TextInput extends Component<Props$
|
|
10777
|
+
declare class TextInput extends Component<Props$t, SpreadsheetChildEnv> {
|
|
10750
10778
|
static template: string;
|
|
10751
10779
|
static props: {
|
|
10752
10780
|
value: StringConstructor;
|
|
@@ -10776,13 +10804,13 @@ declare class TextInput extends Component<Props$s, SpreadsheetChildEnv> {
|
|
|
10776
10804
|
onMouseUp(ev: MouseEvent): void;
|
|
10777
10805
|
}
|
|
10778
10806
|
|
|
10779
|
-
interface Props$
|
|
10807
|
+
interface Props$s {
|
|
10780
10808
|
dimension: PivotCoreDimension | PivotCoreMeasure;
|
|
10781
10809
|
onRemoved: (dimension: PivotCoreDimension | PivotCoreMeasure) => void;
|
|
10782
10810
|
onNameUpdated?: (dimension: PivotCoreDimension | PivotCoreMeasure, name?: string) => void;
|
|
10783
10811
|
type: "row" | "col" | "measure";
|
|
10784
10812
|
}
|
|
10785
|
-
declare class PivotDimension extends Component<Props$
|
|
10813
|
+
declare class PivotDimension extends Component<Props$s, SpreadsheetChildEnv> {
|
|
10786
10814
|
static template: string;
|
|
10787
10815
|
static props: {
|
|
10788
10816
|
dimension: ObjectConstructor;
|
|
@@ -10806,13 +10834,13 @@ declare class PivotDimension extends Component<Props$r, SpreadsheetChildEnv> {
|
|
|
10806
10834
|
updateName(name: string): void;
|
|
10807
10835
|
}
|
|
10808
10836
|
|
|
10809
|
-
interface Props$
|
|
10837
|
+
interface Props$r {
|
|
10810
10838
|
dimension: PivotDimension$1;
|
|
10811
10839
|
onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
|
|
10812
10840
|
availableGranularities: Set<string>;
|
|
10813
10841
|
allGranularities: string[];
|
|
10814
10842
|
}
|
|
10815
|
-
declare class PivotDimensionGranularity extends Component<Props$
|
|
10843
|
+
declare class PivotDimensionGranularity extends Component<Props$r, SpreadsheetChildEnv> {
|
|
10816
10844
|
static template: string;
|
|
10817
10845
|
static props: {
|
|
10818
10846
|
dimension: ObjectConstructor;
|
|
@@ -10837,11 +10865,11 @@ declare class PivotDimensionGranularity extends Component<Props$q, SpreadsheetCh
|
|
|
10837
10865
|
};
|
|
10838
10866
|
}
|
|
10839
10867
|
|
|
10840
|
-
interface Props$
|
|
10868
|
+
interface Props$q {
|
|
10841
10869
|
dimension: PivotDimension$1;
|
|
10842
10870
|
onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
|
|
10843
10871
|
}
|
|
10844
|
-
declare class PivotDimensionOrder extends Component<Props$
|
|
10872
|
+
declare class PivotDimensionOrder extends Component<Props$q, SpreadsheetChildEnv> {
|
|
10845
10873
|
static template: string;
|
|
10846
10874
|
static props: {
|
|
10847
10875
|
dimension: ObjectConstructor;
|
|
@@ -10876,6 +10904,32 @@ declare function createPivotFormula(formulaId: string, cell: PivotTableCell): st
|
|
|
10876
10904
|
*/
|
|
10877
10905
|
declare function toNormalizedPivotValue(dimension: Pick<PivotDimension$1, "type" | "displayName" | "granularity">, groupValue: Maybe<CellValue | FunctionResultObject>): CellValue;
|
|
10878
10906
|
declare function toFunctionPivotValue(value: CellValue, dimension: Pick<PivotDimension$1, "type" | "granularity">): string;
|
|
10907
|
+
declare function createCustomFields(definition: PivotCoreDefinition, fields: PivotFields): PivotFields;
|
|
10908
|
+
|
|
10909
|
+
interface Props$p {
|
|
10910
|
+
pivotId: UID;
|
|
10911
|
+
customField: PivotCustomGroupedField;
|
|
10912
|
+
onCustomFieldUpdated: (definition: Partial<PivotCoreDefinition>) => void;
|
|
10913
|
+
}
|
|
10914
|
+
declare class PivotCustomGroupsCollapsible extends Component<Props$p, SpreadsheetChildEnv> {
|
|
10915
|
+
static template: string;
|
|
10916
|
+
static props: {
|
|
10917
|
+
pivotId: StringConstructor;
|
|
10918
|
+
customField: ObjectConstructor;
|
|
10919
|
+
onCustomFieldUpdated: FunctionConstructor;
|
|
10920
|
+
};
|
|
10921
|
+
static components: {
|
|
10922
|
+
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
10923
|
+
TextInput: typeof TextInput;
|
|
10924
|
+
Checkbox: typeof Checkbox;
|
|
10925
|
+
};
|
|
10926
|
+
get groups(): PivotCustomGroup[];
|
|
10927
|
+
get hasOthersGroup(): boolean;
|
|
10928
|
+
addOthersGroup(): void;
|
|
10929
|
+
onDeleteGroup(groupIndex: number): void;
|
|
10930
|
+
onRenameGroup(groupIndex: number, newName: string): void;
|
|
10931
|
+
private updateCustomField;
|
|
10932
|
+
}
|
|
10879
10933
|
|
|
10880
10934
|
interface Props$o {
|
|
10881
10935
|
pivotId: string;
|
|
@@ -10951,6 +11005,7 @@ declare class PivotLayoutConfigurator extends Component<Props$m, SpreadsheetChil
|
|
|
10951
11005
|
PivotDimensionGranularity: typeof PivotDimensionGranularity;
|
|
10952
11006
|
PivotMeasureEditor: typeof PivotMeasureEditor;
|
|
10953
11007
|
PivotSortSection: typeof PivotSortSection;
|
|
11008
|
+
PivotCustomGroupsCollapsible: typeof PivotCustomGroupsCollapsible;
|
|
10954
11009
|
};
|
|
10955
11010
|
static props: {
|
|
10956
11011
|
definition: ObjectConstructor;
|
|
@@ -10990,6 +11045,7 @@ declare class PivotLayoutConfigurator extends Component<Props$m, SpreadsheetChil
|
|
|
10990
11045
|
private getMeasureId;
|
|
10991
11046
|
private getDefaultMeasureAggregator;
|
|
10992
11047
|
addCalculatedMeasure(): void;
|
|
11048
|
+
getCustomField(dimension: PivotDimension$1): PivotCustomGroupedField | undefined;
|
|
10993
11049
|
updateOrder(updateDimension: PivotDimension$1, order?: SortDirection): void;
|
|
10994
11050
|
updateGranularity(dimension: PivotDimension$1, granularity: Granularity): void;
|
|
10995
11051
|
getMeasureDescription(measure: PivotMeasure): string;
|
|
@@ -11619,6 +11675,9 @@ declare class PivotMeasureDisplayPanelStore extends SpreadsheetStore {
|
|
|
11619
11675
|
fieldName: string;
|
|
11620
11676
|
order?: SortDirection;
|
|
11621
11677
|
granularity?: Granularity | string;
|
|
11678
|
+
isCustomField?: boolean;
|
|
11679
|
+
parentField?: string;
|
|
11680
|
+
customGroups?: PivotCustomGroup[];
|
|
11622
11681
|
}[];
|
|
11623
11682
|
get doesDisplayNeedsValue(): boolean;
|
|
11624
11683
|
private isDisplayValueDependant;
|
|
@@ -12704,6 +12763,7 @@ declare const helpers: {
|
|
|
12704
12763
|
getUniqueText: typeof getUniqueText;
|
|
12705
12764
|
isNumber: typeof isNumber;
|
|
12706
12765
|
isDateTime: typeof isDateTime;
|
|
12766
|
+
createCustomFields: typeof createCustomFields;
|
|
12707
12767
|
};
|
|
12708
12768
|
declare const links: {
|
|
12709
12769
|
isMarkdownLink: typeof isMarkdownLink;
|
|
@@ -13371,4 +13431,4 @@ declare const chartHelpers: {
|
|
|
13371
13431
|
WaterfallChart: typeof WaterfallChart;
|
|
13372
13432
|
};
|
|
13373
13433
|
|
|
13374
|
-
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescrWithOpacity, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, ClipboardCell, ClipboardCellData, 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, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, 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, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, 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, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, 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, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, PaintFormat, PaneDivision, ParsedOSClipboardContent, ParsedOsClipboardContentWithImageData, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotColRowDomain, PivotCollapsedDomains, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, 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, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as 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, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, 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, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, helpers, hooks, 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 };
|
|
13434
|
+
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, AnchorOffset, AnchorZone, ApplyRangeChange, ApplyRangeChangeResult, Arg, ArgDefinition, ArgType, AutoFillCellCommand, AutofillAutoCommand, AutofillCellData, AutofillCommand, AutofillData, AutofillModifier, AutofillModifierImplementation, AutofillResult, AutofillSelectCommand, AutofillTableCommand, AutoresizeColumnsCommand, AutoresizeRowsCommand, AxesDesign, AxisDesign, AxisType, BeginsWithRule, BooleanCell, Border$1 as Border, BorderData, BorderDescr, BorderDescrWithOpacity, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelledReason, Cell, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartAxisFormats, ChartCreationContext, ChartDatasetOrientation, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartRuntimeGenerationArgs, ChartStyle, ChartType, ChartWithAxisDefinition, ChartWithDataSetDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearCellsCommand, ClearFormattingCommand, Client, ClientDisconnectedError, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClientWithColor, ClientWithPosition, ClipboardCell, ClipboardCellData, 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, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CoreViewPlugin, 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, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, DeleteUnfilteredContentCommand, Dependencies, Dimension, DimensionTree, DimensionTreeNode, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicatePivotInNewSheetCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EditionMode, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, 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, Immutable, Increment, IncrementModifier, InformationNotification, InitPivotParams, InsertCellCommand, InsertNewPivotCommand, InsertPivotCommand, InsertPivotWithTableCommand, 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, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, OSClipboardContent, Offset, OperationSequenceNode, OrderedLayers, 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, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeAdapter$1 as 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, SplitPivotFormulaCommand, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, 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, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, ValueAndLabel, ValuesFilter, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, availableConditionalFormatOperators, availableDataValidationOperators, availableFiltersOperators, borderStyles, canExecuteInReadonly, chartHelpers, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, filterDateCriterionOperators, filterNumberCriterionOperators, filterTextCriterionOperators, findCellInNewZone, functionCache, helpers, hooks, 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 };
|