@odoo/o-spreadsheet 17.4.0-alpha.5 → 17.4.0-alpha.7
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 +1234 -747
- package/dist/o-spreadsheet.d.ts +232 -120
- package/dist/o-spreadsheet.esm.js +1234 -747
- package/dist/o-spreadsheet.iife.js +1234 -747
- package/dist/o-spreadsheet.iife.min.js +377 -344
- package/dist/o_spreadsheet.xml +250 -23
- package/package.json +6 -4
package/dist/o-spreadsheet.d.ts
CHANGED
|
@@ -202,6 +202,7 @@ interface ComboBarChartDefinition {
|
|
|
202
202
|
interface BarChartDefinition extends ComboBarChartDefinition {
|
|
203
203
|
readonly type: "bar";
|
|
204
204
|
readonly stacked: boolean;
|
|
205
|
+
readonly horizontal?: boolean;
|
|
205
206
|
}
|
|
206
207
|
type BarChartRuntime = {
|
|
207
208
|
chartJsConfig: ChartConfiguration;
|
|
@@ -282,12 +283,21 @@ interface PieChartDefinition {
|
|
|
282
283
|
readonly legendPosition: LegendPosition;
|
|
283
284
|
readonly aggregated?: boolean;
|
|
284
285
|
readonly axesDesign?: AxesDesign;
|
|
286
|
+
readonly isDoughnut?: boolean;
|
|
285
287
|
}
|
|
286
288
|
type PieChartRuntime = {
|
|
287
289
|
chartJsConfig: ChartConfiguration;
|
|
288
290
|
background: Color;
|
|
289
291
|
};
|
|
290
292
|
|
|
293
|
+
interface PyramidChartDefinition extends Omit<BarChartDefinition, "type"> {
|
|
294
|
+
readonly type: "pyramid";
|
|
295
|
+
}
|
|
296
|
+
type PyramidChartRuntime = {
|
|
297
|
+
chartJsConfig: ChartConfiguration;
|
|
298
|
+
background: Color;
|
|
299
|
+
};
|
|
300
|
+
|
|
291
301
|
interface ScatterChartDefinition extends Omit<LineChartDefinition, "type" | "stacked" | "cumulative"> {
|
|
292
302
|
readonly type: "scatter";
|
|
293
303
|
}
|
|
@@ -348,14 +358,14 @@ type WaterfallChartRuntime = {
|
|
|
348
358
|
background: Color;
|
|
349
359
|
};
|
|
350
360
|
|
|
351
|
-
declare const CHART_TYPES: readonly ["line", "bar", "pie", "scorecard", "gauge", "scatter", "combo", "waterfall"];
|
|
361
|
+
declare const CHART_TYPES: readonly ["line", "bar", "pie", "scorecard", "gauge", "scatter", "combo", "waterfall", "pyramid"];
|
|
352
362
|
type ChartType = (typeof CHART_TYPES)[number];
|
|
353
|
-
type ChartDefinition = LineChartDefinition | PieChartDefinition | BarChartDefinition | ScorecardChartDefinition | GaugeChartDefinition | ScatterChartDefinition | ComboChartDefinition | WaterfallChartDefinition;
|
|
363
|
+
type ChartDefinition = LineChartDefinition | PieChartDefinition | BarChartDefinition | ScorecardChartDefinition | GaugeChartDefinition | ScatterChartDefinition | ComboChartDefinition | WaterfallChartDefinition | PyramidChartDefinition;
|
|
354
364
|
type ChartWithAxisDefinition = Extract<ChartDefinition, {
|
|
355
365
|
dataSets: CustomizedDataSet[];
|
|
356
366
|
labelRange?: string;
|
|
357
367
|
}>;
|
|
358
|
-
type ChartJSRuntime = LineChartRuntime | PieChartRuntime | BarChartRuntime | ComboChartRuntime | ScatterChartRuntime | WaterfallChartRuntime;
|
|
368
|
+
type ChartJSRuntime = LineChartRuntime | PieChartRuntime | BarChartRuntime | ComboChartRuntime | ScatterChartRuntime | WaterfallChartRuntime | PyramidChartRuntime;
|
|
359
369
|
type ChartRuntime = ChartJSRuntime | ScorecardChartRuntime | GaugeChartRuntime;
|
|
360
370
|
interface LabelValues {
|
|
361
371
|
readonly values: string[];
|
|
@@ -570,6 +580,11 @@ interface PivotHeaderCell {
|
|
|
570
580
|
type: "HEADER";
|
|
571
581
|
domain: PivotDomain;
|
|
572
582
|
}
|
|
583
|
+
interface PivotMeasureHeaderCell {
|
|
584
|
+
type: "MEASURE_HEADER";
|
|
585
|
+
domain: PivotDomain;
|
|
586
|
+
measure: string;
|
|
587
|
+
}
|
|
573
588
|
interface PivotValueCell {
|
|
574
589
|
type: "VALUE";
|
|
575
590
|
domain: PivotDomain;
|
|
@@ -578,7 +593,7 @@ interface PivotValueCell {
|
|
|
578
593
|
interface PivotEmptyCell {
|
|
579
594
|
type: "EMPTY";
|
|
580
595
|
}
|
|
581
|
-
type PivotTableCell = PivotHeaderCell | PivotValueCell | PivotEmptyCell;
|
|
596
|
+
type PivotTableCell = PivotHeaderCell | PivotMeasureHeaderCell | PivotValueCell | PivotEmptyCell;
|
|
582
597
|
interface PivotTimeAdapter<T> {
|
|
583
598
|
normalizeFunctionValue: (value: string) => T;
|
|
584
599
|
formatValue: (normalizedValue: T, locale?: Locale) => string;
|
|
@@ -3198,7 +3213,6 @@ declare class PivotCorePlugin extends CorePlugin<CoreState> implements CoreState
|
|
|
3198
3213
|
private addPivot;
|
|
3199
3214
|
private insertPivot;
|
|
3200
3215
|
private resizeSheet;
|
|
3201
|
-
private addPivotFormula;
|
|
3202
3216
|
private getPivotCore;
|
|
3203
3217
|
/**
|
|
3204
3218
|
* Import the pivots
|
|
@@ -3878,6 +3892,7 @@ type StatefulStream<Event, State> = {
|
|
|
3878
3892
|
* Allows to select cells in the grid and update the selection
|
|
3879
3893
|
*/
|
|
3880
3894
|
interface SelectionProcessor {
|
|
3895
|
+
getAnchor(): Immutable<AnchorZone>;
|
|
3881
3896
|
selectZone(anchor: AnchorZone, options?: SelectionEventOptions): DispatchResult;
|
|
3882
3897
|
selectCell(col: number, row: number): DispatchResult;
|
|
3883
3898
|
moveAnchorCell(direction: Direction$1, step: SelectionStep): DispatchResult;
|
|
@@ -4253,7 +4268,7 @@ interface Pivot<T = PivotRuntimeDefinition> {
|
|
|
4253
4268
|
}
|
|
4254
4269
|
|
|
4255
4270
|
declare class PivotUIPlugin extends UIPlugin {
|
|
4256
|
-
static getters: readonly ["getPivot", "getFirstPivotFunction", "getPivotIdFromPosition", "
|
|
4271
|
+
static getters: readonly ["getPivot", "getFirstPivotFunction", "getPivotIdFromPosition", "getPivotCellFromPosition", "isPivotUnused", "areDomainArgsFieldsValid", "isSpillPivotFormula"];
|
|
4257
4272
|
private pivots;
|
|
4258
4273
|
private unusedPivots?;
|
|
4259
4274
|
private custom;
|
|
@@ -4265,6 +4280,7 @@ declare class PivotUIPlugin extends UIPlugin {
|
|
|
4265
4280
|
* is no pivot at this position
|
|
4266
4281
|
*/
|
|
4267
4282
|
getPivotIdFromPosition(position: CellPosition): "" | UID | undefined;
|
|
4283
|
+
isSpillPivotFormula(position: CellPosition): boolean;
|
|
4268
4284
|
getFirstPivotFunction(tokens: Token[]): {
|
|
4269
4285
|
functionName: string;
|
|
4270
4286
|
args: (CellValue | Matrix<CellValue> | undefined)[];
|
|
@@ -4282,10 +4298,7 @@ declare class PivotUIPlugin extends UIPlugin {
|
|
|
4282
4298
|
* If the cell is the result of PIVOT, the result is the domain of the cell
|
|
4283
4299
|
* as if it was the individual pivot formula
|
|
4284
4300
|
*/
|
|
4285
|
-
|
|
4286
|
-
domainArgs: PivotDomain;
|
|
4287
|
-
isHeader?: boolean;
|
|
4288
|
-
} | undefined;
|
|
4301
|
+
getPivotCellFromPosition(position: CellPosition): PivotTableCell;
|
|
4289
4302
|
getPivot(pivotId: UID): Pivot<PivotRuntimeDefinition>;
|
|
4290
4303
|
isPivotUnused(pivotId: UID): boolean;
|
|
4291
4304
|
/**
|
|
@@ -4492,21 +4505,6 @@ declare class CollaborativePlugin extends UIPlugin {
|
|
|
4492
4505
|
drawLayer(renderingContext: GridRenderingContext): void;
|
|
4493
4506
|
}
|
|
4494
4507
|
|
|
4495
|
-
/**
|
|
4496
|
-
* Find and Replace Plugin
|
|
4497
|
-
*
|
|
4498
|
-
* This plugin is used in combination with the find_and_replace sidePanel
|
|
4499
|
-
* It is used to 'highlight' cells that match an input string according to
|
|
4500
|
-
* the given searchOptions. The second part of this plugin makes it possible
|
|
4501
|
-
* (again with the find_and_replace sidePanel), to replace the values that match
|
|
4502
|
-
* the search with a new value.
|
|
4503
|
-
*/
|
|
4504
|
-
declare class FindAndReplacePlugin extends UIPlugin {
|
|
4505
|
-
static getters: readonly [];
|
|
4506
|
-
handle(cmd: Command): void;
|
|
4507
|
-
private replaceMatch;
|
|
4508
|
-
}
|
|
4509
|
-
|
|
4510
4508
|
declare class HeaderVisibilityUIPlugin extends UIPlugin {
|
|
4511
4509
|
static getters: readonly ["getNextVisibleCellPosition", "findVisibleHeader", "findLastVisibleColRowIndex", "findFirstVisibleColRowIndex", "isRowHidden", "isColHidden", "isHeaderHidden"];
|
|
4512
4510
|
isRowHidden(sheetId: UID, index: number): boolean;
|
|
@@ -5146,7 +5144,7 @@ type CoreGetters = PluginGetters<typeof SheetPlugin> & PluginGetters<typeof Head
|
|
|
5146
5144
|
type Getters = {
|
|
5147
5145
|
isReadonly: () => boolean;
|
|
5148
5146
|
isDashboard: () => boolean;
|
|
5149
|
-
} & CoreGetters & PluginGetters<typeof AutofillPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof HistoryPlugin> & PluginGetters<typeof ClipboardPlugin> & PluginGetters<typeof EvaluationPlugin> & PluginGetters<typeof EvaluationChartPlugin> & PluginGetters<typeof EvaluationConditionalFormatPlugin> & PluginGetters<typeof
|
|
5147
|
+
} & CoreGetters & PluginGetters<typeof AutofillPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof HistoryPlugin> & PluginGetters<typeof ClipboardPlugin> & PluginGetters<typeof EvaluationPlugin> & PluginGetters<typeof EvaluationChartPlugin> & PluginGetters<typeof EvaluationConditionalFormatPlugin> & PluginGetters<typeof HeaderVisibilityUIPlugin> & PluginGetters<typeof CustomColorsPlugin> & PluginGetters<typeof AutomaticSumPlugin> & PluginGetters<typeof GridSelectionPlugin> & PluginGetters<typeof CollaborativePlugin> & PluginGetters<typeof SortPlugin> & PluginGetters<typeof UIOptionsPlugin> & PluginGetters<typeof SheetUIPlugin> & PluginGetters<typeof SheetViewPlugin> & PluginGetters<typeof FilterEvaluationPlugin> & PluginGetters<typeof SplitToColumnsPlugin> & PluginGetters<typeof HeaderSizeUIPlugin> & PluginGetters<typeof EvaluationDataValidationPlugin> & PluginGetters<typeof HeaderPositionsUIPlugin> & PluginGetters<typeof TableStylePlugin> & PluginGetters<typeof CellComputedStylePlugin> & PluginGetters<typeof DynamicTablesPlugin> & PluginGetters<typeof PivotUIPlugin> & PluginGetters<typeof TableComputedStylePlugin>;
|
|
5150
5148
|
|
|
5151
5149
|
type ArgType = "ANY" | "BOOLEAN" | "NUMBER" | "STRING" | "DATE" | "RANGE" | "RANGE<BOOLEAN>" | "RANGE<NUMBER>" | "RANGE<DATE>" | "RANGE<STRING>" | "RANGE<ANY>" | "META";
|
|
5152
5150
|
interface ArgDefinition {
|
|
@@ -6255,11 +6253,32 @@ interface ChartBuilder {
|
|
|
6255
6253
|
validateChartDefinition(validator: Validator, definition: ChartDefinition): CommandResult | CommandResult[];
|
|
6256
6254
|
transformDefinition(definition: ChartDefinition, executed: AddColumnsRowsCommand | RemoveColumnsRowsCommand): ChartDefinition;
|
|
6257
6255
|
getChartDefinitionFromContextCreation(context: ChartCreationContext): ChartDefinition;
|
|
6258
|
-
name: string;
|
|
6259
6256
|
sequence: number;
|
|
6260
6257
|
}
|
|
6258
|
+
type ChartUICategory = keyof typeof chartCategories;
|
|
6259
|
+
declare const chartCategories: {
|
|
6260
|
+
line: string;
|
|
6261
|
+
column: string;
|
|
6262
|
+
bar: string;
|
|
6263
|
+
pie: string;
|
|
6264
|
+
misc: string;
|
|
6265
|
+
};
|
|
6266
|
+
interface ChartSubtypeProperties {
|
|
6267
|
+
/** Type shown in the chart side panel */
|
|
6268
|
+
chartSubtype: string;
|
|
6269
|
+
/** Translated name of the displayType */
|
|
6270
|
+
displayName: string;
|
|
6271
|
+
/** Type of the chart in the model */
|
|
6272
|
+
chartType: ChartType;
|
|
6273
|
+
/** Match the chart type with a chart display type. Optional if chartType === displayType */
|
|
6274
|
+
matcher?: (definition: ChartDefinition) => boolean;
|
|
6275
|
+
/** Additional definition options to create a chart of type displayType */
|
|
6276
|
+
subtypeDefinition?: Partial<ChartDefinition>;
|
|
6277
|
+
category: ChartUICategory;
|
|
6278
|
+
preview: string;
|
|
6279
|
+
}
|
|
6261
6280
|
|
|
6262
|
-
interface Props$
|
|
6281
|
+
interface Props$11 {
|
|
6263
6282
|
label?: string;
|
|
6264
6283
|
value: boolean;
|
|
6265
6284
|
className?: string;
|
|
@@ -6268,7 +6287,7 @@ interface Props$10 {
|
|
|
6268
6287
|
disabled?: boolean;
|
|
6269
6288
|
onChange: (value: boolean) => void;
|
|
6270
6289
|
}
|
|
6271
|
-
declare class Checkbox extends Component<Props$
|
|
6290
|
+
declare class Checkbox extends Component<Props$11, SpreadsheetChildEnv> {
|
|
6272
6291
|
static template: string;
|
|
6273
6292
|
static props: {
|
|
6274
6293
|
label: {
|
|
@@ -6303,10 +6322,10 @@ declare class Checkbox extends Component<Props$10, SpreadsheetChildEnv> {
|
|
|
6303
6322
|
onChange(ev: InputEvent): void;
|
|
6304
6323
|
}
|
|
6305
6324
|
|
|
6306
|
-
interface Props
|
|
6325
|
+
interface Props$10 {
|
|
6307
6326
|
class?: string;
|
|
6308
6327
|
}
|
|
6309
|
-
declare class Section extends Component<Props
|
|
6328
|
+
declare class Section extends Component<Props$10, SpreadsheetChildEnv> {
|
|
6310
6329
|
static template: string;
|
|
6311
6330
|
static props: {
|
|
6312
6331
|
class: {
|
|
@@ -6434,7 +6453,7 @@ declare class SelectionInputStore extends SpreadsheetStore {
|
|
|
6434
6453
|
getIndex(rangeId: number | null): number | null;
|
|
6435
6454
|
}
|
|
6436
6455
|
|
|
6437
|
-
interface Props
|
|
6456
|
+
interface Props$$ {
|
|
6438
6457
|
ranges: string[];
|
|
6439
6458
|
hasSingleRange?: boolean;
|
|
6440
6459
|
required?: boolean;
|
|
@@ -6457,7 +6476,7 @@ interface SelectionRange extends Omit<RangeInputValue, "color"> {
|
|
|
6457
6476
|
* onSelectionChanged is called every time the input value
|
|
6458
6477
|
* changes.
|
|
6459
6478
|
*/
|
|
6460
|
-
declare class SelectionInput extends Component<Props
|
|
6479
|
+
declare class SelectionInput extends Component<Props$$, SpreadsheetChildEnv> {
|
|
6461
6480
|
static template: string;
|
|
6462
6481
|
static props: {
|
|
6463
6482
|
ranges: ArrayConstructor;
|
|
@@ -6512,13 +6531,13 @@ declare class SelectionInput extends Component<Props$_, SpreadsheetChildEnv> {
|
|
|
6512
6531
|
confirm(): void;
|
|
6513
6532
|
}
|
|
6514
6533
|
|
|
6515
|
-
interface Props$
|
|
6534
|
+
interface Props$_ {
|
|
6516
6535
|
ranges: CustomizedDataSet[];
|
|
6517
6536
|
hasSingleRange?: boolean;
|
|
6518
6537
|
onSelectionChanged: (ranges: string[]) => void;
|
|
6519
6538
|
onSelectionConfirmed: () => void;
|
|
6520
6539
|
}
|
|
6521
|
-
declare class ChartDataSeries extends Component<Props$
|
|
6540
|
+
declare class ChartDataSeries extends Component<Props$_, SpreadsheetChildEnv> {
|
|
6522
6541
|
static template: string;
|
|
6523
6542
|
static components: {
|
|
6524
6543
|
SelectionInput: typeof SelectionInput;
|
|
@@ -6538,11 +6557,11 @@ declare class ChartDataSeries extends Component<Props$Z, SpreadsheetChildEnv> {
|
|
|
6538
6557
|
get title(): string;
|
|
6539
6558
|
}
|
|
6540
6559
|
|
|
6541
|
-
interface Props$
|
|
6560
|
+
interface Props$Z {
|
|
6542
6561
|
messages: string[];
|
|
6543
6562
|
msgType: "warning" | "error";
|
|
6544
6563
|
}
|
|
6545
|
-
declare class ValidationMessages extends Component<Props$
|
|
6564
|
+
declare class ValidationMessages extends Component<Props$Z, SpreadsheetChildEnv> {
|
|
6546
6565
|
static template: string;
|
|
6547
6566
|
static props: {
|
|
6548
6567
|
messages: ArrayConstructor;
|
|
@@ -6551,10 +6570,10 @@ declare class ValidationMessages extends Component<Props$Y, SpreadsheetChildEnv>
|
|
|
6551
6570
|
get divClasses(): "o-validation-warning text-warning" | "o-validation-error text-danger";
|
|
6552
6571
|
}
|
|
6553
6572
|
|
|
6554
|
-
interface Props$
|
|
6573
|
+
interface Props$Y {
|
|
6555
6574
|
messages: string[];
|
|
6556
6575
|
}
|
|
6557
|
-
declare class ChartErrorSection extends Component<Props$
|
|
6576
|
+
declare class ChartErrorSection extends Component<Props$Y, SpreadsheetChildEnv> {
|
|
6558
6577
|
static template: string;
|
|
6559
6578
|
static components: {
|
|
6560
6579
|
Section: typeof Section;
|
|
@@ -6568,7 +6587,7 @@ declare class ChartErrorSection extends Component<Props$X, SpreadsheetChildEnv>
|
|
|
6568
6587
|
};
|
|
6569
6588
|
}
|
|
6570
6589
|
|
|
6571
|
-
interface Props$
|
|
6590
|
+
interface Props$X {
|
|
6572
6591
|
title?: string;
|
|
6573
6592
|
range: string;
|
|
6574
6593
|
isInvalid: boolean;
|
|
@@ -6582,7 +6601,7 @@ interface Props$W {
|
|
|
6582
6601
|
onChange: (value: boolean) => void;
|
|
6583
6602
|
}>;
|
|
6584
6603
|
}
|
|
6585
|
-
declare class ChartLabelRange extends Component<Props$
|
|
6604
|
+
declare class ChartLabelRange extends Component<Props$X, SpreadsheetChildEnv> {
|
|
6586
6605
|
static template: string;
|
|
6587
6606
|
static components: {
|
|
6588
6607
|
SelectionInput: typeof SelectionInput;
|
|
@@ -6607,16 +6626,16 @@ declare class ChartLabelRange extends Component<Props$W, SpreadsheetChildEnv> {
|
|
|
6607
6626
|
optional: boolean;
|
|
6608
6627
|
};
|
|
6609
6628
|
};
|
|
6610
|
-
static defaultProps: Partial<Props$
|
|
6629
|
+
static defaultProps: Partial<Props$X>;
|
|
6611
6630
|
}
|
|
6612
6631
|
|
|
6613
|
-
interface Props$
|
|
6632
|
+
interface Props$W {
|
|
6614
6633
|
figureId: UID;
|
|
6615
6634
|
definition: ChartWithAxisDefinition;
|
|
6616
6635
|
canUpdateChart: (figureId: UID, definition: Partial<ChartWithAxisDefinition>) => DispatchResult;
|
|
6617
6636
|
updateChart: (figureId: UID, definition: Partial<ChartWithAxisDefinition>) => DispatchResult;
|
|
6618
6637
|
}
|
|
6619
|
-
declare class GenericChartConfigPanel extends Component<Props$
|
|
6638
|
+
declare class GenericChartConfigPanel extends Component<Props$W, SpreadsheetChildEnv> {
|
|
6620
6639
|
static template: string;
|
|
6621
6640
|
static components: {
|
|
6622
6641
|
ChartDataSeries: typeof ChartDataSeries;
|
|
@@ -6634,6 +6653,30 @@ declare class GenericChartConfigPanel extends Component<Props$V, SpreadsheetChil
|
|
|
6634
6653
|
private state;
|
|
6635
6654
|
private dataSeriesRanges;
|
|
6636
6655
|
private labelRange;
|
|
6656
|
+
protected chartTerms: {
|
|
6657
|
+
Series: string;
|
|
6658
|
+
BackgroundColor: string;
|
|
6659
|
+
StackedBarChart: string;
|
|
6660
|
+
StackedLineChart: string;
|
|
6661
|
+
CumulativeData: string;
|
|
6662
|
+
TreatLabelsAsText: string;
|
|
6663
|
+
AggregatedChart: string;
|
|
6664
|
+
Errors: {
|
|
6665
|
+
Unexpected: string;
|
|
6666
|
+
InvalidDataSet: string;
|
|
6667
|
+
InvalidLabelRange: string;
|
|
6668
|
+
InvalidScorecardKeyValue: string;
|
|
6669
|
+
InvalidScorecardBaseline: string;
|
|
6670
|
+
InvalidGaugeDataRange: string;
|
|
6671
|
+
EmptyGaugeRangeMin: string;
|
|
6672
|
+
GaugeRangeMinNaN: string;
|
|
6673
|
+
EmptyGaugeRangeMax: string;
|
|
6674
|
+
GaugeRangeMaxNaN: string;
|
|
6675
|
+
GaugeRangeMinBiggerThanRangeMax: string;
|
|
6676
|
+
GaugeLowerInflectionPointNaN: string;
|
|
6677
|
+
GaugeUpperInflectionPointNaN: string;
|
|
6678
|
+
};
|
|
6679
|
+
};
|
|
6637
6680
|
setup(): void;
|
|
6638
6681
|
get errorMessages(): string[];
|
|
6639
6682
|
get isDatasetInvalid(): boolean;
|
|
@@ -6666,7 +6709,6 @@ declare class GenericChartConfigPanel extends Component<Props$V, SpreadsheetChil
|
|
|
6666
6709
|
|
|
6667
6710
|
declare class BarConfigPanel extends GenericChartConfigPanel {
|
|
6668
6711
|
static template: string;
|
|
6669
|
-
get stackedLabel(): string;
|
|
6670
6712
|
onUpdateStacked(stacked: boolean): void;
|
|
6671
6713
|
onUpdateAggregated(aggregated: boolean): void;
|
|
6672
6714
|
}
|
|
@@ -6830,7 +6872,7 @@ declare class ColorPicker extends Component<ColorPickerProps, SpreadsheetChildEn
|
|
|
6830
6872
|
isSameColor(color1: Color, color2: Color): boolean;
|
|
6831
6873
|
}
|
|
6832
6874
|
|
|
6833
|
-
interface Props$
|
|
6875
|
+
interface Props$V {
|
|
6834
6876
|
currentColor: string | undefined;
|
|
6835
6877
|
toggleColorPicker: () => void;
|
|
6836
6878
|
showColorPicker: boolean;
|
|
@@ -6841,7 +6883,7 @@ interface Props$U {
|
|
|
6841
6883
|
dropdownMaxHeight?: Pixel;
|
|
6842
6884
|
class?: string;
|
|
6843
6885
|
}
|
|
6844
|
-
declare class ColorPickerWidget extends Component<Props$
|
|
6886
|
+
declare class ColorPickerWidget extends Component<Props$V, SpreadsheetChildEnv> {
|
|
6845
6887
|
static template: string;
|
|
6846
6888
|
static props: {
|
|
6847
6889
|
currentColor: {
|
|
@@ -6879,12 +6921,12 @@ declare class ColorPickerWidget extends Component<Props$U, SpreadsheetChildEnv>
|
|
|
6879
6921
|
get colorPickerAnchorRect(): Rect;
|
|
6880
6922
|
}
|
|
6881
6923
|
|
|
6882
|
-
interface Props$
|
|
6924
|
+
interface Props$U {
|
|
6883
6925
|
currentColor?: string;
|
|
6884
6926
|
onColorPicked: (color: string) => void;
|
|
6885
6927
|
title?: string;
|
|
6886
6928
|
}
|
|
6887
|
-
declare class RoundColorPicker extends Component<Props$
|
|
6929
|
+
declare class RoundColorPicker extends Component<Props$U, SpreadsheetChildEnv> {
|
|
6888
6930
|
static template: string;
|
|
6889
6931
|
static components: {
|
|
6890
6932
|
ColorPickerWidget: typeof ColorPickerWidget;
|
|
@@ -6914,7 +6956,7 @@ declare class RoundColorPicker extends Component<Props$T, SpreadsheetChildEnv> {
|
|
|
6914
6956
|
get buttonStyle(): string;
|
|
6915
6957
|
}
|
|
6916
6958
|
|
|
6917
|
-
interface Props$
|
|
6959
|
+
interface Props$T {
|
|
6918
6960
|
title: string;
|
|
6919
6961
|
updateTitle: (title: string) => void;
|
|
6920
6962
|
name?: string;
|
|
@@ -6924,7 +6966,7 @@ interface Props$S {
|
|
|
6924
6966
|
updateColor?: (Color: any) => void;
|
|
6925
6967
|
style: TitleDesign;
|
|
6926
6968
|
}
|
|
6927
|
-
declare class ChartTitle extends Component<Props$
|
|
6969
|
+
declare class ChartTitle extends Component<Props$T, SpreadsheetChildEnv> {
|
|
6928
6970
|
static template: string;
|
|
6929
6971
|
static components: {
|
|
6930
6972
|
Section: typeof Section;
|
|
@@ -6981,13 +7023,13 @@ interface AxisDefinition {
|
|
|
6981
7023
|
id: string;
|
|
6982
7024
|
name: string;
|
|
6983
7025
|
}
|
|
6984
|
-
interface Props$
|
|
7026
|
+
interface Props$S {
|
|
6985
7027
|
figureId: UID;
|
|
6986
7028
|
definition: ChartWithAxisDefinition | WaterfallChartDefinition;
|
|
6987
7029
|
updateChart: (figureId: UID, definition: Partial<ChartWithAxisDefinition | WaterfallChartDefinition>) => DispatchResult;
|
|
6988
7030
|
axesList: AxisDefinition[];
|
|
6989
7031
|
}
|
|
6990
|
-
declare class AxisDesignEditor extends Component<Props$
|
|
7032
|
+
declare class AxisDesignEditor extends Component<Props$S, SpreadsheetChildEnv> {
|
|
6991
7033
|
static template: string;
|
|
6992
7034
|
static components: {
|
|
6993
7035
|
Section: typeof Section;
|
|
@@ -7012,12 +7054,12 @@ declare class AxisDesignEditor extends Component<Props$R, SpreadsheetChildEnv> {
|
|
|
7012
7054
|
updateAxisTitle(text: string): void;
|
|
7013
7055
|
}
|
|
7014
7056
|
|
|
7015
|
-
interface Props$
|
|
7057
|
+
interface Props$R {
|
|
7016
7058
|
figureId: UID;
|
|
7017
7059
|
definition: ChartDefinition;
|
|
7018
7060
|
updateChart: (figureId: UID, definition: Partial<ChartDefinition>) => DispatchResult;
|
|
7019
7061
|
}
|
|
7020
|
-
declare class GeneralDesignEditor extends Component<Props$
|
|
7062
|
+
declare class GeneralDesignEditor extends Component<Props$R, SpreadsheetChildEnv> {
|
|
7021
7063
|
static template: string;
|
|
7022
7064
|
static components: {
|
|
7023
7065
|
RoundColorPicker: typeof RoundColorPicker;
|
|
@@ -7047,13 +7089,13 @@ declare class GeneralDesignEditor extends Component<Props$Q, SpreadsheetChildEnv
|
|
|
7047
7089
|
updateChartTitleAlignment(align: "left" | "center" | "right"): void;
|
|
7048
7090
|
}
|
|
7049
7091
|
|
|
7050
|
-
interface Props$
|
|
7092
|
+
interface Props$Q {
|
|
7051
7093
|
figureId: UID;
|
|
7052
7094
|
definition: ChartWithAxisDefinition;
|
|
7053
7095
|
canUpdateChart: (figureID: UID, definition: Partial<ChartWithAxisDefinition>) => DispatchResult;
|
|
7054
7096
|
updateChart: (figureId: UID, definition: Partial<ChartWithAxisDefinition>) => DispatchResult;
|
|
7055
7097
|
}
|
|
7056
|
-
declare class ChartWithAxisDesignPanel extends Component<Props$
|
|
7098
|
+
declare class ChartWithAxisDesignPanel extends Component<Props$Q, SpreadsheetChildEnv> {
|
|
7057
7099
|
static template: string;
|
|
7058
7100
|
static components: {
|
|
7059
7101
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -7077,17 +7119,18 @@ declare class ChartWithAxisDesignPanel extends Component<Props$P, SpreadsheetChi
|
|
|
7077
7119
|
getDataSerieColor(): "" | Color;
|
|
7078
7120
|
updateDataSeriesAxis(ev: any): void;
|
|
7079
7121
|
getDataSerieAxis(): "left" | "right";
|
|
7122
|
+
get canHaveTwoVerticalAxis(): boolean;
|
|
7080
7123
|
updateDataSeriesLabel(ev: any): void;
|
|
7081
7124
|
getDataSerieLabel(): string | undefined;
|
|
7082
7125
|
}
|
|
7083
7126
|
|
|
7084
|
-
interface Props$
|
|
7127
|
+
interface Props$P {
|
|
7085
7128
|
figureId: UID;
|
|
7086
7129
|
definition: GaugeChartDefinition;
|
|
7087
7130
|
canUpdateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
7088
7131
|
updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
7089
7132
|
}
|
|
7090
|
-
declare class GaugeChartConfigPanel extends Component<Props$
|
|
7133
|
+
declare class GaugeChartConfigPanel extends Component<Props$P, SpreadsheetChildEnv> {
|
|
7091
7134
|
static template: string;
|
|
7092
7135
|
static components: {
|
|
7093
7136
|
ChartErrorSection: typeof ChartErrorSection;
|
|
@@ -7112,13 +7155,13 @@ interface PanelState {
|
|
|
7112
7155
|
sectionRuleDispatchResult?: DispatchResult;
|
|
7113
7156
|
sectionRule: SectionRule;
|
|
7114
7157
|
}
|
|
7115
|
-
interface Props$
|
|
7158
|
+
interface Props$O {
|
|
7116
7159
|
figureId: UID;
|
|
7117
7160
|
definition: GaugeChartDefinition;
|
|
7118
7161
|
canUpdateChart: (figureID: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
7119
7162
|
updateChart: (figureId: UID, definition: Partial<GaugeChartDefinition>) => DispatchResult;
|
|
7120
7163
|
}
|
|
7121
|
-
declare class GaugeChartDesignPanel extends Component<Props$
|
|
7164
|
+
declare class GaugeChartDesignPanel extends Component<Props$O, SpreadsheetChildEnv> {
|
|
7122
7165
|
static template: string;
|
|
7123
7166
|
static components: {
|
|
7124
7167
|
SidePanelCollapsible: typeof SidePanelCollapsible;
|
|
@@ -7151,8 +7194,6 @@ declare class GaugeChartDesignPanel extends Component<Props$N, SpreadsheetChildE
|
|
|
7151
7194
|
declare class LineConfigPanel extends GenericChartConfigPanel {
|
|
7152
7195
|
static template: string;
|
|
7153
7196
|
get canTreatLabelsAsText(): boolean;
|
|
7154
|
-
get stackedLabel(): string;
|
|
7155
|
-
get cumulativeLabel(): string;
|
|
7156
7197
|
getLabelRangeOptions(): {
|
|
7157
7198
|
name: string;
|
|
7158
7199
|
label: string;
|
|
@@ -7165,13 +7206,13 @@ declare class LineConfigPanel extends GenericChartConfigPanel {
|
|
|
7165
7206
|
onUpdateCumulative(cumulative: boolean): void;
|
|
7166
7207
|
}
|
|
7167
7208
|
|
|
7168
|
-
interface Props$
|
|
7209
|
+
interface Props$N {
|
|
7169
7210
|
figureId: UID;
|
|
7170
7211
|
definition: ScorecardChartDefinition;
|
|
7171
7212
|
canUpdateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
7172
7213
|
updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
7173
7214
|
}
|
|
7174
|
-
declare class ScorecardChartConfigPanel extends Component<Props$
|
|
7215
|
+
declare class ScorecardChartConfigPanel extends Component<Props$N, SpreadsheetChildEnv> {
|
|
7175
7216
|
static template: string;
|
|
7176
7217
|
static components: {
|
|
7177
7218
|
SelectionInput: typeof SelectionInput;
|
|
@@ -7200,13 +7241,13 @@ declare class ScorecardChartConfigPanel extends Component<Props$M, SpreadsheetCh
|
|
|
7200
7241
|
}
|
|
7201
7242
|
|
|
7202
7243
|
type ColorPickerId = undefined | "backgroundColor" | "baselineColorUp" | "baselineColorDown";
|
|
7203
|
-
interface Props$
|
|
7244
|
+
interface Props$M {
|
|
7204
7245
|
figureId: UID;
|
|
7205
7246
|
definition: ScorecardChartDefinition;
|
|
7206
7247
|
canUpdateChart: (figureID: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
7207
7248
|
updateChart: (figureId: UID, definition: Partial<ScorecardChartDefinition>) => DispatchResult;
|
|
7208
7249
|
}
|
|
7209
|
-
declare class ScorecardChartDesignPanel extends Component<Props$
|
|
7250
|
+
declare class ScorecardChartDesignPanel extends Component<Props$M, SpreadsheetChildEnv> {
|
|
7210
7251
|
static template: string;
|
|
7211
7252
|
static components: {
|
|
7212
7253
|
GeneralDesignEditor: typeof GeneralDesignEditor;
|
|
@@ -7362,13 +7403,13 @@ interface EnrichedToken extends Token {
|
|
|
7362
7403
|
functionContext?: FunctionContext;
|
|
7363
7404
|
}
|
|
7364
7405
|
|
|
7365
|
-
interface Props$
|
|
7406
|
+
interface Props$L {
|
|
7366
7407
|
proposals: AutoCompleteProposal[];
|
|
7367
7408
|
selectedIndex: number | undefined;
|
|
7368
7409
|
onValueSelected: (value: string) => void;
|
|
7369
7410
|
onValueHovered: (index: string) => void;
|
|
7370
7411
|
}
|
|
7371
|
-
declare class TextValueProvider extends Component<Props$
|
|
7412
|
+
declare class TextValueProvider extends Component<Props$L> {
|
|
7372
7413
|
static template: string;
|
|
7373
7414
|
static props: {
|
|
7374
7415
|
proposals: ArrayConstructor;
|
|
@@ -7582,7 +7623,7 @@ declare class ContentEditableHelper {
|
|
|
7582
7623
|
getText(): string;
|
|
7583
7624
|
}
|
|
7584
7625
|
|
|
7585
|
-
interface Props$
|
|
7626
|
+
interface Props$K {
|
|
7586
7627
|
functionName: string;
|
|
7587
7628
|
functionDescription: FunctionDescription;
|
|
7588
7629
|
argToFocus: number;
|
|
@@ -7590,7 +7631,7 @@ interface Props$J {
|
|
|
7590
7631
|
interface AssistantState {
|
|
7591
7632
|
allowCellSelectionBehind: boolean;
|
|
7592
7633
|
}
|
|
7593
|
-
declare class FunctionDescriptionProvider extends Component<Props$
|
|
7634
|
+
declare class FunctionDescriptionProvider extends Component<Props$K, SpreadsheetChildEnv> {
|
|
7594
7635
|
static template: string;
|
|
7595
7636
|
static props: {
|
|
7596
7637
|
functionName: StringConstructor;
|
|
@@ -7600,7 +7641,7 @@ declare class FunctionDescriptionProvider extends Component<Props$J, Spreadsheet
|
|
|
7600
7641
|
assistantState: AssistantState;
|
|
7601
7642
|
private timeOutId;
|
|
7602
7643
|
setup(): void;
|
|
7603
|
-
getContext(): Props$
|
|
7644
|
+
getContext(): Props$K;
|
|
7604
7645
|
onMouseMove(): void;
|
|
7605
7646
|
get formulaArgSeparator(): string;
|
|
7606
7647
|
}
|
|
@@ -7791,10 +7832,10 @@ interface AutoCompleteProviderDefinition {
|
|
|
7791
7832
|
|
|
7792
7833
|
declare function transformRangeData(range: RangeData, executed: CoreCommand): RangeData | undefined;
|
|
7793
7834
|
|
|
7794
|
-
interface Props$
|
|
7835
|
+
interface Props$J {
|
|
7795
7836
|
figure: Figure;
|
|
7796
7837
|
}
|
|
7797
|
-
declare class ChartJsComponent extends Component<Props$
|
|
7838
|
+
declare class ChartJsComponent extends Component<Props$J, SpreadsheetChildEnv> {
|
|
7798
7839
|
static template: string;
|
|
7799
7840
|
static props: {
|
|
7800
7841
|
figure: ObjectConstructor;
|
|
@@ -7810,10 +7851,10 @@ declare class ChartJsComponent extends Component<Props$I, SpreadsheetChildEnv> {
|
|
|
7810
7851
|
private updateChartJs;
|
|
7811
7852
|
}
|
|
7812
7853
|
|
|
7813
|
-
interface Props$
|
|
7854
|
+
interface Props$I {
|
|
7814
7855
|
figure: Figure;
|
|
7815
7856
|
}
|
|
7816
|
-
declare class ScorecardChart extends Component<Props$
|
|
7857
|
+
declare class ScorecardChart extends Component<Props$I, SpreadsheetChildEnv> {
|
|
7817
7858
|
static template: string;
|
|
7818
7859
|
static props: {
|
|
7819
7860
|
figure: ObjectConstructor;
|
|
@@ -7826,7 +7867,7 @@ declare class ScorecardChart extends Component<Props$H, SpreadsheetChildEnv> {
|
|
|
7826
7867
|
}
|
|
7827
7868
|
|
|
7828
7869
|
type MenuItemOrSeparator = Action | "separator";
|
|
7829
|
-
interface Props$
|
|
7870
|
+
interface Props$H {
|
|
7830
7871
|
position: DOMCoordinates;
|
|
7831
7872
|
menuItems: Action[];
|
|
7832
7873
|
depth: number;
|
|
@@ -7844,7 +7885,7 @@ interface MenuState {
|
|
|
7844
7885
|
menuItems: Action[];
|
|
7845
7886
|
isHoveringChild?: boolean;
|
|
7846
7887
|
}
|
|
7847
|
-
declare class Menu extends Component<Props$
|
|
7888
|
+
declare class Menu extends Component<Props$H, SpreadsheetChildEnv> {
|
|
7848
7889
|
static template: string;
|
|
7849
7890
|
static props: {
|
|
7850
7891
|
position: ObjectConstructor;
|
|
@@ -7914,14 +7955,14 @@ declare class Menu extends Component<Props$G, SpreadsheetChildEnv> {
|
|
|
7914
7955
|
}
|
|
7915
7956
|
|
|
7916
7957
|
type ResizeAnchor = "top left" | "top" | "top right" | "right" | "bottom right" | "bottom" | "bottom left" | "left";
|
|
7917
|
-
interface Props$
|
|
7958
|
+
interface Props$G {
|
|
7918
7959
|
figure: Figure;
|
|
7919
7960
|
style: string;
|
|
7920
7961
|
onFigureDeleted: () => void;
|
|
7921
7962
|
onMouseDown: (ev: MouseEvent) => void;
|
|
7922
7963
|
onClickAnchor(dirX: ResizeDirection, dirY: ResizeDirection, ev: MouseEvent): void;
|
|
7923
7964
|
}
|
|
7924
|
-
declare class FigureComponent extends Component<Props$
|
|
7965
|
+
declare class FigureComponent extends Component<Props$G, SpreadsheetChildEnv> {
|
|
7925
7966
|
static template: string;
|
|
7926
7967
|
static props: {
|
|
7927
7968
|
figure: ObjectConstructor;
|
|
@@ -7970,11 +8011,11 @@ declare class FigureComponent extends Component<Props$F, SpreadsheetChildEnv> {
|
|
|
7970
8011
|
private openContextMenu;
|
|
7971
8012
|
}
|
|
7972
8013
|
|
|
7973
|
-
interface Props$
|
|
8014
|
+
interface Props$F {
|
|
7974
8015
|
figure: Figure;
|
|
7975
8016
|
onFigureDeleted: () => void;
|
|
7976
8017
|
}
|
|
7977
|
-
declare class ChartFigure extends Component<Props$
|
|
8018
|
+
declare class ChartFigure extends Component<Props$F, SpreadsheetChildEnv> {
|
|
7978
8019
|
static template: string;
|
|
7979
8020
|
static props: {
|
|
7980
8021
|
figure: ObjectConstructor;
|
|
@@ -7986,7 +8027,7 @@ declare class ChartFigure extends Component<Props$E, SpreadsheetChildEnv> {
|
|
|
7986
8027
|
get chartComponent(): new (...args: any) => Component;
|
|
7987
8028
|
}
|
|
7988
8029
|
|
|
7989
|
-
interface Props$
|
|
8030
|
+
interface Props$E {
|
|
7990
8031
|
isVisible: boolean;
|
|
7991
8032
|
position: Position;
|
|
7992
8033
|
}
|
|
@@ -7998,7 +8039,7 @@ interface State$8 {
|
|
|
7998
8039
|
position: Position;
|
|
7999
8040
|
handler: boolean;
|
|
8000
8041
|
}
|
|
8001
|
-
declare class Autofill extends Component<Props$
|
|
8042
|
+
declare class Autofill extends Component<Props$E, SpreadsheetChildEnv> {
|
|
8002
8043
|
static template: string;
|
|
8003
8044
|
static props: {
|
|
8004
8045
|
position: ObjectConstructor;
|
|
@@ -8032,7 +8073,7 @@ declare class ClientTag extends Component<ClientTagProps, SpreadsheetChildEnv> {
|
|
|
8032
8073
|
get tagStyle(): string;
|
|
8033
8074
|
}
|
|
8034
8075
|
|
|
8035
|
-
interface Props$
|
|
8076
|
+
interface Props$D {
|
|
8036
8077
|
gridDims: DOMDimension;
|
|
8037
8078
|
onInputContextMenu: (event: MouseEvent) => void;
|
|
8038
8079
|
}
|
|
@@ -8040,7 +8081,7 @@ interface Props$C {
|
|
|
8040
8081
|
* This component is a composer which positions itself on the grid at the anchor cell.
|
|
8041
8082
|
* It also applies the style of the cell to the composer input.
|
|
8042
8083
|
*/
|
|
8043
|
-
declare class GridComposer extends Component<Props$
|
|
8084
|
+
declare class GridComposer extends Component<Props$D, SpreadsheetChildEnv> {
|
|
8044
8085
|
static template: string;
|
|
8045
8086
|
static props: {
|
|
8046
8087
|
gridDims: ObjectConstructor;
|
|
@@ -8097,10 +8138,10 @@ declare class GridCellIcon extends Component<GridCellIconProps, SpreadsheetChild
|
|
|
8097
8138
|
isPositionVisible(position: CellPosition): boolean;
|
|
8098
8139
|
}
|
|
8099
8140
|
|
|
8100
|
-
interface Props$
|
|
8141
|
+
interface Props$C {
|
|
8101
8142
|
cellPosition: CellPosition;
|
|
8102
8143
|
}
|
|
8103
|
-
declare class DataValidationCheckbox extends Component<Props$
|
|
8144
|
+
declare class DataValidationCheckbox extends Component<Props$C, SpreadsheetChildEnv> {
|
|
8104
8145
|
static template: string;
|
|
8105
8146
|
static props: {
|
|
8106
8147
|
cellPosition: ObjectConstructor;
|
|
@@ -8110,10 +8151,10 @@ declare class DataValidationCheckbox extends Component<Props$B, SpreadsheetChild
|
|
|
8110
8151
|
get isDisabled(): boolean;
|
|
8111
8152
|
}
|
|
8112
8153
|
|
|
8113
|
-
interface Props$
|
|
8154
|
+
interface Props$B {
|
|
8114
8155
|
cellPosition: CellPosition;
|
|
8115
8156
|
}
|
|
8116
|
-
declare class DataValidationListIcon extends Component<Props$
|
|
8157
|
+
declare class DataValidationListIcon extends Component<Props$B, SpreadsheetChildEnv> {
|
|
8117
8158
|
static template: string;
|
|
8118
8159
|
static props: {
|
|
8119
8160
|
cellPosition: ObjectConstructor;
|
|
@@ -8143,7 +8184,7 @@ interface SnapLine<T extends HFigureAxisType | VFigureAxisType> {
|
|
|
8143
8184
|
}
|
|
8144
8185
|
|
|
8145
8186
|
type ContainerType = "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "dnd";
|
|
8146
|
-
interface Props$
|
|
8187
|
+
interface Props$A {
|
|
8147
8188
|
onFigureDeleted: () => void;
|
|
8148
8189
|
}
|
|
8149
8190
|
interface Container {
|
|
@@ -8222,7 +8263,7 @@ interface DndState {
|
|
|
8222
8263
|
* that occurred during the drag & drop, and to position the figure on the correct pane.
|
|
8223
8264
|
*
|
|
8224
8265
|
*/
|
|
8225
|
-
declare class FiguresContainer extends Component<Props$
|
|
8266
|
+
declare class FiguresContainer extends Component<Props$A, SpreadsheetChildEnv> {
|
|
8226
8267
|
static template: string;
|
|
8227
8268
|
static props: {
|
|
8228
8269
|
onFigureDeleted: FunctionConstructor;
|
|
@@ -8277,10 +8318,10 @@ declare class CellPopoverStore extends SpreadsheetStore {
|
|
|
8277
8318
|
private computePopoverAnchorRect;
|
|
8278
8319
|
}
|
|
8279
8320
|
|
|
8280
|
-
interface Props$
|
|
8321
|
+
interface Props$z {
|
|
8281
8322
|
cellPosition: CellPosition;
|
|
8282
8323
|
}
|
|
8283
|
-
declare class FilterIcon extends Component<Props$
|
|
8324
|
+
declare class FilterIcon extends Component<Props$z, SpreadsheetChildEnv> {
|
|
8284
8325
|
static template: string;
|
|
8285
8326
|
static props: {
|
|
8286
8327
|
cellPosition: ObjectConstructor;
|
|
@@ -8302,10 +8343,10 @@ declare class FilterIconsOverlay extends Component<{}, SpreadsheetChildEnv> {
|
|
|
8302
8343
|
getFilterHeadersPositions(): CellPosition[];
|
|
8303
8344
|
}
|
|
8304
8345
|
|
|
8305
|
-
interface Props$
|
|
8346
|
+
interface Props$y {
|
|
8306
8347
|
focusGrid: () => void;
|
|
8307
8348
|
}
|
|
8308
|
-
declare class GridAddRowsFooter extends Component<Props$
|
|
8349
|
+
declare class GridAddRowsFooter extends Component<Props$y, SpreadsheetChildEnv> {
|
|
8309
8350
|
static template: string;
|
|
8310
8351
|
static props: {
|
|
8311
8352
|
focusGrid: FunctionConstructor;
|
|
@@ -8329,7 +8370,7 @@ declare class GridAddRowsFooter extends Component<Props$x, SpreadsheetChildEnv>
|
|
|
8329
8370
|
private onExternalClick;
|
|
8330
8371
|
}
|
|
8331
8372
|
|
|
8332
|
-
interface Props$
|
|
8373
|
+
interface Props$x {
|
|
8333
8374
|
onCellHovered: (position: Partial<Position$1>) => void;
|
|
8334
8375
|
onCellDoubleClicked: (col: HeaderIndex, row: HeaderIndex) => void;
|
|
8335
8376
|
onCellClicked: (col: HeaderIndex, row: HeaderIndex, modifiers: GridClickModifiers) => void;
|
|
@@ -8339,7 +8380,7 @@ interface Props$w {
|
|
|
8339
8380
|
gridOverlayDimensions: string;
|
|
8340
8381
|
onFigureDeleted: () => void;
|
|
8341
8382
|
}
|
|
8342
|
-
declare class GridOverlay extends Component<Props$
|
|
8383
|
+
declare class GridOverlay extends Component<Props$x, SpreadsheetChildEnv> {
|
|
8343
8384
|
static template: string;
|
|
8344
8385
|
static props: {
|
|
8345
8386
|
onCellHovered: {
|
|
@@ -8396,12 +8437,12 @@ declare class GridOverlay extends Component<Props$w, SpreadsheetChildEnv> {
|
|
|
8396
8437
|
private getCartesianCoordinates;
|
|
8397
8438
|
}
|
|
8398
8439
|
|
|
8399
|
-
interface Props$
|
|
8440
|
+
interface Props$w {
|
|
8400
8441
|
gridRect: Rect;
|
|
8401
8442
|
onClosePopover: () => void;
|
|
8402
8443
|
onMouseWheel: (ev: WheelEvent) => void;
|
|
8403
8444
|
}
|
|
8404
|
-
declare class GridPopover extends Component<Props$
|
|
8445
|
+
declare class GridPopover extends Component<Props$w, SpreadsheetChildEnv> {
|
|
8405
8446
|
static template: string;
|
|
8406
8447
|
static props: {
|
|
8407
8448
|
onClosePopover: FunctionConstructor;
|
|
@@ -8544,13 +8585,13 @@ declare class HeadersOverlay extends Component<any, SpreadsheetChildEnv> {
|
|
|
8544
8585
|
}
|
|
8545
8586
|
|
|
8546
8587
|
type Orientation$1 = "n" | "s" | "w" | "e";
|
|
8547
|
-
interface Props$
|
|
8588
|
+
interface Props$v {
|
|
8548
8589
|
zone: Zone;
|
|
8549
8590
|
orientation: Orientation$1;
|
|
8550
8591
|
isMoving: boolean;
|
|
8551
8592
|
onMoveHighlight: (x: Pixel, y: Pixel) => void;
|
|
8552
8593
|
}
|
|
8553
|
-
declare class Border extends Component<Props$
|
|
8594
|
+
declare class Border extends Component<Props$v, SpreadsheetChildEnv> {
|
|
8554
8595
|
static template: string;
|
|
8555
8596
|
static props: {
|
|
8556
8597
|
zone: ObjectConstructor;
|
|
@@ -8563,14 +8604,14 @@ declare class Border extends Component<Props$u, SpreadsheetChildEnv> {
|
|
|
8563
8604
|
}
|
|
8564
8605
|
|
|
8565
8606
|
type Orientation = "nw" | "ne" | "sw" | "se";
|
|
8566
|
-
interface Props$
|
|
8607
|
+
interface Props$u {
|
|
8567
8608
|
zone: Zone;
|
|
8568
8609
|
color: Color;
|
|
8569
8610
|
orientation: Orientation;
|
|
8570
8611
|
isResizing: boolean;
|
|
8571
8612
|
onResizeHighlight: (isLeft: boolean, isRight: boolean) => void;
|
|
8572
8613
|
}
|
|
8573
|
-
declare class Corner extends Component<Props$
|
|
8614
|
+
declare class Corner extends Component<Props$u, SpreadsheetChildEnv> {
|
|
8574
8615
|
static template: string;
|
|
8575
8616
|
static props: {
|
|
8576
8617
|
zone: ObjectConstructor;
|
|
@@ -8585,14 +8626,14 @@ declare class Corner extends Component<Props$t, SpreadsheetChildEnv> {
|
|
|
8585
8626
|
onMouseDown(ev: MouseEvent): void;
|
|
8586
8627
|
}
|
|
8587
8628
|
|
|
8588
|
-
interface Props$
|
|
8629
|
+
interface Props$t {
|
|
8589
8630
|
zone: Zone;
|
|
8590
8631
|
color: Color;
|
|
8591
8632
|
}
|
|
8592
8633
|
interface HighlightState {
|
|
8593
8634
|
shiftingMode: "isMoving" | "isResizing" | "none";
|
|
8594
8635
|
}
|
|
8595
|
-
declare class Highlight extends Component<Props$
|
|
8636
|
+
declare class Highlight extends Component<Props$t, SpreadsheetChildEnv> {
|
|
8596
8637
|
static template: string;
|
|
8597
8638
|
static props: {
|
|
8598
8639
|
zone: ObjectConstructor;
|
|
@@ -8609,7 +8650,7 @@ declare class Highlight extends Component<Props$s, SpreadsheetChildEnv> {
|
|
|
8609
8650
|
|
|
8610
8651
|
type ScrollDirection = "horizontal" | "vertical";
|
|
8611
8652
|
|
|
8612
|
-
interface Props$
|
|
8653
|
+
interface Props$s {
|
|
8613
8654
|
width: Pixel;
|
|
8614
8655
|
height: Pixel;
|
|
8615
8656
|
direction: ScrollDirection;
|
|
@@ -8617,7 +8658,7 @@ interface Props$r {
|
|
|
8617
8658
|
offset: Pixel;
|
|
8618
8659
|
onScroll: (offset: Pixel) => void;
|
|
8619
8660
|
}
|
|
8620
|
-
declare class ScrollBar extends Component<Props$
|
|
8661
|
+
declare class ScrollBar extends Component<Props$s> {
|
|
8621
8662
|
static props: {
|
|
8622
8663
|
width: {
|
|
8623
8664
|
type: NumberConstructor;
|
|
@@ -8645,10 +8686,10 @@ declare class ScrollBar extends Component<Props$r> {
|
|
|
8645
8686
|
onScroll(ev: any): void;
|
|
8646
8687
|
}
|
|
8647
8688
|
|
|
8648
|
-
interface Props$
|
|
8689
|
+
interface Props$r {
|
|
8649
8690
|
leftOffset: number;
|
|
8650
8691
|
}
|
|
8651
|
-
declare class HorizontalScrollBar extends Component<Props$
|
|
8692
|
+
declare class HorizontalScrollBar extends Component<Props$r, SpreadsheetChildEnv> {
|
|
8652
8693
|
static props: {
|
|
8653
8694
|
leftOffset: {
|
|
8654
8695
|
type: NumberConstructor;
|
|
@@ -8674,10 +8715,10 @@ declare class HorizontalScrollBar extends Component<Props$q, SpreadsheetChildEnv
|
|
|
8674
8715
|
onScroll(offset: any): void;
|
|
8675
8716
|
}
|
|
8676
8717
|
|
|
8677
|
-
interface Props$
|
|
8718
|
+
interface Props$q {
|
|
8678
8719
|
topOffset: number;
|
|
8679
8720
|
}
|
|
8680
|
-
declare class VerticalScrollBar extends Component<Props$
|
|
8721
|
+
declare class VerticalScrollBar extends Component<Props$q, SpreadsheetChildEnv> {
|
|
8681
8722
|
static props: {
|
|
8682
8723
|
topOffset: {
|
|
8683
8724
|
type: NumberConstructor;
|
|
@@ -8703,13 +8744,13 @@ declare class VerticalScrollBar extends Component<Props$p, SpreadsheetChildEnv>
|
|
|
8703
8744
|
onScroll(offset: any): void;
|
|
8704
8745
|
}
|
|
8705
8746
|
|
|
8706
|
-
interface Props$
|
|
8747
|
+
interface Props$p {
|
|
8707
8748
|
table: Table;
|
|
8708
8749
|
}
|
|
8709
8750
|
interface State$7 {
|
|
8710
8751
|
highlightZone: Zone | undefined;
|
|
8711
8752
|
}
|
|
8712
|
-
declare class TableResizer extends Component<Props$
|
|
8753
|
+
declare class TableResizer extends Component<Props$p, SpreadsheetChildEnv> {
|
|
8713
8754
|
static template: string;
|
|
8714
8755
|
static props: {
|
|
8715
8756
|
table: ObjectConstructor;
|
|
@@ -8741,10 +8782,10 @@ declare class HoveredCellStore extends SpreadsheetStore {
|
|
|
8741
8782
|
* - a vertical resizer (same, for rows)
|
|
8742
8783
|
*/
|
|
8743
8784
|
type ContextMenuType = "ROW" | "COL" | "CELL" | "FILTER" | "GROUP_HEADERS" | "UNGROUP_HEADERS";
|
|
8744
|
-
interface Props$
|
|
8785
|
+
interface Props$o {
|
|
8745
8786
|
exposeFocus: (focus: () => void) => void;
|
|
8746
8787
|
}
|
|
8747
|
-
declare class Grid extends Component<Props$
|
|
8788
|
+
declare class Grid extends Component<Props$o, SpreadsheetChildEnv> {
|
|
8748
8789
|
static template: string;
|
|
8749
8790
|
static props: {
|
|
8750
8791
|
exposeFocus: FunctionConstructor;
|
|
@@ -8850,7 +8891,50 @@ declare class MainChartPanelStore extends SpreadsheetStore {
|
|
|
8850
8891
|
panel: "configuration" | "design";
|
|
8851
8892
|
private creationContext;
|
|
8852
8893
|
activatePanel(panel: "configuration" | "design"): void;
|
|
8853
|
-
changeChartType(figureId: UID,
|
|
8894
|
+
changeChartType(figureId: UID, newDisplayType: string): void;
|
|
8895
|
+
private getChartDefinitionFromContextCreation;
|
|
8896
|
+
}
|
|
8897
|
+
|
|
8898
|
+
interface Props$n {
|
|
8899
|
+
figureId: UID;
|
|
8900
|
+
chartPanelStore: MainChartPanelStore;
|
|
8901
|
+
}
|
|
8902
|
+
interface ChartTypePickerState {
|
|
8903
|
+
popoverProps: PopoverProps | undefined;
|
|
8904
|
+
popoverStyle: string;
|
|
8905
|
+
}
|
|
8906
|
+
declare class ChartTypePicker extends Component<Props$n, SpreadsheetChildEnv> {
|
|
8907
|
+
static template: string;
|
|
8908
|
+
static components: {
|
|
8909
|
+
Section: typeof Section;
|
|
8910
|
+
Popover: typeof Popover;
|
|
8911
|
+
};
|
|
8912
|
+
static props: {
|
|
8913
|
+
figureId: StringConstructor;
|
|
8914
|
+
chartPanelStore: ObjectConstructor;
|
|
8915
|
+
};
|
|
8916
|
+
categories: {
|
|
8917
|
+
line: string;
|
|
8918
|
+
column: string;
|
|
8919
|
+
bar: string;
|
|
8920
|
+
pie: string;
|
|
8921
|
+
misc: string;
|
|
8922
|
+
};
|
|
8923
|
+
chartTypeByCategories: Record<string, ChartSubtypeProperties[]>;
|
|
8924
|
+
popoverRef: {
|
|
8925
|
+
el: HTMLElement | null;
|
|
8926
|
+
};
|
|
8927
|
+
selectRef: {
|
|
8928
|
+
el: HTMLElement | null;
|
|
8929
|
+
};
|
|
8930
|
+
state: ChartTypePickerState;
|
|
8931
|
+
setup(): void;
|
|
8932
|
+
onExternalClick(ev: MouseEvent): void;
|
|
8933
|
+
onTypeChange(type: ChartType): void;
|
|
8934
|
+
private getChartDefinition;
|
|
8935
|
+
getSelectedChartSubtypeProperties(): ChartSubtypeProperties;
|
|
8936
|
+
onPointerDown(ev: PointerEvent): void;
|
|
8937
|
+
private closePopover;
|
|
8854
8938
|
}
|
|
8855
8939
|
|
|
8856
8940
|
interface Props$m {
|
|
@@ -8861,6 +8945,7 @@ declare class ChartPanel extends Component<Props$m, SpreadsheetChildEnv> {
|
|
|
8861
8945
|
static template: string;
|
|
8862
8946
|
static components: {
|
|
8863
8947
|
Section: typeof Section;
|
|
8948
|
+
ChartTypePicker: typeof ChartTypePicker;
|
|
8864
8949
|
};
|
|
8865
8950
|
static props: {
|
|
8866
8951
|
onCloseSidePanel: FunctionConstructor;
|
|
@@ -8874,7 +8959,6 @@ declare class ChartPanel extends Component<Props$m, SpreadsheetChildEnv> {
|
|
|
8874
8959
|
onTypeChange(type: ChartType): void;
|
|
8875
8960
|
get chartPanel(): ChartSidePanel;
|
|
8876
8961
|
private getChartDefinition;
|
|
8877
|
-
get chartTypes(): Record<string, string>;
|
|
8878
8962
|
}
|
|
8879
8963
|
|
|
8880
8964
|
interface Props$l {
|
|
@@ -8990,6 +9074,7 @@ declare class FindAndReplaceStore extends SpreadsheetStore implements HighlightP
|
|
|
8990
9074
|
* Apply the replace function to all the matches one time.
|
|
8991
9075
|
*/
|
|
8992
9076
|
replaceAll(): void;
|
|
9077
|
+
private replaceMatch;
|
|
8993
9078
|
private getSearchableString;
|
|
8994
9079
|
get highlights(): Highlight$1[];
|
|
8995
9080
|
}
|
|
@@ -9294,8 +9379,9 @@ declare function getChartAxisTitleRuntime(design?: AxisDesign): {
|
|
|
9294
9379
|
/**
|
|
9295
9380
|
* Get a default chart js configuration
|
|
9296
9381
|
*/
|
|
9297
|
-
declare function getDefaultChartJsRuntime(chart: AbstractChart, labels: string[], fontColor: Color,
|
|
9382
|
+
declare function getDefaultChartJsRuntime(chart: AbstractChart, labels: string[], fontColor: Color, args: LocaleFormat & {
|
|
9298
9383
|
truncateLabels?: boolean;
|
|
9384
|
+
horizontalChart?: boolean;
|
|
9299
9385
|
}): Required<ChartConfiguration>;
|
|
9300
9386
|
/** See https://www.chartjs.org/docs/latest/charts/area.html#filling-modes */
|
|
9301
9387
|
declare function getFillingMode(index: number): "origin" | number;
|
|
@@ -10340,6 +10426,7 @@ declare const registries: {
|
|
|
10340
10426
|
chartSidePanelComponentRegistry: Registry<ChartSidePanel>;
|
|
10341
10427
|
chartComponentRegistry: Registry<new (...args: any) => _odoo_owl.Component<any, any>>;
|
|
10342
10428
|
chartRegistry: Registry<ChartBuilder>;
|
|
10429
|
+
chartSubtypeRegistry: Registry<ChartSubtypeProperties>;
|
|
10343
10430
|
topbarMenuRegistry: MenuItemRegistry;
|
|
10344
10431
|
topbarComponentRegistry: {
|
|
10345
10432
|
mapping: {
|
|
@@ -11339,6 +11426,7 @@ declare const components: {
|
|
|
11339
11426
|
GaugeChartDesignPanel: typeof GaugeChartDesignPanel;
|
|
11340
11427
|
ScorecardChartConfigPanel: typeof ScorecardChartConfigPanel;
|
|
11341
11428
|
ScorecardChartDesignPanel: typeof ScorecardChartDesignPanel;
|
|
11429
|
+
ChartTypePicker: typeof ChartTypePicker;
|
|
11342
11430
|
FigureComponent: typeof FigureComponent;
|
|
11343
11431
|
Menu: typeof Menu;
|
|
11344
11432
|
Popover: typeof Popover;
|
|
@@ -11395,6 +11483,30 @@ declare const constants: {
|
|
|
11395
11483
|
bandedColumns: boolean;
|
|
11396
11484
|
styleId: string;
|
|
11397
11485
|
};
|
|
11486
|
+
ChartTerms: {
|
|
11487
|
+
Series: string;
|
|
11488
|
+
BackgroundColor: string;
|
|
11489
|
+
StackedBarChart: string;
|
|
11490
|
+
StackedLineChart: string;
|
|
11491
|
+
CumulativeData: string;
|
|
11492
|
+
TreatLabelsAsText: string;
|
|
11493
|
+
AggregatedChart: string;
|
|
11494
|
+
Errors: {
|
|
11495
|
+
Unexpected: string;
|
|
11496
|
+
InvalidDataSet: string;
|
|
11497
|
+
InvalidLabelRange: string;
|
|
11498
|
+
InvalidScorecardKeyValue: string;
|
|
11499
|
+
InvalidScorecardBaseline: string;
|
|
11500
|
+
InvalidGaugeDataRange: string;
|
|
11501
|
+
EmptyGaugeRangeMin: string;
|
|
11502
|
+
GaugeRangeMinNaN: string;
|
|
11503
|
+
EmptyGaugeRangeMax: string;
|
|
11504
|
+
GaugeRangeMaxNaN: string;
|
|
11505
|
+
GaugeRangeMinBiggerThanRangeMax: string;
|
|
11506
|
+
GaugeLowerInflectionPointNaN: string;
|
|
11507
|
+
GaugeUpperInflectionPointNaN: string;
|
|
11508
|
+
};
|
|
11509
|
+
};
|
|
11398
11510
|
};
|
|
11399
11511
|
|
|
11400
|
-
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePaintFormatCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, 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, BorderDescription, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelPaintFormatCommand, CancelledReason, Cell, CellData, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartType, ChartWithAxisDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardContent, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, Dependencies, Dimension, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluatedCell, EvaluationError, ExcelCellData, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, FPayload, FPayloadNumber, Figure, FigureData, FigureSize, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, GeneratorCell, 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, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, Offset, OperationSequenceNode, OrderedLayers, PLAIN_TEXT_FORMAT, PaneDivision, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotNode, PivotRuntimeDefinition, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotValueCell, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, RevisionsDroppedEvent, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetScrollInfo, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableConfig, TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, borderStyles, canExecuteInReadonly, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|
|
11512
|
+
export { AST, ASTFuncall, AboveAverageRule, AbstractCellClipboardHandler, AbstractChart, AbstractFigureClipboardHandler, ActivateNextSheetCommand, ActivatePaintFormatCommand, ActivatePreviousSheetCommand, ActivateSheetCommand, AddColumnsRowsCommand, AddConditionalFormatCommand, AddDataValidationCommand, AddFunctionDescription, AddMergeCommand, AddPivotCommand, Aggregator, Alias, Align, AlphanumericIncrementModifier, 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, BorderDescription, BorderPosition, BorderStyle, Box, BoxTextContent, CHART_TYPES, CSSProperties, CancelPaintFormatCommand, CancelledReason, Cell, CellData, CellErrorType, CellIsRule, CellPosition, CellValue, CellValueType, ChangeType, ChartCreationContext, ChartDefinition, ChartJSRuntime, ChartRuntime, ChartType, ChartWithAxisDefinition, CleanClipBoardHighlightCommand, ClearCellCommand, ClearFormattingCommand, Client, ClientId, ClientJoinedMessage, ClientLeftMessage, ClientMovedMessage, ClientPosition, ClipboardCell, ClipboardCellData, ClipboardContent, ClipboardData, ClipboardFigureData, ClipboardMIMEType, ClipboardOperation, ClipboardOptions, ClipboardPasteOptions, ClipboardPasteTarget, Cloneable, CollaborationMessage, CollaborativeEvent, CollaborativeEventReceived, CollaborativeEventTypes, Color, ColorScaleMidPointThreshold, ColorScaleRule, ColorScaleThreshold, Command, CommandDispatcher, CommandHandler, CommandResult, CommandTypes, CommonPivotCoreDefinition, CompiledFormula, ComputeFunction, ComputedTableStyle, ConditionalFormat, ConditionalFormatInternal, ConditionalFormatRule, ConditionalFormattingOperatorValues, ConsecutiveIndexes, ContainsTextRule, CopyCommand, CopyModifier, CopyPasteCellsAboveCommand, CopyPasteCellsOnLeftCommand, CoreCommand, CoreCommandDispatcher, CoreCommandTypes, CoreGetters, CorePlugin, CoreTable, CoreTableType, CoreViewCommand, CoreViewCommandTypes, CreateChartCommand, CreateFigureCommand, CreateImageOverCommand, CreateRevisionOptions, CreateSheetCommand, CreateTableCommand, CreateTableStyleCommand, Currency, CustomFormulaCriterion, CustomizedDataSet, CutCommand, DEFAULT_LOCALE, DEFAULT_LOCALES, DIRECTION, DOMCoordinates, DOMDimension, DataSet, DataValidationCriterion, DataValidationCriterionType, DataValidationDateCriterion, DataValidationRule, DataValidationRuleData, DatasetDesign, DatasetValues, DateCriterionValue, DateIsAfterCriterion, DateIsBeforeCriterion, DateIsBetweenCriterion, DateIsCriterion, DateIsNotBetweenCriterion, DateIsOnOrAfterCriterion, DateIsOnOrBeforeCriterion, DateIsValidCriterion, DebouncedFunction, DeleteCellCommand, DeleteContentCommand, DeleteFigureCommand, DeleteSheetCommand, Dependencies, Dimension, Direction$1 as Direction, DispatchResult, DuplicatePivotCommand, DuplicateSheetCommand, DynamicTable, EdgeScrollInfo, EditTextOptions, EmptyCell, EndsWithRule, EnrichedToken, EnsureRange, ErrorCell, EvalContext, EvaluateCellsCommand, EvaluatedCell, EvaluationError, ExcelCellData, ExcelChartDataset, ExcelChartDefinition, ExcelChartType, ExcelFigureSize, ExcelFilterData, ExcelHeaderData, ExcelSheetData, ExcelTableData, ExcelWorkbookData, ExpressionRule, FPayload, FPayloadNumber, Figure, FigureData, FigureSize, Filter, FilterId, FoldAllHeaderGroupsCommand, FoldHeaderGroupCommand, FoldHeaderGroupsInZoneCommand, Format, FormattedValue, FormulaCell, FormulaModifier, FormulaToExecute, FreezeColumnsCommand, FreezeRowsCommand, FunctionDescription, FunctionRegistry, GeneratorCell, 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, IsBetweenCriterion, IsCheckboxCriterion, IsEqualCriterion, IsGreaterOrEqualToCriterion, IsGreaterThanCriterion, IsLessOrEqualToCriterion, IsLessThanCriterion, IsNotBetweenCriterion, IsNotEqualCriterion, IsValueInListCriterion, IsValueInRangeCriterion, LabelValues, LayerName, Lazy, Link, LiteralCell, LocalCommand, Locale, LocaleCode, LocaleFormat, Matrix, Maybe, MenuMouseEvent, Merge, Model, MoveColumnsRowsCommand, MoveConditionalFormatCommand, MoveRangeCommand, MoveSheetCommand, MoveViewportDownCommand, MoveViewportToCellCommand, MoveViewportUpCommand, NewLocalStateUpdateEvent, NotContainsTextRule, NotificationType, NumberCell, Offset, OperationSequenceNode, OrderedLayers, PLAIN_TEXT_FORMAT, PaneDivision, PasteCommand, PasteFromOSClipboardCommand, Pivot, PivotCoreDefinition, PivotCoreDimension, PivotCoreMeasure, PivotDimension$1 as PivotDimension, PivotDomain, PivotEmptyCell, PivotField, PivotFields, PivotHeaderCell, PivotMeasure, PivotMeasureHeaderCell, PivotNode, PivotRuntimeDefinition, PivotTableCell, PivotTableColumn, PivotTableData, PivotTableRow, PivotTimeAdapter, PivotValueCell, Pixel, PixelPosition, Position$1 as Position, PositionDependentCommand, PropsOf, RGBA, Range, RangeCompiledFormula, RangeData, RangePart, RangeProvider, RangesDependentCommand, Rect, RedoCommand, Ref, ReferenceDenormalizer, RefreshPivotCommand, Registry, RemoteRevisionMessage, RemoteRevisionReceivedEvent, RemoveColumnsRowsCommand, RemoveConditionalFormatCommand, RemoveDataValidationCommand, RemoveDuplicatesCommand, RemoveMergeCommand, RemovePivotCommand, RemoveTableCommand, RemoveTableStyleCommand, RenamePivotCommand, RenameSheetCommand, RepeatPasteCommand, ReplaceSearchCommand, RequestRedoCommand, RequestUndoCommand, ResizeColumnsRowsCommand, ResizeDirection, ResizeTableCommand, ResizeViewportCommand, Revision, RevisionAcknowledgedEvent, RevisionData, RevisionRedone, RevisionRedoneMessage, RevisionUndone, RevisionUndoneMessage, RevisionsDroppedEvent, Row, SPREADSHEET_DIMENSIONS, ScrollDirection$1 as ScrollDirection, SelectFigureCommand, Selection, SelectionStep, SetBorderCommand, SetDecimalCommand, SetDecimalStep, SetFormattingCommand, SetGridLinesVisibilityCommand, SetViewportOffsetCommand, SetZoneBordersCommand, Sheet, SheetDOMScrollInfo, SheetData, SheetDependentCommand, SheetScrollInfo, ShowFormulaCommand, ShowSheetCommand, SingleColorRule, SingleColorRules, SnapshotEvent, SortCommand, SortDirection, SortOptions, SplitTextIntoColumnsCommand, Spreadsheet, SpreadsheetChildEnv, SpreadsheetPivotCoreDefinition, SpreadsheetPivotTable, StartChangeHighlightCommand, StartCommand, StaticTable, StoreConstructor, StoreParams, Style, SumSelectionCommand, Table, TableConfig, TableData, TableElementStyle, TableId, TableStyle, TableStyleData, TableStyleTemplateName, TargetDependentCommand, TechnicalName, TextCell, TextContainsCriterion, TextIsCriterion, TextIsEmailCriterion, TextIsLinkCriterion, TextNotContainsCriterion, TextRule, ThresholdType, TimePeriodRule, TitleDesign, Token, Tooltip, Top10Rule, Transformation, TransformationFactory, TransportService, TrimWhitespaceCommand, UID, UIPlugin, UnGroupHeadersCommand, UnboundedZone, UndoCommand, UnexpectedRevisionIdEvent, UnfoldAllHeaderGroupsCommand, UnfoldHeaderGroupCommand, UnfoldHeaderGroupsInZoneCommand, UnfreezeColumnsCommand, UnfreezeColumnsRowsCommand, UnfreezeRowsCommand, UnhideColumnsRowsCommand, UpdateCellCommand, UpdateCellData, UpdateCellPositionCommand, UpdateChartCommand, UpdateFigureCommand, UpdateFilterCommand, UpdateLocaleCommand, UpdatePivotCommand, UpdateTableCommand, Validation, VerticalAlign, Viewport, WorkbookData, WorkbookHistory, Wrapping, Zone, ZoneDependentCommand, ZoneDimension, __info__, addFunction, addRenderingLayer, astToFormula, borderStyles, canExecuteInReadonly, compile, compileTokens, components, constants, containsBlanksRule, containsErrorsRule, convertAstNodes, coreTypes, findCellInNewZone, functionCache, helpers, hooks, invalidateBordersCommands, invalidateCFEvaluationCommands, invalidateDependenciesCommands, invalidateEvaluationCommands, isCoreCommand, isHeadersDependant, isMatrix, isPositionDependent, isRangeDependant, isSheetDependent, isTargetDependent, isZoneDependent, iterateAstNodes, links, load, notContainsBlanksRule, notContainsErrorsRule, parse, parseTokens, readonlyAllowedCommands, registries, setDefaultSheetViewSize, setTranslationMethod, stores, tokenColors, tokenize };
|