@odoo/o-spreadsheet 18.5.0-alpha.7 → 18.5.0-alpha.8
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 +1048 -277
- package/dist/o-spreadsheet.d.ts +259 -159
- package/dist/o-spreadsheet.esm.js +1048 -277
- package/dist/o-spreadsheet.iife.js +1048 -277
- package/dist/o-spreadsheet.iife.min.js +425 -425
- package/dist/o_spreadsheet.xml +97 -3
- package/package.json +1 -1
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -6,6 +6,9 @@ import * as _odoo_owl from '@odoo/owl';
|
|
|
6
6
|
import { ComponentConstructor, Component } from '@odoo/owl';
|
|
7
7
|
import * as chart_js_dist_types_utils from 'chart.js/dist/types/utils';
|
|
8
8
|
import * as chart_js_dist_types_geometric from 'chart.js/dist/types/geometric';
|
|
9
|
+
import * as chart_js_dist_types_basic from 'chart.js/dist/types/basic';
|
|
10
|
+
import * as chart_js_auto from 'chart.js/auto';
|
|
11
|
+
import { Chart, ChartConfiguration as ChartConfiguration$1 } from 'chart.js/auto';
|
|
9
12
|
|
|
10
13
|
interface FigureInfo {
|
|
11
14
|
id: UID;
|
|
@@ -95,6 +98,7 @@ interface CommonChartDefinition {
|
|
|
95
98
|
}
|
|
96
99
|
|
|
97
100
|
interface ComboBarChartDefinition extends CommonChartDefinition {
|
|
101
|
+
readonly zoomable?: boolean;
|
|
98
102
|
}
|
|
99
103
|
|
|
100
104
|
interface BarChartDefinition extends ComboBarChartDefinition {
|
|
@@ -104,6 +108,7 @@ interface BarChartDefinition extends ComboBarChartDefinition {
|
|
|
104
108
|
}
|
|
105
109
|
type BarChartRuntime = {
|
|
106
110
|
chartJsConfig: ChartConfiguration;
|
|
111
|
+
masterChartConfig?: ChartConfiguration;
|
|
107
112
|
background: Color;
|
|
108
113
|
};
|
|
109
114
|
|
|
@@ -117,6 +122,7 @@ type ComboChartDataSet = CustomizedDataSet & {
|
|
|
117
122
|
};
|
|
118
123
|
type ComboChartRuntime = {
|
|
119
124
|
chartJsConfig: ChartConfiguration;
|
|
125
|
+
masterChartConfig?: ChartConfiguration;
|
|
120
126
|
background: Color;
|
|
121
127
|
};
|
|
122
128
|
|
|
@@ -224,9 +230,11 @@ interface LineChartDefinition extends CommonChartDefinition {
|
|
|
224
230
|
readonly cumulative: boolean;
|
|
225
231
|
readonly fillArea?: boolean;
|
|
226
232
|
readonly hideDataMarkers?: boolean;
|
|
233
|
+
readonly zoomable?: boolean;
|
|
227
234
|
}
|
|
228
235
|
type LineChartRuntime = {
|
|
229
236
|
chartJsConfig: ChartConfiguration;
|
|
237
|
+
masterChartConfig?: ChartConfiguration;
|
|
230
238
|
background: Color;
|
|
231
239
|
};
|
|
232
240
|
|
|
@@ -485,6 +493,7 @@ interface WaterfallChartDefinition extends CommonChartDefinition {
|
|
|
485
493
|
readonly positiveValuesColor?: Color;
|
|
486
494
|
readonly negativeValuesColor?: Color;
|
|
487
495
|
readonly subTotalValuesColor?: Color;
|
|
496
|
+
readonly zoomable?: boolean;
|
|
488
497
|
}
|
|
489
498
|
type WaterfallChartRuntime = {
|
|
490
499
|
chartJsConfig: ChartConfiguration;
|
|
@@ -501,6 +510,9 @@ type ChartWithDataSetDefinition = Extract<ChartDefinition, {
|
|
|
501
510
|
type ChartWithAxisDefinition = Extract<ChartWithDataSetDefinition, {
|
|
502
511
|
axesDesign?: AxesDesign;
|
|
503
512
|
}>;
|
|
513
|
+
type ZoomableChartDefinition = Extract<ChartWithAxisDefinition, {
|
|
514
|
+
zoomable?: boolean;
|
|
515
|
+
}>;
|
|
504
516
|
type ChartJSRuntime = LineChartRuntime | PieChartRuntime | BarChartRuntime | ComboChartRuntime | ScatterChartRuntime | WaterfallChartRuntime | PyramidChartRuntime | RadarChartRuntime | GeoChartRuntime | FunnelChartRuntime | SunburstChartRuntime | TreeMapChartRuntime;
|
|
505
517
|
type ChartRuntime = ChartJSRuntime | ScorecardChartRuntime | GaugeChartRuntime;
|
|
506
518
|
interface LabelValues {
|
|
@@ -627,6 +639,7 @@ interface ChartCreationContext {
|
|
|
627
639
|
readonly showHeaders?: boolean;
|
|
628
640
|
readonly headerDesign?: TitleDesign;
|
|
629
641
|
readonly treemapColoringOptions?: TreeMapColoringOptions;
|
|
642
|
+
readonly zoomable?: boolean;
|
|
630
643
|
}
|
|
631
644
|
type ChartAxisFormats = {
|
|
632
645
|
[axisId: string]: Format | undefined;
|
|
@@ -4371,6 +4384,7 @@ interface SpreadsheetChildEnv extends NotificationStoreMethods {
|
|
|
4371
4384
|
imageProvider?: ImageProviderInterface;
|
|
4372
4385
|
isDashboard: () => boolean;
|
|
4373
4386
|
openSidePanel: (panel: string, panelProps?: any) => void;
|
|
4387
|
+
replaceSidePanel: (panel: string, currentPanel: string, panelProps?: any) => void;
|
|
4374
4388
|
toggleSidePanel: (panel: string, panelProps?: any) => void;
|
|
4375
4389
|
clipboard: ClipboardInterface;
|
|
4376
4390
|
startCellEdition: (content?: string) => void;
|
|
@@ -5914,6 +5928,7 @@ declare class SpreadsheetPivotTable {
|
|
|
5914
5928
|
};
|
|
5915
5929
|
sort(measure: string, sortedColumn: PivotSortedColumn, getValue: (measure: string, domain: PivotDomain) => FunctionResultObject): void;
|
|
5916
5930
|
private rowTreeToRows;
|
|
5931
|
+
get numberOfCells(): number;
|
|
5917
5932
|
}
|
|
5918
5933
|
|
|
5919
5934
|
interface InitPivotParams {
|
|
@@ -7123,7 +7138,7 @@ interface ChartSubtypeProperties {
|
|
|
7123
7138
|
preview: string;
|
|
7124
7139
|
}
|
|
7125
7140
|
|
|
7126
|
-
interface Props$
|
|
7141
|
+
interface Props$1p {
|
|
7127
7142
|
label?: string;
|
|
7128
7143
|
value: boolean;
|
|
7129
7144
|
className?: string;
|
|
@@ -7132,7 +7147,7 @@ interface Props$1o {
|
|
|
7132
7147
|
disabled?: boolean;
|
|
7133
7148
|
onChange: (value: boolean) => void;
|
|
7134
7149
|
}
|
|
7135
|
-
declare class Checkbox extends Component<Props$
|
|
7150
|
+
declare class Checkbox extends Component<Props$1p, SpreadsheetChildEnv> {
|
|
7136
7151
|
static template: string;
|
|
7137
7152
|
static props: {
|
|
7138
7153
|
label: {
|
|
@@ -7167,10 +7182,10 @@ declare class Checkbox extends Component<Props$1o, SpreadsheetChildEnv> {
|
|
|
7167
7182
|
onChange(ev: InputEvent): void;
|
|
7168
7183
|
}
|
|
7169
7184
|
|
|
7170
|
-
interface Props$
|
|
7185
|
+
interface Props$1o {
|
|
7171
7186
|
class?: string;
|
|
7172
7187
|
}
|
|
7173
|
-
declare class Section extends Component<Props$
|
|
7188
|
+
declare class Section extends Component<Props$1o, SpreadsheetChildEnv> {
|
|
7174
7189
|
static template: string;
|
|
7175
7190
|
static props: {
|
|
7176
7191
|
class: {
|
|
@@ -7335,7 +7350,7 @@ declare class SelectionInputStore extends SpreadsheetStore {
|
|
|
7335
7350
|
getIndex(rangeId: number | null): number | null;
|
|
7336
7351
|
}
|
|
7337
7352
|
|
|
7338
|
-
interface Props$
|
|
7353
|
+
interface Props$1n {
|
|
7339
7354
|
ranges: string[];
|
|
7340
7355
|
hasSingleRange?: boolean;
|
|
7341
7356
|
required?: boolean;
|
|
@@ -7363,7 +7378,7 @@ interface SelectionRange extends Omit<RangeInputValue, "color"> {
|
|
|
7363
7378
|
* onSelectionChanged is called every time the input value
|
|
7364
7379
|
* changes.
|
|
7365
7380
|
*/
|
|
7366
|
-
declare class SelectionInput extends Component<Props$
|
|
7381
|
+
declare class SelectionInput extends Component<Props$1n, SpreadsheetChildEnv> {
|
|
7367
7382
|
static template: string;
|
|
7368
7383
|
static props: {
|
|
7369
7384
|
ranges: ArrayConstructor;
|
|
@@ -7440,7 +7455,7 @@ declare class SelectionInput extends Component<Props$1m, SpreadsheetChildEnv> {
|
|
|
7440
7455
|
confirm(): void;
|
|
7441
7456
|
}
|
|
7442
7457
|
|
|
7443
|
-
interface Props$
|
|
7458
|
+
interface Props$1m {
|
|
7444
7459
|
ranges: CustomizedDataSet[];
|
|
7445
7460
|
hasSingleRange?: boolean;
|
|
7446
7461
|
onSelectionChanged: (ranges: string[]) => void;
|
|
@@ -7453,7 +7468,7 @@ interface Props$1l {
|
|
|
7453
7468
|
canChangeDatasetOrientation?: boolean;
|
|
7454
7469
|
onFlipAxis?: (structure: string) => void;
|
|
7455
7470
|
}
|
|
7456
|
-
declare class ChartDataSeries extends Component<Props$
|
|
7471
|
+
declare class ChartDataSeries extends Component<Props$1m, SpreadsheetChildEnv> {
|
|
7457
7472
|
static template: string;
|
|
7458
7473
|
static components: {
|
|
7459
7474
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7502,12 +7517,12 @@ declare class ChartDataSeries extends Component<Props$1l, SpreadsheetChildEnv> {
|
|
|
7502
7517
|
get title(): string;
|
|
7503
7518
|
}
|
|
7504
7519
|
|
|
7505
|
-
interface Props$
|
|
7520
|
+
interface Props$1l {
|
|
7506
7521
|
messages: string[];
|
|
7507
7522
|
msgType: "warning" | "error" | "info";
|
|
7508
7523
|
singleBox?: boolean;
|
|
7509
7524
|
}
|
|
7510
|
-
declare class ValidationMessages extends Component<Props$
|
|
7525
|
+
declare class ValidationMessages extends Component<Props$1l, SpreadsheetChildEnv> {
|
|
7511
7526
|
static template: string;
|
|
7512
7527
|
static props: {
|
|
7513
7528
|
messages: ArrayConstructor;
|
|
@@ -7521,10 +7536,10 @@ declare class ValidationMessages extends Component<Props$1k, SpreadsheetChildEnv
|
|
|
7521
7536
|
get alertBoxes(): string[][];
|
|
7522
7537
|
}
|
|
7523
7538
|
|
|
7524
|
-
interface Props$
|
|
7539
|
+
interface Props$1k {
|
|
7525
7540
|
messages: string[];
|
|
7526
7541
|
}
|
|
7527
|
-
declare class ChartErrorSection extends Component<Props$
|
|
7542
|
+
declare class ChartErrorSection extends Component<Props$1k, SpreadsheetChildEnv> {
|
|
7528
7543
|
static template: string;
|
|
7529
7544
|
static components: {
|
|
7530
7545
|
Section: typeof Section;
|
|
@@ -7538,7 +7553,7 @@ declare class ChartErrorSection extends Component<Props$1j, SpreadsheetChildEnv>
|
|
|
7538
7553
|
};
|
|
7539
7554
|
}
|
|
7540
7555
|
|
|
7541
|
-
interface Props$
|
|
7556
|
+
interface Props$1j {
|
|
7542
7557
|
title?: string;
|
|
7543
7558
|
range: string;
|
|
7544
7559
|
isInvalid: boolean;
|
|
@@ -7551,7 +7566,7 @@ interface Props$1i {
|
|
|
7551
7566
|
onChange: (value: boolean) => void;
|
|
7552
7567
|
}>;
|
|
7553
7568
|
}
|
|
7554
|
-
declare class ChartLabelRange extends Component<Props$
|
|
7569
|
+
declare class ChartLabelRange extends Component<Props$1j, SpreadsheetChildEnv> {
|
|
7555
7570
|
static template: string;
|
|
7556
7571
|
static components: {
|
|
7557
7572
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7572,10 +7587,10 @@ declare class ChartLabelRange extends Component<Props$1i, SpreadsheetChildEnv> {
|
|
|
7572
7587
|
optional: boolean;
|
|
7573
7588
|
};
|
|
7574
7589
|
};
|
|
7575
|
-
static defaultProps: Partial<Props$
|
|
7590
|
+
static defaultProps: Partial<Props$1j>;
|
|
7576
7591
|
}
|
|
7577
7592
|
|
|
7578
|
-
interface Props$
|
|
7593
|
+
interface Props$1i {
|
|
7579
7594
|
chartId: UID;
|
|
7580
7595
|
definition: ChartWithDataSetDefinition;
|
|
7581
7596
|
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
@@ -7585,7 +7600,7 @@ interface ChartPanelState {
|
|
|
7585
7600
|
datasetDispatchResult?: DispatchResult;
|
|
7586
7601
|
labelsDispatchResult?: DispatchResult;
|
|
7587
7602
|
}
|
|
7588
|
-
declare class GenericChartConfigPanel extends Component<Props$
|
|
7603
|
+
declare class GenericChartConfigPanel extends Component<Props$1i, SpreadsheetChildEnv> {
|
|
7589
7604
|
static template: string;
|
|
7590
7605
|
static components: {
|
|
7591
7606
|
ChartDataSeries: typeof ChartDataSeries;
|
|
@@ -7654,11 +7669,11 @@ declare class BarConfigPanel extends GenericChartConfigPanel {
|
|
|
7654
7669
|
onUpdateStacked(stacked: boolean): void;
|
|
7655
7670
|
}
|
|
7656
7671
|
|
|
7657
|
-
interface Props$
|
|
7672
|
+
interface Props$1h {
|
|
7658
7673
|
isCollapsed: boolean;
|
|
7659
7674
|
slots: any;
|
|
7660
7675
|
}
|
|
7661
|
-
declare class Collapse extends Component<Props$
|
|
7676
|
+
declare class Collapse extends Component<Props$1h, SpreadsheetChildEnv> {
|
|
7662
7677
|
static template: string;
|
|
7663
7678
|
static props: {
|
|
7664
7679
|
isCollapsed: BooleanConstructor;
|
|
@@ -7697,12 +7712,12 @@ interface Choice$1 {
|
|
|
7697
7712
|
value: string;
|
|
7698
7713
|
label: string;
|
|
7699
7714
|
}
|
|
7700
|
-
interface Props$
|
|
7715
|
+
interface Props$1g {
|
|
7701
7716
|
choices: Choice$1[];
|
|
7702
7717
|
onChange: (value: string) => void;
|
|
7703
7718
|
selectedValue: string;
|
|
7704
7719
|
}
|
|
7705
|
-
declare class BadgeSelection extends Component<Props$
|
|
7720
|
+
declare class BadgeSelection extends Component<Props$1g, SpreadsheetChildEnv> {
|
|
7706
7721
|
static template: string;
|
|
7707
7722
|
static props: {
|
|
7708
7723
|
choices: ArrayConstructor;
|
|
@@ -7711,14 +7726,14 @@ declare class BadgeSelection extends Component<Props$1f, SpreadsheetChildEnv> {
|
|
|
7711
7726
|
};
|
|
7712
7727
|
}
|
|
7713
7728
|
|
|
7714
|
-
interface Props$
|
|
7729
|
+
interface Props$1f {
|
|
7715
7730
|
action: ActionSpec;
|
|
7716
7731
|
hasTriangleDownIcon?: boolean;
|
|
7717
7732
|
selectedColor?: string;
|
|
7718
7733
|
class?: string;
|
|
7719
7734
|
onClick?: (ev: MouseEvent) => void;
|
|
7720
7735
|
}
|
|
7721
|
-
declare class ActionButton extends Component<Props$
|
|
7736
|
+
declare class ActionButton extends Component<Props$1f, SpreadsheetChildEnv> {
|
|
7722
7737
|
static template: string;
|
|
7723
7738
|
static props: {
|
|
7724
7739
|
action: ObjectConstructor;
|
|
@@ -7905,7 +7920,7 @@ declare class ColorPicker extends Component<ColorPickerProps, SpreadsheetChildEn
|
|
|
7905
7920
|
isSameColor(color1: Color, color2: Color): boolean;
|
|
7906
7921
|
}
|
|
7907
7922
|
|
|
7908
|
-
interface Props$
|
|
7923
|
+
interface Props$1e {
|
|
7909
7924
|
currentColor: string | undefined;
|
|
7910
7925
|
toggleColorPicker: () => void;
|
|
7911
7926
|
showColorPicker: boolean;
|
|
@@ -7916,7 +7931,7 @@ interface Props$1d {
|
|
|
7916
7931
|
dropdownMaxHeight?: Pixel;
|
|
7917
7932
|
class?: string;
|
|
7918
7933
|
}
|
|
7919
|
-
declare class ColorPickerWidget extends Component<Props$
|
|
7934
|
+
declare class ColorPickerWidget extends Component<Props$1e, SpreadsheetChildEnv> {
|
|
7920
7935
|
static template: string;
|
|
7921
7936
|
static props: {
|
|
7922
7937
|
currentColor: {
|
|
@@ -7977,14 +7992,14 @@ declare class CellPopoverStore extends SpreadsheetStore {
|
|
|
7977
7992
|
interface State$5 {
|
|
7978
7993
|
isOpen: boolean;
|
|
7979
7994
|
}
|
|
7980
|
-
interface Props$
|
|
7995
|
+
interface Props$1d {
|
|
7981
7996
|
currentFontSize: number;
|
|
7982
7997
|
class: string;
|
|
7983
7998
|
onFontSizeChanged: (fontSize: number) => void;
|
|
7984
7999
|
onToggle?: () => void;
|
|
7985
8000
|
onFocusInput?: () => void;
|
|
7986
8001
|
}
|
|
7987
|
-
declare class FontSizeEditor extends Component<Props$
|
|
8002
|
+
declare class FontSizeEditor extends Component<Props$1d, SpreadsheetChildEnv> {
|
|
7988
8003
|
static template: string;
|
|
7989
8004
|
static props: {
|
|
7990
8005
|
currentFontSize: NumberConstructor;
|
|
@@ -8022,7 +8037,7 @@ declare class FontSizeEditor extends Component<Props$1c, SpreadsheetChildEnv> {
|
|
|
8022
8037
|
onInputKeydown(ev: KeyboardEvent): void;
|
|
8023
8038
|
}
|
|
8024
8039
|
|
|
8025
|
-
interface Props$
|
|
8040
|
+
interface Props$1c {
|
|
8026
8041
|
class?: string;
|
|
8027
8042
|
style: ChartStyle;
|
|
8028
8043
|
updateStyle: (style: ChartStyle) => void;
|
|
@@ -8031,7 +8046,7 @@ interface Props$1b {
|
|
|
8031
8046
|
hasHorizontalAlign?: boolean;
|
|
8032
8047
|
hasBackgroundColor?: boolean;
|
|
8033
8048
|
}
|
|
8034
|
-
declare class TextStyler extends Component<Props$
|
|
8049
|
+
declare class TextStyler extends Component<Props$1c, SpreadsheetChildEnv> {
|
|
8035
8050
|
static template: string;
|
|
8036
8051
|
static components: {
|
|
8037
8052
|
ColorPickerWidget: typeof ColorPickerWidget;
|
|
@@ -8099,7 +8114,7 @@ declare class TextStyler extends Component<Props$1b, SpreadsheetChildEnv> {
|
|
|
8099
8114
|
get verticalAlignActions(): ActionSpec[];
|
|
8100
8115
|
}
|
|
8101
8116
|
|
|
8102
|
-
interface Props$
|
|
8117
|
+
interface Props$1b {
|
|
8103
8118
|
title?: string;
|
|
8104
8119
|
placeholder?: string;
|
|
8105
8120
|
updateTitle: (title: string) => void;
|
|
@@ -8108,7 +8123,7 @@ interface Props$1a {
|
|
|
8108
8123
|
defaultStyle?: Partial<TitleDesign>;
|
|
8109
8124
|
updateStyle: (style: TitleDesign) => void;
|
|
8110
8125
|
}
|
|
8111
|
-
declare class ChartTitle extends Component<Props$
|
|
8126
|
+
declare class ChartTitle extends Component<Props$1b, SpreadsheetChildEnv> {
|
|
8112
8127
|
static template: string;
|
|
8113
8128
|
static components: {
|
|
8114
8129
|
Section: typeof Section;
|
|
@@ -8145,13 +8160,13 @@ interface AxisDefinition {
|
|
|
8145
8160
|
id: string;
|
|
8146
8161
|
name: string;
|
|
8147
8162
|
}
|
|
8148
|
-
interface Props$
|
|
8163
|
+
interface Props$1a {
|
|
8149
8164
|
chartId: UID;
|
|
8150
8165
|
definition: ChartWithAxisDefinition;
|
|
8151
8166
|
updateChart: (chartId: UID, definition: Partial<ChartWithAxisDefinition>) => DispatchResult;
|
|
8152
8167
|
axesList: AxisDefinition[];
|
|
8153
8168
|
}
|
|
8154
|
-
declare class AxisDesignEditor extends Component<Props$
|
|
8169
|
+
declare class AxisDesignEditor extends Component<Props$1a, SpreadsheetChildEnv> {
|
|
8155
8170
|
static template: string;
|
|
8156
8171
|
static components: {
|
|
8157
8172
|
Section: typeof Section;
|
|
@@ -8183,14 +8198,14 @@ interface Choice {
|
|
|
8183
8198
|
value: unknown;
|
|
8184
8199
|
label: string;
|
|
8185
8200
|
}
|
|
8186
|
-
interface Props$
|
|
8201
|
+
interface Props$19 {
|
|
8187
8202
|
choices: Choice[];
|
|
8188
8203
|
onChange: (value: unknown) => void;
|
|
8189
8204
|
selectedValue: string;
|
|
8190
8205
|
name: string;
|
|
8191
8206
|
direction: "horizontal" | "vertical";
|
|
8192
8207
|
}
|
|
8193
|
-
declare class RadioSelection extends Component<Props$
|
|
8208
|
+
declare class RadioSelection extends Component<Props$19, SpreadsheetChildEnv> {
|
|
8194
8209
|
static template: string;
|
|
8195
8210
|
static props: {
|
|
8196
8211
|
choices: ArrayConstructor;
|
|
@@ -8209,13 +8224,13 @@ declare class RadioSelection extends Component<Props$18, SpreadsheetChildEnv> {
|
|
|
8209
8224
|
};
|
|
8210
8225
|
}
|
|
8211
8226
|
|
|
8212
|
-
interface Props$
|
|
8227
|
+
interface Props$18 {
|
|
8213
8228
|
currentColor?: string;
|
|
8214
8229
|
onColorPicked: (color: string) => void;
|
|
8215
8230
|
title?: string;
|
|
8216
8231
|
disableNoColor?: boolean;
|
|
8217
8232
|
}
|
|
8218
|
-
declare class RoundColorPicker extends Component<Props$
|
|
8233
|
+
declare class RoundColorPicker extends Component<Props$18, SpreadsheetChildEnv> {
|
|
8219
8234
|
static template: string;
|
|
8220
8235
|
static components: {
|
|
8221
8236
|
Section: typeof Section;
|
|
@@ -8248,14 +8263,14 @@ declare class RoundColorPicker extends Component<Props$17, SpreadsheetChildEnv>
|
|
|
8248
8263
|
get buttonStyle(): string;
|
|
8249
8264
|
}
|
|
8250
8265
|
|
|
8251
|
-
interface Props$
|
|
8266
|
+
interface Props$17 {
|
|
8252
8267
|
chartId: UID;
|
|
8253
8268
|
definition: ChartDefinition;
|
|
8254
8269
|
updateChart: (chartId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
|
|
8255
8270
|
canUpdateChart: (chartId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
|
|
8256
8271
|
defaultChartTitleFontSize?: number;
|
|
8257
8272
|
}
|
|
8258
|
-
declare class GeneralDesignEditor extends Component<Props$
|
|
8273
|
+
declare class GeneralDesignEditor extends Component<Props$17, SpreadsheetChildEnv> {
|
|
8259
8274
|
static template: string;
|
|
8260
8275
|
static components: {
|
|
8261
8276
|
RoundColorPicker: typeof RoundColorPicker;
|
|
@@ -8290,13 +8305,13 @@ declare class GeneralDesignEditor extends Component<Props$16, SpreadsheetChildEn
|
|
|
8290
8305
|
updateChartTitleStyle(style: TitleDesign): void;
|
|
8291
8306
|
}
|
|
8292
8307
|
|
|
8293
|
-
interface Props$
|
|
8308
|
+
interface Props$16 {
|
|
8294
8309
|
chartId: UID;
|
|
8295
8310
|
definition: ChartWithDataSetDefinition;
|
|
8296
8311
|
updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8297
8312
|
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8298
8313
|
}
|
|
8299
|
-
declare class ChartLegend extends Component<Props$
|
|
8314
|
+
declare class ChartLegend extends Component<Props$16, SpreadsheetChildEnv> {
|
|
8300
8315
|
static template: string;
|
|
8301
8316
|
static components: {
|
|
8302
8317
|
Section: typeof Section;
|
|
@@ -8310,13 +8325,13 @@ declare class ChartLegend extends Component<Props$15, SpreadsheetChildEnv> {
|
|
|
8310
8325
|
updateLegendPosition(ev: any): void;
|
|
8311
8326
|
}
|
|
8312
8327
|
|
|
8313
|
-
interface Props$
|
|
8328
|
+
interface Props$15 {
|
|
8314
8329
|
chartId: UID;
|
|
8315
8330
|
definition: ChartWithDataSetDefinition;
|
|
8316
8331
|
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8317
8332
|
updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8318
8333
|
}
|
|
8319
|
-
declare class SeriesDesignEditor extends Component<Props$
|
|
8334
|
+
declare class SeriesDesignEditor extends Component<Props$15, SpreadsheetChildEnv> {
|
|
8320
8335
|
static template: string;
|
|
8321
8336
|
static components: {
|
|
8322
8337
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
@@ -8344,13 +8359,13 @@ declare class SeriesDesignEditor extends Component<Props$14, SpreadsheetChildEnv
|
|
|
8344
8359
|
getDataSeriesLabel(): string | undefined;
|
|
8345
8360
|
}
|
|
8346
8361
|
|
|
8347
|
-
interface Props$
|
|
8362
|
+
interface Props$14 {
|
|
8348
8363
|
chartId: UID;
|
|
8349
8364
|
definition: ChartWithDataSetDefinition;
|
|
8350
8365
|
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8351
8366
|
updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8352
8367
|
}
|
|
8353
|
-
declare class SeriesWithAxisDesignEditor extends Component<Props$
|
|
8368
|
+
declare class SeriesWithAxisDesignEditor extends Component<Props$14, SpreadsheetChildEnv> {
|
|
8354
8369
|
static template: string;
|
|
8355
8370
|
static components: {
|
|
8356
8371
|
SeriesDesignEditor: typeof SeriesDesignEditor;
|
|
@@ -8391,14 +8406,14 @@ declare class SeriesWithAxisDesignEditor extends Component<Props$13, Spreadsheet
|
|
|
8391
8406
|
updateTrendLineValue(index: number, config: any): void;
|
|
8392
8407
|
}
|
|
8393
8408
|
|
|
8394
|
-
interface Props$
|
|
8409
|
+
interface Props$13 {
|
|
8395
8410
|
chartId: UID;
|
|
8396
8411
|
definition: ChartWithDataSetDefinition;
|
|
8397
8412
|
updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8398
8413
|
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8399
8414
|
defaultValue?: boolean;
|
|
8400
8415
|
}
|
|
8401
|
-
declare class ChartShowValues extends Component<Props$
|
|
8416
|
+
declare class ChartShowValues extends Component<Props$13, SpreadsheetChildEnv> {
|
|
8402
8417
|
static template: string;
|
|
8403
8418
|
static components: {
|
|
8404
8419
|
Checkbox: typeof Checkbox;
|
|
@@ -8415,13 +8430,13 @@ declare class ChartShowValues extends Component<Props$12, SpreadsheetChildEnv> {
|
|
|
8415
8430
|
};
|
|
8416
8431
|
}
|
|
8417
8432
|
|
|
8418
|
-
interface Props$
|
|
8433
|
+
interface Props$12 {
|
|
8419
8434
|
chartId: UID;
|
|
8420
8435
|
definition: ChartWithDataSetDefinition;
|
|
8421
8436
|
canUpdateChart: (chartId: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8422
8437
|
updateChart: (chartId: UID, definition: GenericDefinition<ChartWithDataSetDefinition>) => DispatchResult;
|
|
8423
8438
|
}
|
|
8424
|
-
declare class ChartWithAxisDesignPanel<P extends Props$
|
|
8439
|
+
declare class ChartWithAxisDesignPanel<P extends Props$12 = Props$12> extends Component<P, SpreadsheetChildEnv> {
|
|
8425
8440
|
static template: string;
|
|
8426
8441
|
static components: {
|
|
8427
8442
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -8441,13 +8456,13 @@ declare class ChartWithAxisDesignPanel<P extends Props$11 = Props$11> extends Co
|
|
|
8441
8456
|
get axesList(): AxisDefinition[];
|
|
8442
8457
|
}
|
|
8443
8458
|
|
|
8444
|
-
interface Props$
|
|
8459
|
+
interface Props$11 {
|
|
8445
8460
|
chartId: UID;
|
|
8446
8461
|
definition: GaugeChartDefinition;
|
|
8447
8462
|
canUpdateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8448
8463
|
updateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
8449
8464
|
}
|
|
8450
|
-
declare class GaugeChartConfigPanel extends Component<Props$
|
|
8465
|
+
declare class GaugeChartConfigPanel extends Component<Props$11, SpreadsheetChildEnv> {
|
|
8451
8466
|
static template: string;
|
|
8452
8467
|
static components: {
|
|
8453
8468
|
ChartErrorSection: typeof ChartErrorSection;
|
|
@@ -8512,13 +8527,13 @@ interface EnrichedToken extends Token {
|
|
|
8512
8527
|
isInHoverContext?: boolean;
|
|
8513
8528
|
}
|
|
8514
8529
|
|
|
8515
|
-
interface Props
|
|
8530
|
+
interface Props$10 {
|
|
8516
8531
|
proposals: AutoCompleteProposal[];
|
|
8517
8532
|
selectedIndex: number | undefined;
|
|
8518
8533
|
onValueSelected: (value: string) => void;
|
|
8519
8534
|
onValueHovered: (index: string) => void;
|
|
8520
8535
|
}
|
|
8521
|
-
declare class TextValueProvider extends Component<Props
|
|
8536
|
+
declare class TextValueProvider extends Component<Props$10> {
|
|
8522
8537
|
static template: string;
|
|
8523
8538
|
static props: {
|
|
8524
8539
|
proposals: ArrayConstructor;
|
|
@@ -8575,11 +8590,11 @@ declare class ContentEditableHelper {
|
|
|
8575
8590
|
getText(): string;
|
|
8576
8591
|
}
|
|
8577
8592
|
|
|
8578
|
-
interface Props
|
|
8593
|
+
interface Props$$ {
|
|
8579
8594
|
functionDescription: FunctionDescription;
|
|
8580
8595
|
argsToFocus: number[];
|
|
8581
8596
|
}
|
|
8582
|
-
declare class FunctionDescriptionProvider extends Component<Props
|
|
8597
|
+
declare class FunctionDescriptionProvider extends Component<Props$$, SpreadsheetChildEnv> {
|
|
8583
8598
|
static template: string;
|
|
8584
8599
|
static props: {
|
|
8585
8600
|
functionDescription: ObjectConstructor;
|
|
@@ -8590,15 +8605,15 @@ declare class FunctionDescriptionProvider extends Component<Props$_, Spreadsheet
|
|
|
8590
8605
|
};
|
|
8591
8606
|
private state;
|
|
8592
8607
|
toggle(): void;
|
|
8593
|
-
getContext(): Props
|
|
8608
|
+
getContext(): Props$$;
|
|
8594
8609
|
get formulaArgSeparator(): string;
|
|
8595
8610
|
}
|
|
8596
8611
|
|
|
8597
|
-
interface Props$
|
|
8612
|
+
interface Props$_ {
|
|
8598
8613
|
anchorRect: Rect;
|
|
8599
8614
|
content: string;
|
|
8600
8615
|
}
|
|
8601
|
-
declare class SpeechBubble extends Component<Props$
|
|
8616
|
+
declare class SpeechBubble extends Component<Props$_, SpreadsheetChildEnv> {
|
|
8602
8617
|
static template: string;
|
|
8603
8618
|
static props: {
|
|
8604
8619
|
content: StringConstructor;
|
|
@@ -9011,7 +9026,7 @@ interface AutoCompleteProviderDefinition {
|
|
|
9011
9026
|
}, tokenAtCursor: EnrichedToken, text: string): void;
|
|
9012
9027
|
}
|
|
9013
9028
|
|
|
9014
|
-
interface Props$
|
|
9029
|
+
interface Props$Z {
|
|
9015
9030
|
onConfirm: (content: string) => void;
|
|
9016
9031
|
composerContent: string;
|
|
9017
9032
|
defaultRangeSheetId: UID;
|
|
@@ -9023,7 +9038,7 @@ interface Props$Y {
|
|
|
9023
9038
|
invalid?: boolean;
|
|
9024
9039
|
getContextualColoredSymbolToken?: (token: Token) => Color;
|
|
9025
9040
|
}
|
|
9026
|
-
declare class StandaloneComposer extends Component<Props$
|
|
9041
|
+
declare class StandaloneComposer extends Component<Props$Z, SpreadsheetChildEnv> {
|
|
9027
9042
|
static template: string;
|
|
9028
9043
|
static props: {
|
|
9029
9044
|
composerContent: {
|
|
@@ -9086,13 +9101,13 @@ interface PanelState {
|
|
|
9086
9101
|
sectionRuleCancelledReasons?: CommandResult[];
|
|
9087
9102
|
sectionRule: SectionRule;
|
|
9088
9103
|
}
|
|
9089
|
-
interface Props$
|
|
9104
|
+
interface Props$Y {
|
|
9090
9105
|
chartId: UID;
|
|
9091
9106
|
definition: GaugeChartDefinition;
|
|
9092
9107
|
canUpdateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
9093
9108
|
updateChart: (chartId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
9094
9109
|
}
|
|
9095
|
-
declare class GaugeChartDesignPanel extends Component<Props$
|
|
9110
|
+
declare class GaugeChartDesignPanel extends Component<Props$Y, SpreadsheetChildEnv> {
|
|
9096
9111
|
static template: string;
|
|
9097
9112
|
static components: {
|
|
9098
9113
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
@@ -9142,13 +9157,13 @@ declare class LineConfigPanel extends GenericChartConfigPanel {
|
|
|
9142
9157
|
onUpdateCumulative(cumulative: boolean): void;
|
|
9143
9158
|
}
|
|
9144
9159
|
|
|
9145
|
-
interface Props$
|
|
9160
|
+
interface Props$X {
|
|
9146
9161
|
chartId: UID;
|
|
9147
9162
|
definition: ScorecardChartDefinition;
|
|
9148
9163
|
canUpdateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
9149
9164
|
updateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
9150
9165
|
}
|
|
9151
|
-
declare class ScorecardChartConfigPanel extends Component<Props$
|
|
9166
|
+
declare class ScorecardChartConfigPanel extends Component<Props$X, SpreadsheetChildEnv> {
|
|
9152
9167
|
static template: string;
|
|
9153
9168
|
static components: {
|
|
9154
9169
|
SelectionInput: typeof SelectionInput;
|
|
@@ -9177,13 +9192,13 @@ declare class ScorecardChartConfigPanel extends Component<Props$W, SpreadsheetCh
|
|
|
9177
9192
|
}
|
|
9178
9193
|
|
|
9179
9194
|
type ColorPickerId = undefined | "backgroundColor" | "baselineColorUp" | "baselineColorDown";
|
|
9180
|
-
interface Props$
|
|
9195
|
+
interface Props$W {
|
|
9181
9196
|
chartId: UID;
|
|
9182
9197
|
definition: ScorecardChartDefinition;
|
|
9183
9198
|
canUpdateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
9184
9199
|
updateChart: (chartId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
9185
9200
|
}
|
|
9186
|
-
declare class ScorecardChartDesignPanel extends Component<Props$
|
|
9201
|
+
declare class ScorecardChartDesignPanel extends Component<Props$W, SpreadsheetChildEnv> {
|
|
9187
9202
|
static template: string;
|
|
9188
9203
|
static components: {
|
|
9189
9204
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -9256,7 +9271,7 @@ interface PanelInfo {
|
|
|
9256
9271
|
isCollapsed?: boolean;
|
|
9257
9272
|
}
|
|
9258
9273
|
declare class SidePanelStore extends SpreadsheetStore {
|
|
9259
|
-
mutators: readonly ["open", "toggle", "close", "changePanelSize", "resetPanelSize", "togglePinPanel", "closeMainPanel", "changeSpreadsheetWidth", "toggleCollapsePanel"];
|
|
9274
|
+
mutators: readonly ["open", "replace", "toggle", "close", "changePanelSize", "resetPanelSize", "togglePinPanel", "closeMainPanel", "changeSpreadsheetWidth", "toggleCollapsePanel"];
|
|
9260
9275
|
mainPanel: (PanelInfo & {
|
|
9261
9276
|
isCollapsed?: boolean;
|
|
9262
9277
|
isPinned?: boolean;
|
|
@@ -9278,6 +9293,7 @@ declare class SidePanelStore extends SpreadsheetStore {
|
|
|
9278
9293
|
private getPanelProps;
|
|
9279
9294
|
private getPanelKey;
|
|
9280
9295
|
open(componentTag: string, initialPanelProps?: SidePanelComponentProps): void;
|
|
9296
|
+
replace(componentTag: string, currentPanelKey: string, initialPanelProps?: SidePanelComponentProps): void;
|
|
9281
9297
|
private _openPanel;
|
|
9282
9298
|
toggle(componentTag: string, panelProps: SidePanelComponentProps): void;
|
|
9283
9299
|
close(): void;
|
|
@@ -9361,11 +9377,18 @@ declare class ComposerFocusStore extends SpreadsheetStore {
|
|
|
9361
9377
|
private setComposerContent;
|
|
9362
9378
|
}
|
|
9363
9379
|
|
|
9364
|
-
|
|
9380
|
+
declare class ChartAnimationStore extends SpreadsheetStore {
|
|
9381
|
+
mutators: readonly ["disableAnimationForChart", "enableAnimationForChart"];
|
|
9382
|
+
animationPlayed: {};
|
|
9383
|
+
disableAnimationForChart(chartId: UID, chartType: ChartType): string;
|
|
9384
|
+
enableAnimationForChart(chartId: UID): string;
|
|
9385
|
+
}
|
|
9386
|
+
|
|
9387
|
+
interface Props$V {
|
|
9365
9388
|
chartId: UID;
|
|
9366
9389
|
isFullScreen?: boolean;
|
|
9367
9390
|
}
|
|
9368
|
-
declare class ChartJsComponent extends Component<Props$
|
|
9391
|
+
declare class ChartJsComponent extends Component<Props$V, SpreadsheetChildEnv> {
|
|
9369
9392
|
static template: string;
|
|
9370
9393
|
static props: {
|
|
9371
9394
|
chartId: StringConstructor;
|
|
@@ -9374,26 +9397,36 @@ declare class ChartJsComponent extends Component<Props$U, SpreadsheetChildEnv> {
|
|
|
9374
9397
|
optional: boolean;
|
|
9375
9398
|
};
|
|
9376
9399
|
};
|
|
9377
|
-
|
|
9378
|
-
|
|
9379
|
-
|
|
9380
|
-
|
|
9400
|
+
protected canvas: {
|
|
9401
|
+
el: HTMLElement | null;
|
|
9402
|
+
};
|
|
9403
|
+
protected chart?: Chart;
|
|
9404
|
+
protected currentRuntime: ChartJSRuntime;
|
|
9405
|
+
protected animationStore: Store<ChartAnimationStore> | undefined;
|
|
9381
9406
|
private currentDevicePixelRatio;
|
|
9382
9407
|
get background(): string;
|
|
9383
9408
|
get canvasStyle(): string;
|
|
9384
9409
|
get chartRuntime(): ChartJSRuntime;
|
|
9385
9410
|
setup(): void;
|
|
9386
|
-
|
|
9387
|
-
|
|
9411
|
+
protected unmount(): void;
|
|
9412
|
+
protected get shouldAnimate(): boolean;
|
|
9413
|
+
protected createChart(chartRuntime: ChartJSRuntime): void;
|
|
9414
|
+
protected updateChartJs(chartRuntime: ChartJSRuntime): void;
|
|
9388
9415
|
private hasChartDataChanged;
|
|
9389
|
-
|
|
9416
|
+
protected enableAnimationInChartData(chartData: ChartConfiguration$1<any>): {
|
|
9417
|
+
options: any;
|
|
9418
|
+
type: any;
|
|
9419
|
+
data: chart_js_auto.ChartData<any, any[], unknown>;
|
|
9420
|
+
plugins?: chart_js_auto.Plugin<any, chart_js_dist_types_basic.AnyObject>[] | undefined;
|
|
9421
|
+
platform?: typeof chart_js_auto.BasePlatform;
|
|
9422
|
+
};
|
|
9390
9423
|
get animationFigureId(): string;
|
|
9391
9424
|
}
|
|
9392
9425
|
|
|
9393
|
-
interface Props$
|
|
9426
|
+
interface Props$U {
|
|
9394
9427
|
chartId: UID;
|
|
9395
9428
|
}
|
|
9396
|
-
declare class ScorecardChart$1 extends Component<Props$
|
|
9429
|
+
declare class ScorecardChart$1 extends Component<Props$U, SpreadsheetChildEnv> {
|
|
9397
9430
|
static template: string;
|
|
9398
9431
|
static props: {
|
|
9399
9432
|
chartId: StringConstructor;
|
|
@@ -9469,7 +9502,7 @@ declare class Menu extends Component<MenuProps, SpreadsheetChildEnv> {
|
|
|
9469
9502
|
onClickMenu(menu: Action, ev: CustomEvent): void;
|
|
9470
9503
|
}
|
|
9471
9504
|
|
|
9472
|
-
interface Props$
|
|
9505
|
+
interface Props$T {
|
|
9473
9506
|
anchorRect: Rect;
|
|
9474
9507
|
popoverPositioning: PopoverPropsPosition;
|
|
9475
9508
|
menuItems: Action[];
|
|
@@ -9489,7 +9522,7 @@ interface MenuState {
|
|
|
9489
9522
|
menuItems: Action[];
|
|
9490
9523
|
isHoveringChild?: boolean;
|
|
9491
9524
|
}
|
|
9492
|
-
declare class MenuPopover extends Component<Props$
|
|
9525
|
+
declare class MenuPopover extends Component<Props$T, SpreadsheetChildEnv> {
|
|
9493
9526
|
static template: string;
|
|
9494
9527
|
static props: {
|
|
9495
9528
|
anchorRect: ObjectConstructor;
|
|
@@ -9569,7 +9602,7 @@ declare class MenuPopover extends Component<Props$S, SpreadsheetChildEnv> {
|
|
|
9569
9602
|
}
|
|
9570
9603
|
|
|
9571
9604
|
type ResizeAnchor = "top left" | "top" | "top right" | "right" | "bottom right" | "bottom" | "bottom left" | "left";
|
|
9572
|
-
interface Props$
|
|
9605
|
+
interface Props$S {
|
|
9573
9606
|
figureUI: FigureUI;
|
|
9574
9607
|
style: string;
|
|
9575
9608
|
class: string;
|
|
@@ -9577,7 +9610,7 @@ interface Props$R {
|
|
|
9577
9610
|
onMouseDown: (ev: MouseEvent) => void;
|
|
9578
9611
|
onClickAnchor(dirX: ResizeDirection, dirY: ResizeDirection, ev: MouseEvent): void;
|
|
9579
9612
|
}
|
|
9580
|
-
declare class FigureComponent extends Component<Props$
|
|
9613
|
+
declare class FigureComponent extends Component<Props$S, SpreadsheetChildEnv> {
|
|
9581
9614
|
static template: string;
|
|
9582
9615
|
static props: {
|
|
9583
9616
|
figureUI: ObjectConstructor;
|
|
@@ -9633,7 +9666,7 @@ declare class FigureComponent extends Component<Props$R, SpreadsheetChildEnv> {
|
|
|
9633
9666
|
editWrapperStyle(properties: CSSProperties): void;
|
|
9634
9667
|
}
|
|
9635
9668
|
|
|
9636
|
-
interface Props$
|
|
9669
|
+
interface Props$R {
|
|
9637
9670
|
chartId: UID;
|
|
9638
9671
|
}
|
|
9639
9672
|
interface MenuItem {
|
|
@@ -9643,7 +9676,7 @@ interface MenuItem {
|
|
|
9643
9676
|
onClick: () => void;
|
|
9644
9677
|
isSelected?: boolean;
|
|
9645
9678
|
}
|
|
9646
|
-
declare class ChartDashboardMenu extends Component<Props$
|
|
9679
|
+
declare class ChartDashboardMenu extends Component<Props$R, SpreadsheetChildEnv> {
|
|
9647
9680
|
static template: string;
|
|
9648
9681
|
static components: {
|
|
9649
9682
|
MenuPopover: typeof MenuPopover;
|
|
@@ -9661,12 +9694,12 @@ declare class ChartDashboardMenu extends Component<Props$Q, SpreadsheetChildEnv>
|
|
|
9661
9694
|
get fullScreenMenuItem(): MenuItem | undefined;
|
|
9662
9695
|
}
|
|
9663
9696
|
|
|
9664
|
-
interface Props$
|
|
9697
|
+
interface Props$Q {
|
|
9665
9698
|
figureUI: FigureUI;
|
|
9666
9699
|
onFigureDeleted: () => void;
|
|
9667
9700
|
editFigureStyle?: (properties: CSSProperties) => void;
|
|
9668
9701
|
}
|
|
9669
|
-
declare class ChartFigure extends Component<Props$
|
|
9702
|
+
declare class ChartFigure extends Component<Props$Q, SpreadsheetChildEnv> {
|
|
9670
9703
|
static template: string;
|
|
9671
9704
|
static props: {
|
|
9672
9705
|
figureUI: ObjectConstructor;
|
|
@@ -9696,7 +9729,7 @@ declare class DelayedHoveredCellStore extends SpreadsheetStore {
|
|
|
9696
9729
|
|
|
9697
9730
|
type DnDDirection = "all" | "vertical" | "horizontal";
|
|
9698
9731
|
|
|
9699
|
-
interface Props$
|
|
9732
|
+
interface Props$P {
|
|
9700
9733
|
isVisible: boolean;
|
|
9701
9734
|
position: Position;
|
|
9702
9735
|
}
|
|
@@ -9708,7 +9741,7 @@ interface State$4 {
|
|
|
9708
9741
|
position: Position;
|
|
9709
9742
|
handler: boolean;
|
|
9710
9743
|
}
|
|
9711
|
-
declare class Autofill extends Component<Props$
|
|
9744
|
+
declare class Autofill extends Component<Props$P, SpreadsheetChildEnv> {
|
|
9712
9745
|
static template: string;
|
|
9713
9746
|
static props: {
|
|
9714
9747
|
position: ObjectConstructor;
|
|
@@ -9748,7 +9781,7 @@ declare class ClientTag extends Component<ClientTagProps, SpreadsheetChildEnv> {
|
|
|
9748
9781
|
get tagStyle(): string;
|
|
9749
9782
|
}
|
|
9750
9783
|
|
|
9751
|
-
interface Props$
|
|
9784
|
+
interface Props$O {
|
|
9752
9785
|
gridDims: DOMDimension;
|
|
9753
9786
|
onInputContextMenu: (event: MouseEvent) => void;
|
|
9754
9787
|
}
|
|
@@ -9756,7 +9789,7 @@ interface Props$N {
|
|
|
9756
9789
|
* This component is a composer which positions itself on the grid at the anchor cell.
|
|
9757
9790
|
* It also applies the style of the cell to the composer input.
|
|
9758
9791
|
*/
|
|
9759
|
-
declare class GridComposer extends Component<Props$
|
|
9792
|
+
declare class GridComposer extends Component<Props$O, SpreadsheetChildEnv> {
|
|
9760
9793
|
static template: string;
|
|
9761
9794
|
static props: {
|
|
9762
9795
|
gridDims: ObjectConstructor;
|
|
@@ -9800,7 +9833,7 @@ interface SnapLine<T extends HFigureAxisType | VFigureAxisType> {
|
|
|
9800
9833
|
}
|
|
9801
9834
|
|
|
9802
9835
|
type ContainerType = "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "dnd";
|
|
9803
|
-
interface Props$
|
|
9836
|
+
interface Props$N {
|
|
9804
9837
|
onFigureDeleted: () => void;
|
|
9805
9838
|
}
|
|
9806
9839
|
interface Container {
|
|
@@ -9881,7 +9914,7 @@ interface DndState {
|
|
|
9881
9914
|
* that occurred during the drag & drop, and to position the figure on the correct pane.
|
|
9882
9915
|
*
|
|
9883
9916
|
*/
|
|
9884
|
-
declare class FiguresContainer extends Component<Props$
|
|
9917
|
+
declare class FiguresContainer extends Component<Props$N, SpreadsheetChildEnv> {
|
|
9885
9918
|
static template: string;
|
|
9886
9919
|
static props: {
|
|
9887
9920
|
onFigureDeleted: FunctionConstructor;
|
|
@@ -9919,10 +9952,10 @@ declare class FiguresContainer extends Component<Props$M, SpreadsheetChildEnv> {
|
|
|
9919
9952
|
private getCarouselOverlappingChart;
|
|
9920
9953
|
}
|
|
9921
9954
|
|
|
9922
|
-
interface Props$
|
|
9955
|
+
interface Props$M {
|
|
9923
9956
|
focusGrid: () => void;
|
|
9924
9957
|
}
|
|
9925
|
-
declare class GridAddRowsFooter extends Component<Props$
|
|
9958
|
+
declare class GridAddRowsFooter extends Component<Props$M, SpreadsheetChildEnv> {
|
|
9926
9959
|
static template: string;
|
|
9927
9960
|
static props: {
|
|
9928
9961
|
focusGrid: FunctionConstructor;
|
|
@@ -9946,7 +9979,7 @@ declare class GridAddRowsFooter extends Component<Props$L, SpreadsheetChildEnv>
|
|
|
9946
9979
|
private onExternalClick;
|
|
9947
9980
|
}
|
|
9948
9981
|
|
|
9949
|
-
interface Props$
|
|
9982
|
+
interface Props$L {
|
|
9950
9983
|
onCellDoubleClicked: (col: HeaderIndex, row: HeaderIndex) => void;
|
|
9951
9984
|
onCellClicked: (col: HeaderIndex, row: HeaderIndex, modifiers: GridClickModifiers, ev: PointerEvent | MouseEvent) => void;
|
|
9952
9985
|
onCellRightClicked: (col: HeaderIndex, row: HeaderIndex, coordinates: DOMCoordinates) => void;
|
|
@@ -9959,7 +9992,7 @@ interface Props$K {
|
|
|
9959
9992
|
height: number;
|
|
9960
9993
|
};
|
|
9961
9994
|
}
|
|
9962
|
-
declare class GridOverlay extends Component<Props$
|
|
9995
|
+
declare class GridOverlay extends Component<Props$L, SpreadsheetChildEnv> {
|
|
9963
9996
|
static template: string;
|
|
9964
9997
|
static props: {
|
|
9965
9998
|
onCellDoubleClicked: {
|
|
@@ -10019,12 +10052,12 @@ declare class GridOverlay extends Component<Props$K, SpreadsheetChildEnv> {
|
|
|
10019
10052
|
private getInteractiveIconAtEvent;
|
|
10020
10053
|
}
|
|
10021
10054
|
|
|
10022
|
-
interface Props$
|
|
10055
|
+
interface Props$K {
|
|
10023
10056
|
gridRect: Rect;
|
|
10024
10057
|
onClosePopover: () => void;
|
|
10025
10058
|
onMouseWheel: (ev: WheelEvent) => void;
|
|
10026
10059
|
}
|
|
10027
|
-
declare class GridPopover extends Component<Props$
|
|
10060
|
+
declare class GridPopover extends Component<Props$K, SpreadsheetChildEnv> {
|
|
10028
10061
|
static template: string;
|
|
10029
10062
|
static props: {
|
|
10030
10063
|
onClosePopover: FunctionConstructor;
|
|
@@ -10040,7 +10073,7 @@ declare class GridPopover extends Component<Props$J, SpreadsheetChildEnv> {
|
|
|
10040
10073
|
get cellPopover(): PositionedCellPopoverComponent | ClosedCellPopover;
|
|
10041
10074
|
}
|
|
10042
10075
|
|
|
10043
|
-
interface Props$
|
|
10076
|
+
interface Props$J {
|
|
10044
10077
|
headersGroups: ConsecutiveIndexes[];
|
|
10045
10078
|
offset: number;
|
|
10046
10079
|
headerRange: {
|
|
@@ -10048,7 +10081,7 @@ interface Props$I {
|
|
|
10048
10081
|
end: HeaderIndex;
|
|
10049
10082
|
};
|
|
10050
10083
|
}
|
|
10051
|
-
declare class UnhideRowHeaders extends Component<Props$
|
|
10084
|
+
declare class UnhideRowHeaders extends Component<Props$J, SpreadsheetChildEnv> {
|
|
10052
10085
|
static template: string;
|
|
10053
10086
|
static props: {
|
|
10054
10087
|
headersGroups: ArrayConstructor;
|
|
@@ -10067,7 +10100,7 @@ declare class UnhideRowHeaders extends Component<Props$I, SpreadsheetChildEnv> {
|
|
|
10067
10100
|
unhide(hiddenElements: HeaderIndex[]): void;
|
|
10068
10101
|
isVisible(header: HeaderIndex): boolean;
|
|
10069
10102
|
}
|
|
10070
|
-
declare class UnhideColumnHeaders extends Component<Props$
|
|
10103
|
+
declare class UnhideColumnHeaders extends Component<Props$J, SpreadsheetChildEnv> {
|
|
10071
10104
|
static template: string;
|
|
10072
10105
|
static props: {
|
|
10073
10106
|
headersGroups: ArrayConstructor;
|
|
@@ -10260,13 +10293,13 @@ declare class HeadersOverlay extends Component<any, SpreadsheetChildEnv> {
|
|
|
10260
10293
|
}
|
|
10261
10294
|
|
|
10262
10295
|
type Orientation$1 = "n" | "s" | "w" | "e";
|
|
10263
|
-
interface Props$
|
|
10296
|
+
interface Props$I {
|
|
10264
10297
|
zone: Zone;
|
|
10265
10298
|
orientation: Orientation$1;
|
|
10266
10299
|
isMoving: boolean;
|
|
10267
10300
|
onMoveHighlight: (ev: PointerEvent) => void;
|
|
10268
10301
|
}
|
|
10269
|
-
declare class Border extends Component<Props$
|
|
10302
|
+
declare class Border extends Component<Props$I, SpreadsheetChildEnv> {
|
|
10270
10303
|
static template: string;
|
|
10271
10304
|
static props: {
|
|
10272
10305
|
zone: ObjectConstructor;
|
|
@@ -10279,14 +10312,14 @@ declare class Border extends Component<Props$H, SpreadsheetChildEnv> {
|
|
|
10279
10312
|
}
|
|
10280
10313
|
|
|
10281
10314
|
type Orientation = "nw" | "ne" | "sw" | "se" | "n" | "s" | "e" | "w";
|
|
10282
|
-
interface Props$
|
|
10315
|
+
interface Props$H {
|
|
10283
10316
|
zone: Zone;
|
|
10284
10317
|
color: Color;
|
|
10285
10318
|
orientation: Orientation;
|
|
10286
10319
|
isResizing: boolean;
|
|
10287
10320
|
onResizeHighlight: (ev: PointerEvent, dirX: ResizeDirection, dirY: ResizeDirection) => void;
|
|
10288
10321
|
}
|
|
10289
|
-
declare class Corner extends Component<Props$
|
|
10322
|
+
declare class Corner extends Component<Props$H, SpreadsheetChildEnv> {
|
|
10290
10323
|
static template: string;
|
|
10291
10324
|
static props: {
|
|
10292
10325
|
zone: ObjectConstructor;
|
|
@@ -10335,7 +10368,7 @@ declare class Highlight extends Component<HighlightProps, SpreadsheetChildEnv> {
|
|
|
10335
10368
|
|
|
10336
10369
|
type ScrollDirection = "horizontal" | "vertical";
|
|
10337
10370
|
|
|
10338
|
-
interface Props$
|
|
10371
|
+
interface Props$G {
|
|
10339
10372
|
width: Pixel;
|
|
10340
10373
|
height: Pixel;
|
|
10341
10374
|
direction: ScrollDirection;
|
|
@@ -10343,7 +10376,7 @@ interface Props$F {
|
|
|
10343
10376
|
offset: Pixel;
|
|
10344
10377
|
onScroll: (offset: Pixel) => void;
|
|
10345
10378
|
}
|
|
10346
|
-
declare class ScrollBar extends Component<Props$
|
|
10379
|
+
declare class ScrollBar extends Component<Props$G> {
|
|
10347
10380
|
static props: {
|
|
10348
10381
|
width: {
|
|
10349
10382
|
type: NumberConstructor;
|
|
@@ -10371,10 +10404,10 @@ declare class ScrollBar extends Component<Props$F> {
|
|
|
10371
10404
|
onScroll(ev: any): void;
|
|
10372
10405
|
}
|
|
10373
10406
|
|
|
10374
|
-
interface Props$
|
|
10407
|
+
interface Props$F {
|
|
10375
10408
|
leftOffset: number;
|
|
10376
10409
|
}
|
|
10377
|
-
declare class HorizontalScrollBar extends Component<Props$
|
|
10410
|
+
declare class HorizontalScrollBar extends Component<Props$F, SpreadsheetChildEnv> {
|
|
10378
10411
|
static props: {
|
|
10379
10412
|
leftOffset: {
|
|
10380
10413
|
type: NumberConstructor;
|
|
@@ -10400,10 +10433,10 @@ declare class HorizontalScrollBar extends Component<Props$E, SpreadsheetChildEnv
|
|
|
10400
10433
|
onScroll(offset: any): void;
|
|
10401
10434
|
}
|
|
10402
10435
|
|
|
10403
|
-
interface Props$
|
|
10436
|
+
interface Props$E {
|
|
10404
10437
|
topOffset: number;
|
|
10405
10438
|
}
|
|
10406
|
-
declare class VerticalScrollBar extends Component<Props$
|
|
10439
|
+
declare class VerticalScrollBar extends Component<Props$E, SpreadsheetChildEnv> {
|
|
10407
10440
|
static props: {
|
|
10408
10441
|
topOffset: {
|
|
10409
10442
|
type: NumberConstructor;
|
|
@@ -10438,13 +10471,13 @@ declare class Selection extends Component<{}, SpreadsheetChildEnv> {
|
|
|
10438
10471
|
get highlightProps(): HighlightProps;
|
|
10439
10472
|
}
|
|
10440
10473
|
|
|
10441
|
-
interface Props$
|
|
10474
|
+
interface Props$D {
|
|
10442
10475
|
table: Table;
|
|
10443
10476
|
}
|
|
10444
10477
|
interface State$3 {
|
|
10445
10478
|
highlightZone: Zone | undefined;
|
|
10446
10479
|
}
|
|
10447
|
-
declare class TableResizer extends Component<Props$
|
|
10480
|
+
declare class TableResizer extends Component<Props$D, SpreadsheetChildEnv> {
|
|
10448
10481
|
static template: string;
|
|
10449
10482
|
static props: {
|
|
10450
10483
|
table: ObjectConstructor;
|
|
@@ -10473,11 +10506,11 @@ declare class TableResizer extends Component<Props$C, SpreadsheetChildEnv> {
|
|
|
10473
10506
|
* - a vertical resizer (same, for rows)
|
|
10474
10507
|
*/
|
|
10475
10508
|
type ContextMenuType = "ROW" | "COL" | "CELL" | "FILTER" | "GROUP_HEADERS" | "UNGROUP_HEADERS";
|
|
10476
|
-
interface Props$
|
|
10509
|
+
interface Props$C {
|
|
10477
10510
|
exposeFocus: (focus: () => void) => void;
|
|
10478
10511
|
getGridSize: () => DOMDimension;
|
|
10479
10512
|
}
|
|
10480
|
-
declare class Grid extends Component<Props$
|
|
10513
|
+
declare class Grid extends Component<Props$C, SpreadsheetChildEnv> {
|
|
10481
10514
|
static template: string;
|
|
10482
10515
|
static props: {
|
|
10483
10516
|
exposeFocus: FunctionConstructor;
|
|
@@ -10593,7 +10626,7 @@ declare class MainChartPanelStore extends SpreadsheetStore {
|
|
|
10593
10626
|
private getChartDefinitionFromContextCreation;
|
|
10594
10627
|
}
|
|
10595
10628
|
|
|
10596
|
-
interface Props$
|
|
10629
|
+
interface Props$B {
|
|
10597
10630
|
chartId: UID;
|
|
10598
10631
|
chartPanelStore: MainChartPanelStore;
|
|
10599
10632
|
}
|
|
@@ -10601,7 +10634,7 @@ interface ChartTypePickerState {
|
|
|
10601
10634
|
popoverProps: PopoverProps | undefined;
|
|
10602
10635
|
popoverStyle: string;
|
|
10603
10636
|
}
|
|
10604
|
-
declare class ChartTypePicker extends Component<Props$
|
|
10637
|
+
declare class ChartTypePicker extends Component<Props$B, SpreadsheetChildEnv> {
|
|
10605
10638
|
static template: string;
|
|
10606
10639
|
static components: {
|
|
10607
10640
|
Section: typeof Section;
|
|
@@ -10637,11 +10670,11 @@ declare class ChartTypePicker extends Component<Props$A, SpreadsheetChildEnv> {
|
|
|
10637
10670
|
private closePopover;
|
|
10638
10671
|
}
|
|
10639
10672
|
|
|
10640
|
-
interface Props$
|
|
10673
|
+
interface Props$A {
|
|
10641
10674
|
onCloseSidePanel: () => void;
|
|
10642
10675
|
chartId: UID;
|
|
10643
10676
|
}
|
|
10644
|
-
declare class ChartPanel extends Component<Props$
|
|
10677
|
+
declare class ChartPanel extends Component<Props$A, SpreadsheetChildEnv> {
|
|
10645
10678
|
static template: string;
|
|
10646
10679
|
static components: {
|
|
10647
10680
|
Section: typeof Section;
|
|
@@ -10664,11 +10697,11 @@ declare class ChartPanel extends Component<Props$z, SpreadsheetChildEnv> {
|
|
|
10664
10697
|
private getChartDefinition;
|
|
10665
10698
|
}
|
|
10666
10699
|
|
|
10667
|
-
interface Props$
|
|
10700
|
+
interface Props$z {
|
|
10668
10701
|
onValueChange: (value: number) => void;
|
|
10669
10702
|
value: number;
|
|
10670
10703
|
}
|
|
10671
|
-
declare class PieHoleSize extends Component<Props$
|
|
10704
|
+
declare class PieHoleSize extends Component<Props$z, SpreadsheetChildEnv> {
|
|
10672
10705
|
static template: string;
|
|
10673
10706
|
static components: {
|
|
10674
10707
|
Section: typeof Section;
|
|
@@ -10681,13 +10714,13 @@ declare class PieHoleSize extends Component<Props$y, SpreadsheetChildEnv> {
|
|
|
10681
10714
|
onChange(value: string): void;
|
|
10682
10715
|
}
|
|
10683
10716
|
|
|
10684
|
-
interface Props$
|
|
10717
|
+
interface Props$y {
|
|
10685
10718
|
chartId: UID;
|
|
10686
10719
|
definition: PieChartDefinition;
|
|
10687
10720
|
canUpdateChart: (chartId: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
|
|
10688
10721
|
updateChart: (chartId: UID, definition: GenericDefinition<PieChartDefinition>) => DispatchResult;
|
|
10689
10722
|
}
|
|
10690
|
-
declare class PieChartDesignPanel extends Component<Props$
|
|
10723
|
+
declare class PieChartDesignPanel extends Component<Props$y, SpreadsheetChildEnv> {
|
|
10691
10724
|
static template: string;
|
|
10692
10725
|
static components: {
|
|
10693
10726
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -10709,10 +10742,10 @@ declare class PieChartDesignPanel extends Component<Props$x, SpreadsheetChildEnv
|
|
|
10709
10742
|
get defaultHoleSize(): number;
|
|
10710
10743
|
}
|
|
10711
10744
|
|
|
10712
|
-
interface Props$
|
|
10745
|
+
interface Props$x {
|
|
10713
10746
|
items: ActionSpec[];
|
|
10714
10747
|
}
|
|
10715
|
-
declare class CogWheelMenu extends Component<Props$
|
|
10748
|
+
declare class CogWheelMenu extends Component<Props$x, SpreadsheetChildEnv> {
|
|
10716
10749
|
static template: string;
|
|
10717
10750
|
static components: {
|
|
10718
10751
|
MenuPopover: typeof MenuPopover;
|
|
@@ -10795,14 +10828,14 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
|
|
|
10795
10828
|
get highlights(): Highlight$1[];
|
|
10796
10829
|
}
|
|
10797
10830
|
|
|
10798
|
-
interface Props$
|
|
10831
|
+
interface Props$w {
|
|
10799
10832
|
deferUpdate: boolean;
|
|
10800
10833
|
isDirty: boolean;
|
|
10801
10834
|
toggleDeferUpdate: (value: boolean) => void;
|
|
10802
10835
|
discard: () => void;
|
|
10803
10836
|
apply: () => void;
|
|
10804
10837
|
}
|
|
10805
|
-
declare class PivotDeferUpdate extends Component<Props$
|
|
10838
|
+
declare class PivotDeferUpdate extends Component<Props$w, SpreadsheetChildEnv> {
|
|
10806
10839
|
static template: string;
|
|
10807
10840
|
static props: {
|
|
10808
10841
|
deferUpdate: BooleanConstructor;
|
|
@@ -10819,11 +10852,11 @@ declare class PivotDeferUpdate extends Component<Props$v, SpreadsheetChildEnv> {
|
|
|
10819
10852
|
get deferUpdatesTooltip(): string;
|
|
10820
10853
|
}
|
|
10821
10854
|
|
|
10822
|
-
interface Props$
|
|
10855
|
+
interface Props$v {
|
|
10823
10856
|
onFieldPicked: (field: string) => void;
|
|
10824
10857
|
fields: PivotField[];
|
|
10825
10858
|
}
|
|
10826
|
-
declare class AddDimensionButton extends Component<Props$
|
|
10859
|
+
declare class AddDimensionButton extends Component<Props$v, SpreadsheetChildEnv> {
|
|
10827
10860
|
static template: string;
|
|
10828
10861
|
static components: {
|
|
10829
10862
|
Popover: typeof Popover;
|
|
@@ -10859,7 +10892,7 @@ declare class AddDimensionButton extends Component<Props$u, SpreadsheetChildEnv>
|
|
|
10859
10892
|
onKeyDown(ev: KeyboardEvent): void;
|
|
10860
10893
|
}
|
|
10861
10894
|
|
|
10862
|
-
interface Props$
|
|
10895
|
+
interface Props$u {
|
|
10863
10896
|
value: string;
|
|
10864
10897
|
onChange: (value: string) => void;
|
|
10865
10898
|
class?: string;
|
|
@@ -10867,7 +10900,7 @@ interface Props$t {
|
|
|
10867
10900
|
placeholder?: string;
|
|
10868
10901
|
autofocus?: boolean;
|
|
10869
10902
|
}
|
|
10870
|
-
declare class TextInput extends Component<Props$
|
|
10903
|
+
declare class TextInput extends Component<Props$u, SpreadsheetChildEnv> {
|
|
10871
10904
|
static template: string;
|
|
10872
10905
|
static props: {
|
|
10873
10906
|
value: StringConstructor;
|
|
@@ -10897,13 +10930,13 @@ declare class TextInput extends Component<Props$t, SpreadsheetChildEnv> {
|
|
|
10897
10930
|
onMouseUp(ev: MouseEvent): void;
|
|
10898
10931
|
}
|
|
10899
10932
|
|
|
10900
|
-
interface Props$
|
|
10933
|
+
interface Props$t {
|
|
10901
10934
|
dimension: PivotCoreDimension | PivotCoreMeasure;
|
|
10902
10935
|
onRemoved: (dimension: PivotCoreDimension | PivotCoreMeasure) => void;
|
|
10903
10936
|
onNameUpdated?: (dimension: PivotCoreDimension | PivotCoreMeasure, name?: string) => void;
|
|
10904
10937
|
type: "row" | "col" | "measure";
|
|
10905
10938
|
}
|
|
10906
|
-
declare class PivotDimension extends Component<Props$
|
|
10939
|
+
declare class PivotDimension extends Component<Props$t, SpreadsheetChildEnv> {
|
|
10907
10940
|
static template: string;
|
|
10908
10941
|
static props: {
|
|
10909
10942
|
dimension: ObjectConstructor;
|
|
@@ -10927,13 +10960,13 @@ declare class PivotDimension extends Component<Props$s, SpreadsheetChildEnv> {
|
|
|
10927
10960
|
updateName(name: string): void;
|
|
10928
10961
|
}
|
|
10929
10962
|
|
|
10930
|
-
interface Props$
|
|
10963
|
+
interface Props$s {
|
|
10931
10964
|
dimension: PivotDimension$1;
|
|
10932
10965
|
onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
|
|
10933
10966
|
availableGranularities: Set<string>;
|
|
10934
10967
|
allGranularities: string[];
|
|
10935
10968
|
}
|
|
10936
|
-
declare class PivotDimensionGranularity extends Component<Props$
|
|
10969
|
+
declare class PivotDimensionGranularity extends Component<Props$s, SpreadsheetChildEnv> {
|
|
10937
10970
|
static template: string;
|
|
10938
10971
|
static props: {
|
|
10939
10972
|
dimension: ObjectConstructor;
|
|
@@ -10958,11 +10991,11 @@ declare class PivotDimensionGranularity extends Component<Props$r, SpreadsheetCh
|
|
|
10958
10991
|
};
|
|
10959
10992
|
}
|
|
10960
10993
|
|
|
10961
|
-
interface Props$
|
|
10994
|
+
interface Props$r {
|
|
10962
10995
|
dimension: PivotDimension$1;
|
|
10963
10996
|
onUpdated: (dimension: PivotDimension$1, ev: InputEvent) => void;
|
|
10964
10997
|
}
|
|
10965
|
-
declare class PivotDimensionOrder extends Component<Props$
|
|
10998
|
+
declare class PivotDimensionOrder extends Component<Props$r, SpreadsheetChildEnv> {
|
|
10966
10999
|
static template: string;
|
|
10967
11000
|
static props: {
|
|
10968
11001
|
dimension: ObjectConstructor;
|
|
@@ -10999,12 +11032,12 @@ declare function toNormalizedPivotValue(dimension: Pick<PivotDimension$1, "type"
|
|
|
10999
11032
|
declare function toFunctionPivotValue(value: CellValue, dimension: Pick<PivotDimension$1, "type" | "granularity">): string;
|
|
11000
11033
|
declare function createCustomFields(definition: PivotCoreDefinition, fields: PivotFields): PivotFields;
|
|
11001
11034
|
|
|
11002
|
-
interface Props$
|
|
11035
|
+
interface Props$q {
|
|
11003
11036
|
pivotId: UID;
|
|
11004
11037
|
customField: PivotCustomGroupedField;
|
|
11005
11038
|
onCustomFieldUpdated: (definition: Partial<PivotCoreDefinition>) => void;
|
|
11006
11039
|
}
|
|
11007
|
-
declare class PivotCustomGroupsCollapsible extends Component<Props$
|
|
11040
|
+
declare class PivotCustomGroupsCollapsible extends Component<Props$q, SpreadsheetChildEnv> {
|
|
11008
11041
|
static template: string;
|
|
11009
11042
|
static props: {
|
|
11010
11043
|
pivotId: StringConstructor;
|
|
@@ -11024,7 +11057,7 @@ declare class PivotCustomGroupsCollapsible extends Component<Props$p, Spreadshee
|
|
|
11024
11057
|
private updateCustomField;
|
|
11025
11058
|
}
|
|
11026
11059
|
|
|
11027
|
-
interface Props$
|
|
11060
|
+
interface Props$p {
|
|
11028
11061
|
pivotId: string;
|
|
11029
11062
|
definition: PivotRuntimeDefinition;
|
|
11030
11063
|
measure: PivotMeasure;
|
|
@@ -11032,7 +11065,7 @@ interface Props$o {
|
|
|
11032
11065
|
onRemoved: () => void;
|
|
11033
11066
|
generateMeasureId: (fieldName: string, aggregator?: string) => string;
|
|
11034
11067
|
}
|
|
11035
|
-
declare class PivotMeasureEditor extends Component<Props$
|
|
11068
|
+
declare class PivotMeasureEditor extends Component<Props$p> {
|
|
11036
11069
|
static template: string;
|
|
11037
11070
|
static components: {
|
|
11038
11071
|
PivotDimension: typeof PivotDimension;
|
|
@@ -11057,11 +11090,11 @@ declare class PivotMeasureEditor extends Component<Props$o> {
|
|
|
11057
11090
|
get isCalculatedMeasureInvalid(): boolean;
|
|
11058
11091
|
}
|
|
11059
11092
|
|
|
11060
|
-
interface Props$
|
|
11093
|
+
interface Props$o {
|
|
11061
11094
|
definition: PivotRuntimeDefinition;
|
|
11062
11095
|
pivotId: UID;
|
|
11063
11096
|
}
|
|
11064
|
-
declare class PivotSortSection extends Component<Props$
|
|
11097
|
+
declare class PivotSortSection extends Component<Props$o, SpreadsheetChildEnv> {
|
|
11065
11098
|
static template: string;
|
|
11066
11099
|
static components: {
|
|
11067
11100
|
Section: typeof Section;
|
|
@@ -11078,7 +11111,7 @@ declare class PivotSortSection extends Component<Props$n, SpreadsheetChildEnv> {
|
|
|
11078
11111
|
}[];
|
|
11079
11112
|
}
|
|
11080
11113
|
|
|
11081
|
-
interface Props$
|
|
11114
|
+
interface Props$n {
|
|
11082
11115
|
definition: PivotRuntimeDefinition;
|
|
11083
11116
|
onDimensionsUpdated: (definition: Partial<PivotCoreDefinition>) => void;
|
|
11084
11117
|
unusedGroupableFields: PivotField[];
|
|
@@ -11089,7 +11122,7 @@ interface Props$m {
|
|
|
11089
11122
|
getScrollableContainerEl?: () => HTMLElement;
|
|
11090
11123
|
pivotId: UID;
|
|
11091
11124
|
}
|
|
11092
|
-
declare class PivotLayoutConfigurator extends Component<Props$
|
|
11125
|
+
declare class PivotLayoutConfigurator extends Component<Props$n, SpreadsheetChildEnv> {
|
|
11093
11126
|
static template: string;
|
|
11094
11127
|
static components: {
|
|
11095
11128
|
AddDimensionButton: typeof AddDimensionButton;
|
|
@@ -11142,6 +11175,7 @@ declare class PivotLayoutConfigurator extends Component<Props$m, SpreadsheetChil
|
|
|
11142
11175
|
updateOrder(updateDimension: PivotDimension$1, order?: SortDirection): void;
|
|
11143
11176
|
updateGranularity(dimension: PivotDimension$1, granularity: Granularity): void;
|
|
11144
11177
|
getMeasureDescription(measure: PivotMeasure): string;
|
|
11178
|
+
getHugeDimensionErrorMessage(dimension: PivotDimension$1): string | undefined;
|
|
11145
11179
|
}
|
|
11146
11180
|
|
|
11147
11181
|
declare class PivotSidePanelStore extends SpreadsheetStore {
|
|
@@ -11151,6 +11185,7 @@ declare class PivotSidePanelStore extends SpreadsheetStore {
|
|
|
11151
11185
|
private draft;
|
|
11152
11186
|
private notification;
|
|
11153
11187
|
private alreadyNotified;
|
|
11188
|
+
private alreadyNotifiedForPivotSize;
|
|
11154
11189
|
constructor(get: Get, pivotId: UID);
|
|
11155
11190
|
handle(cmd: Command): void;
|
|
11156
11191
|
get fields(): PivotFields;
|
|
@@ -11182,11 +11217,11 @@ declare class PivotSidePanelStore extends SpreadsheetStore {
|
|
|
11182
11217
|
private areDomainFieldsValid;
|
|
11183
11218
|
}
|
|
11184
11219
|
|
|
11185
|
-
interface Props$
|
|
11220
|
+
interface Props$m {
|
|
11186
11221
|
pivotId: UID;
|
|
11187
11222
|
flipAxis: () => void;
|
|
11188
11223
|
}
|
|
11189
|
-
declare class PivotTitleSection extends Component<Props$
|
|
11224
|
+
declare class PivotTitleSection extends Component<Props$m, SpreadsheetChildEnv> {
|
|
11190
11225
|
static template: string;
|
|
11191
11226
|
static components: {
|
|
11192
11227
|
CogWheelMenu: typeof CogWheelMenu;
|
|
@@ -11283,13 +11318,49 @@ declare function getFirstPivotFunction(tokens: Token[]): {
|
|
|
11283
11318
|
*/
|
|
11284
11319
|
declare function getNumberOfPivotFunctions(tokens: Token[]): number;
|
|
11285
11320
|
|
|
11321
|
+
declare class ZoomableChartJsComponent extends ChartJsComponent {
|
|
11322
|
+
static template: string;
|
|
11323
|
+
private store;
|
|
11324
|
+
private fullScreenChartStore;
|
|
11325
|
+
private masterChartCanvas;
|
|
11326
|
+
private masterChart?;
|
|
11327
|
+
private mode?;
|
|
11328
|
+
private hasLinearScale?;
|
|
11329
|
+
private isBarChart?;
|
|
11330
|
+
private chartId;
|
|
11331
|
+
private datasetBoundaries;
|
|
11332
|
+
private removeEventListeners;
|
|
11333
|
+
setup(): void;
|
|
11334
|
+
protected unmount(): void;
|
|
11335
|
+
get containerStyle(): string;
|
|
11336
|
+
get sliceable(): boolean;
|
|
11337
|
+
get axisOffset(): number;
|
|
11338
|
+
private getMasterChartConfiguration;
|
|
11339
|
+
private getDetailChartConfiguration;
|
|
11340
|
+
private getAxisLimitsFromDataset;
|
|
11341
|
+
protected get shouldAnimate(): boolean;
|
|
11342
|
+
protected createChart(chartRuntime: ChartJSRuntime): void;
|
|
11343
|
+
protected updateChartJs(chartRuntime: ChartJSRuntime): void;
|
|
11344
|
+
private resetAxesLimits;
|
|
11345
|
+
private updateTrendingLineAxes;
|
|
11346
|
+
get upperBound(): number | undefined;
|
|
11347
|
+
get lowerBound(): number | undefined;
|
|
11348
|
+
private computePosition;
|
|
11349
|
+
private computeCoordinate;
|
|
11350
|
+
private updateAxisLimits;
|
|
11351
|
+
onPointerDownInMasterChart(ev: PointerEvent): void;
|
|
11352
|
+
onPointerMoveInMasterChart(ev: PointerEvent): void;
|
|
11353
|
+
onMouseLeaveMasterChart(ev: PointerEvent): void;
|
|
11354
|
+
onDoubleClickInMasterChart(ev: PointerEvent): void;
|
|
11355
|
+
}
|
|
11356
|
+
|
|
11286
11357
|
declare class ChartDashboardMenuStore extends SpreadsheetStore {
|
|
11287
11358
|
private chartId;
|
|
11288
11359
|
mutators: readonly ["reset"];
|
|
11289
11360
|
private originalChartDefinition;
|
|
11290
11361
|
constructor(get: Get, chartId: UID);
|
|
11291
11362
|
get changeChartTypeMenuItems(): {
|
|
11292
|
-
id: "line" | "bar" | "scatter" | "pie" | "radar" | "treemap" | "funnel" | "
|
|
11363
|
+
id: "line" | "bar" | "scatter" | "pie" | "radar" | "treemap" | "funnel" | "geo" | "combo" | "waterfall" | "pyramid" | "sunburst" | "scorecard" | "gauge";
|
|
11293
11364
|
label: string;
|
|
11294
11365
|
onClick: () => void;
|
|
11295
11366
|
isSelected: boolean;
|
|
@@ -11336,7 +11407,7 @@ interface PivotDialogValue {
|
|
|
11336
11407
|
value: string;
|
|
11337
11408
|
isMissing: boolean;
|
|
11338
11409
|
}
|
|
11339
|
-
interface Props$
|
|
11410
|
+
interface Props$l {
|
|
11340
11411
|
pivotId: UID;
|
|
11341
11412
|
onCellClicked: (formula: string) => void;
|
|
11342
11413
|
}
|
|
@@ -11345,7 +11416,7 @@ interface TableData {
|
|
|
11345
11416
|
rows: PivotDialogRow[];
|
|
11346
11417
|
values: PivotDialogValue[][];
|
|
11347
11418
|
}
|
|
11348
|
-
declare class PivotHTMLRenderer extends Component<Props$
|
|
11419
|
+
declare class PivotHTMLRenderer extends Component<Props$l, SpreadsheetChildEnv> {
|
|
11349
11420
|
static template: string;
|
|
11350
11421
|
static components: {
|
|
11351
11422
|
Checkbox: typeof Checkbox;
|
|
@@ -11402,13 +11473,13 @@ declare class PivotHTMLRenderer extends Component<Props$k, SpreadsheetChildEnv>
|
|
|
11402
11473
|
_buildValues(id: UID, table: SpreadsheetPivotTable): PivotDialogValue[][];
|
|
11403
11474
|
}
|
|
11404
11475
|
|
|
11405
|
-
interface Props$
|
|
11476
|
+
interface Props$k {
|
|
11406
11477
|
chartId: UID;
|
|
11407
11478
|
definition: ChartWithDataSetDefinition;
|
|
11408
11479
|
updateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
11409
11480
|
canUpdateChart: (chartId: UID, definition: Partial<ChartWithDataSetDefinition>) => DispatchResult;
|
|
11410
11481
|
}
|
|
11411
|
-
declare class ChartShowDataMarkers extends Component<Props$
|
|
11482
|
+
declare class ChartShowDataMarkers extends Component<Props$k, SpreadsheetChildEnv> {
|
|
11412
11483
|
static template: string;
|
|
11413
11484
|
static components: {
|
|
11414
11485
|
Checkbox: typeof Checkbox;
|
|
@@ -11421,17 +11492,39 @@ declare class ChartShowDataMarkers extends Component<Props$j, SpreadsheetChildEn
|
|
|
11421
11492
|
};
|
|
11422
11493
|
}
|
|
11423
11494
|
|
|
11495
|
+
interface Props$j {
|
|
11496
|
+
chartId: UID;
|
|
11497
|
+
definition: ZoomableChartDefinition;
|
|
11498
|
+
canUpdateChart: (chartId: UID, definition: GenericDefinition<ZoomableChartDefinition>) => DispatchResult;
|
|
11499
|
+
updateChart: (chartId: UID, definition: GenericDefinition<ZoomableChartDefinition>) => DispatchResult;
|
|
11500
|
+
}
|
|
11501
|
+
declare class GenericZoomableChartDesignPanel<P extends Props$j = Props$j> extends ChartWithAxisDesignPanel<Props$j> {
|
|
11502
|
+
static template: string;
|
|
11503
|
+
static components: {
|
|
11504
|
+
Checkbox: typeof Checkbox;
|
|
11505
|
+
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
11506
|
+
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
11507
|
+
Section: typeof Section;
|
|
11508
|
+
AxisDesignEditor: typeof AxisDesignEditor;
|
|
11509
|
+
SeriesWithAxisDesignEditor: typeof SeriesWithAxisDesignEditor;
|
|
11510
|
+
ChartLegend: typeof ChartLegend;
|
|
11511
|
+
ChartShowValues: typeof ChartShowValues;
|
|
11512
|
+
};
|
|
11513
|
+
onToggleZoom(zoomable: boolean): void;
|
|
11514
|
+
}
|
|
11515
|
+
|
|
11424
11516
|
interface Props$i {
|
|
11425
11517
|
chartId: UID;
|
|
11426
11518
|
definition: ComboChartDefinition;
|
|
11427
11519
|
canUpdateChart: (chartId: UID, definition: GenericDefinition<ComboChartDefinition>) => DispatchResult;
|
|
11428
11520
|
updateChart: (chartId: UID, definition: GenericDefinition<ComboChartDefinition>) => DispatchResult;
|
|
11429
11521
|
}
|
|
11430
|
-
declare class ComboChartDesignPanel extends
|
|
11522
|
+
declare class ComboChartDesignPanel extends GenericZoomableChartDesignPanel<Props$i> {
|
|
11431
11523
|
static template: string;
|
|
11432
11524
|
static components: {
|
|
11433
11525
|
ChartShowDataMarkers: typeof ChartShowDataMarkers;
|
|
11434
11526
|
RadioSelection: typeof RadioSelection;
|
|
11527
|
+
Checkbox: typeof Checkbox;
|
|
11435
11528
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
11436
11529
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
11437
11530
|
Section: typeof Section;
|
|
@@ -11528,14 +11621,15 @@ declare class GeoChartRegionSelectSection extends Component<Props$f, Spreadsheet
|
|
|
11528
11621
|
|
|
11529
11622
|
interface Props$e {
|
|
11530
11623
|
chartId: UID;
|
|
11531
|
-
definition:
|
|
11532
|
-
canUpdateChart: (chartId: UID, definition:
|
|
11533
|
-
updateChart: (chartId: UID, definition:
|
|
11624
|
+
definition: LineChartDefinition;
|
|
11625
|
+
canUpdateChart: (chartId: UID, definition: LineChartDefinition) => DispatchResult;
|
|
11626
|
+
updateChart: (chartId: UID, definition: LineChartDefinition) => DispatchResult;
|
|
11534
11627
|
}
|
|
11535
|
-
declare class LineChartDesignPanel extends
|
|
11628
|
+
declare class LineChartDesignPanel extends GenericZoomableChartDesignPanel<Props$e> {
|
|
11536
11629
|
static template: string;
|
|
11537
11630
|
static components: {
|
|
11538
11631
|
ChartShowDataMarkers: typeof ChartShowDataMarkers;
|
|
11632
|
+
Checkbox: typeof Checkbox;
|
|
11539
11633
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
11540
11634
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
11541
11635
|
Section: typeof Section;
|
|
@@ -11746,6 +11840,7 @@ declare class WaterfallChartDesignPanel extends Component<Props$8, SpreadsheetCh
|
|
|
11746
11840
|
get negativeValuesColor(): Color | "#EA6175";
|
|
11747
11841
|
get subTotalValuesColor(): Color | "#AAAAAA";
|
|
11748
11842
|
updateVerticalAxisPosition(value: "left" | "right"): void;
|
|
11843
|
+
onToggleZoom(zoomable: boolean): void;
|
|
11749
11844
|
}
|
|
11750
11845
|
|
|
11751
11846
|
declare class PivotMeasureDisplayPanelStore extends SpreadsheetStore {
|
|
@@ -11820,6 +11915,7 @@ declare class BarChart extends AbstractChart {
|
|
|
11820
11915
|
readonly axesDesign?: AxesDesign;
|
|
11821
11916
|
readonly horizontal?: boolean;
|
|
11822
11917
|
readonly showValues?: boolean;
|
|
11918
|
+
readonly zoomable?: boolean;
|
|
11823
11919
|
constructor(definition: BarChartDefinition, sheetId: UID, getters: CoreGetters);
|
|
11824
11920
|
static transformDefinition(chartSheetId: UID, definition: BarChartDefinition, applyChange: RangeAdapter$1): BarChartDefinition;
|
|
11825
11921
|
static validateChartDefinition(validator: Validator, definition: BarChartDefinition): CommandResult | CommandResult[];
|
|
@@ -11867,6 +11963,7 @@ declare class LineChart extends AbstractChart {
|
|
|
11867
11963
|
readonly fillArea?: boolean;
|
|
11868
11964
|
readonly showValues?: boolean;
|
|
11869
11965
|
readonly hideDataMarkers?: boolean;
|
|
11966
|
+
readonly zoomable?: boolean;
|
|
11870
11967
|
constructor(definition: LineChartDefinition, sheetId: UID, getters: CoreGetters);
|
|
11871
11968
|
static validateChartDefinition(validator: Validator, definition: LineChartDefinition): CommandResult | CommandResult[];
|
|
11872
11969
|
static transformDefinition(chartSheetId: UID, definition: LineChartDefinition, applyChange: RangeAdapter$1): LineChartDefinition;
|
|
@@ -11948,6 +12045,7 @@ declare class WaterfallChart extends AbstractChart {
|
|
|
11948
12045
|
readonly dataSetDesign: CustomizedDataSet[];
|
|
11949
12046
|
readonly axesDesign?: AxesDesign;
|
|
11950
12047
|
readonly showValues?: boolean;
|
|
12048
|
+
readonly zoomable?: boolean;
|
|
11951
12049
|
constructor(definition: WaterfallChartDefinition, sheetId: UID, getters: CoreGetters);
|
|
11952
12050
|
static transformDefinition(chartSheetId: UID, definition: WaterfallChartDefinition, applyChange: RangeAdapter$1): WaterfallChartDefinition;
|
|
11953
12051
|
static validateChartDefinition(validator: Validator, definition: WaterfallChartDefinition): CommandResult | CommandResult[];
|
|
@@ -12877,6 +12975,7 @@ declare const components: {
|
|
|
12877
12975
|
ChartPanel: typeof ChartPanel;
|
|
12878
12976
|
ChartFigure: typeof ChartFigure;
|
|
12879
12977
|
ChartJsComponent: typeof ChartJsComponent;
|
|
12978
|
+
ZoomableChartJsComponent: typeof ZoomableChartJsComponent;
|
|
12880
12979
|
Grid: typeof Grid;
|
|
12881
12980
|
GridOverlay: typeof GridOverlay;
|
|
12882
12981
|
ScorecardChart: typeof ScorecardChart$1;
|
|
@@ -12885,6 +12984,7 @@ declare const components: {
|
|
|
12885
12984
|
PieChartDesignPanel: typeof PieChartDesignPanel;
|
|
12886
12985
|
GenericChartConfigPanel: typeof GenericChartConfigPanel;
|
|
12887
12986
|
ChartWithAxisDesignPanel: typeof ChartWithAxisDesignPanel;
|
|
12987
|
+
GenericZoomableChartDesignPanel: typeof GenericZoomableChartDesignPanel;
|
|
12888
12988
|
LineChartDesignPanel: typeof LineChartDesignPanel;
|
|
12889
12989
|
GaugeChartConfigPanel: typeof GaugeChartConfigPanel;
|
|
12890
12990
|
GaugeChartDesignPanel: typeof GaugeChartDesignPanel;
|
|
@@ -13478,7 +13578,7 @@ declare const chartHelpers: {
|
|
|
13478
13578
|
formatChartDatasetValue(axisFormats: ChartAxisFormats, locale: Locale): (value: any, axisId: string) => any;
|
|
13479
13579
|
formatTickValue(localeFormat: LocaleFormat): (value: any) => any;
|
|
13480
13580
|
getPieColors(colors: ColorGenerator, dataSetsValues: DatasetValues[]): Color[];
|
|
13481
|
-
truncateLabel(label: string | undefined): string;
|
|
13581
|
+
truncateLabel(label: string | undefined, maxLen?: number): string;
|
|
13482
13582
|
isTrendLineAxis(axisID: string): axisID is "x1" | "xMovingAverage";
|
|
13483
13583
|
TREND_LINE_XAXIS_ID: "x1";
|
|
13484
13584
|
MOVING_AVERAGE_TREND_LINE_XAXIS_ID: "xMovingAverage";
|
|
@@ -13526,4 +13626,4 @@ declare const chartHelpers: {
|
|
|
13526
13626
|
WaterfallChart: typeof WaterfallChart;
|
|
13527
13627
|
};
|
|
13528
13628
|
|
|
13529
|
-
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFigureChartToCarouselCommand, AddFunctionDescription, AddMergeCommand, AddNewChartToCarouselCommand, 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, Carousel, CarouselItem, 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, 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, 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, UpdateCarouselActiveItemCommand, UpdateCarouselCommand, 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 };
|
|
13629
|
+
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFigureChartToCarouselCommand, AddFunctionDescription, AddMergeCommand, AddNewChartToCarouselCommand, 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, Carousel, CarouselItem, 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, 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, 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, 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, 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 };
|