@odoo/o-spreadsheet 19.5.0-alpha.0 → 19.5.0-alpha.10
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 +54635 -52850
- package/dist/o_spreadsheet.css +95 -44
- package/dist/o_spreadsheet.esm.js +54380 -52595
- package/dist/o_spreadsheet.iife.js +54407 -52622
- package/dist/o_spreadsheet.min.iife.js +403 -403
- package/dist/o_spreadsheet.xml +290 -167
- package/dist/types/actions/action.d.ts +1 -7
- package/dist/types/actions/data_actions.d.ts +1 -0
- package/dist/types/actions/menu_items_actions.d.ts +2 -0
- package/dist/types/clipboard_handlers/default_clipboard.d.ts +1 -1
- package/dist/types/collaborative/ot/ot_helpers.d.ts +3 -1
- package/dist/types/components/autofill/autofill.d.ts +3 -0
- package/dist/types/{plugins/ui_feature/autofill.d.ts → components/autofill/autofill_store.d.ts} +7 -12
- package/dist/types/components/autofill/table_autofill_store.d.ts +6 -0
- package/dist/types/components/border_editor/border_editor_widget.d.ts +1 -0
- package/dist/types/components/clickable_cells_overlay/clickable_cells_overlay.d.ts +20 -0
- package/dist/types/components/collaborative_client_tag/collaborative_client_tag.d.ts +2 -0
- package/dist/types/components/composer/composer/abstract_composer_store.d.ts +3 -2
- package/dist/types/components/composer/composer/composer.d.ts +2 -1
- package/dist/types/components/composer/grid_composer/grid_composer.d.ts +1 -0
- package/dist/types/components/dashboard/clickable_cell_store.d.ts +1 -0
- package/dist/types/components/dashboard/dashboard.d.ts +7 -12
- package/dist/types/components/error_tooltip/error_tooltip.d.ts +2 -0
- package/dist/types/components/figures/chart/chartJs/chartjs_geo_projection_plugin.d.ts +12 -0
- package/dist/types/components/figures/chart/gauge/gauge_chart_component.d.ts +1 -0
- package/dist/types/components/figures/chart/scorecard/chart_scorecard.d.ts +3 -0
- package/dist/types/components/figures/figure/figure.d.ts +8 -9
- package/dist/types/components/figures/figure_carousel/figure_carousel.d.ts +7 -2
- package/dist/types/components/figures/figure_chart/figure_chart.d.ts +1 -2
- package/dist/types/components/figures/figure_container/figure_container.d.ts +4 -2
- package/dist/types/components/figures/figure_image/figure_image.d.ts +1 -2
- package/dist/types/components/filters/filter_menu/filter_menu.d.ts +1 -0
- package/dist/types/components/grid/grid.d.ts +8 -0
- package/dist/types/components/grid_add_rows_footer/grid_add_rows_footer.d.ts +1 -0
- package/dist/types/components/grid_overlay/grid_overlay.d.ts +6 -4
- package/dist/types/components/grid_popover/grid_popover.d.ts +1 -0
- package/dist/types/components/header_group/header_group_container.d.ts +2 -0
- package/dist/types/components/headers_overlay/headers_overlay.d.ts +3 -0
- package/dist/types/components/headers_overlay/unhide_headers.d.ts +4 -0
- package/dist/types/components/helpers/dom_helpers.d.ts +2 -0
- package/dist/types/components/helpers/figure_snap_helper.d.ts +3 -3
- package/dist/types/components/helpers/wheel_hook.d.ts +1 -1
- package/dist/types/components/helpers/zoom.d.ts +1 -5
- package/dist/types/components/highlight/border/border.d.ts +2 -0
- package/dist/types/components/highlight/corner/corner.d.ts +1 -0
- package/dist/types/components/highlight/highlight/highlight.d.ts +3 -0
- package/dist/types/components/link/link_display/link_display.d.ts +1 -0
- package/dist/types/components/link/link_editor/link_editor.d.ts +1 -0
- package/dist/types/components/paint_format_button/paint_format_store.d.ts +1 -1
- package/dist/types/components/popover/cell_popover_store.d.ts +2 -1
- package/dist/types/components/props_validation.d.ts +7 -7
- package/dist/types/components/scrollbar/scrollbar_horizontal.d.ts +3 -0
- package/dist/types/components/scrollbar/scrollbar_vertical.d.ts +5 -1
- package/dist/types/components/selection_input/selection_input_store.d.ts +1 -1
- package/dist/types/components/side_panel/carousel_panel/carousel_panel.d.ts +20 -2
- package/dist/types/components/side_panel/chart/building_blocks/chart_title/chart_title.d.ts +1 -0
- package/dist/types/components/side_panel/chart/chart_type_picker/chart_type_picker.d.ts +5 -18
- package/dist/types/components/side_panel/chart/chart_type_picker_popover/chart_type_picker_popover.d.ts +64 -0
- package/dist/types/components/side_panel/chart/common.d.ts +1 -1
- package/dist/types/components/side_panel/conditional_formatting/cf_editor/cell_is_rule_editor.d.ts +1 -1
- package/dist/types/components/side_panel/conditional_formatting/cf_editor/color_scale_rule_editor.d.ts +1 -1
- package/dist/types/components/side_panel/conditional_formatting/cf_editor/color_scale_rule_editor_threshold.d.ts +1 -1
- package/dist/types/components/side_panel/conditional_formatting/cf_editor/data_bar_rule_editor.d.ts +1 -1
- package/dist/types/components/side_panel/conditional_formatting/cf_editor/icon_set_rule_editor.d.ts +1 -1
- package/dist/types/components/side_panel/criterion_form/calendar_button/calendar_button.d.ts +13 -0
- package/dist/types/components/side_panel/criterion_form/date_criterion/date_criterion.d.ts +2 -0
- package/dist/types/components/side_panel/criterion_form/double_input_criterion/double_input_criterion.d.ts +3 -0
- package/dist/types/components/side_panel/data_sources_cleanup/data_sources_cleanup.d.ts +28 -0
- package/dist/types/components/side_panel/data_sources_cleanup/data_sources_cleanup_store.d.ts +13 -0
- package/dist/types/components/side_panel/find_and_replace/find_and_replace_store.d.ts +1 -0
- package/dist/types/components/side_panel/pivot/pivot_layout_configurator/pivot_layout_configurator.d.ts +0 -2
- package/dist/types/components/side_panel/pivot/pivot_side_panel/pivot_side_panel_store.d.ts +1 -0
- package/dist/types/components/side_panel/remove_duplicates/remove_duplicates.d.ts +3 -10
- package/dist/types/components/side_panel/side_panel/side_panel_store.d.ts +1 -1
- package/dist/types/components/side_panel/split_to_columns_panel/split_to_columns_panel.d.ts +4 -11
- package/dist/types/components/side_panel/split_to_columns_panel/split_to_columns_store.d.ts +33 -0
- package/dist/types/components/small_bottom_bar/small_bottom_bar.d.ts +1 -0
- package/dist/types/components/spreadsheet/spreadsheet.d.ts +2 -0
- package/dist/types/components/standalone_grid_canvas/standalone_grid_canvas.d.ts +2 -1
- package/dist/types/components/standalone_viewport/standalone_viewport.d.ts +56 -0
- package/dist/types/components/standalone_viewport/standalone_viewport_store.d.ts +28 -0
- package/dist/types/components/tables/hovered_table_store.d.ts +3 -6
- package/dist/types/components/tables/table_resizer/table_resizer.d.ts +1 -0
- package/dist/types/components/top_bar/zoom_editor/zoom_editor.d.ts +2 -1
- package/dist/types/constants.d.ts +4 -0
- package/dist/types/formulas/code_builder.d.ts +2 -1
- package/dist/types/formulas/compiler.d.ts +7 -0
- package/dist/types/functions/create_compute_function.d.ts +4 -3
- package/dist/types/functions/function_registry.d.ts +1 -5
- package/dist/types/functions/helper_matrices.d.ts +1 -0
- package/dist/types/functions/helper_statistical.d.ts +6 -0
- package/dist/types/functions/module_array.d.ts +41 -23
- package/dist/types/functions/module_database.d.ts +18 -6
- package/dist/types/functions/module_date.d.ts +70 -22
- package/dist/types/functions/module_engineering.d.ts +3 -1
- package/dist/types/functions/module_filter.d.ts +2 -2
- package/dist/types/functions/module_financial.d.ts +105 -35
- package/dist/types/functions/module_info.d.ts +33 -11
- package/dist/types/functions/module_logical.d.ts +16 -8
- package/dist/types/functions/module_lookup.d.ts +23 -15
- package/dist/types/functions/module_math.d.ts +125 -43
- package/dist/types/functions/module_operators.d.ts +7 -3
- package/dist/types/functions/module_statistical.d.ts +78 -22
- package/dist/types/functions/module_text.d.ts +70 -24
- package/dist/types/functions/module_web.d.ts +3 -1
- package/dist/types/helpers/carousel_helpers.d.ts +8 -3
- package/dist/types/helpers/figures/chart.d.ts +2 -0
- package/dist/types/helpers/figures/charts/chart_common.d.ts +0 -2
- package/dist/types/helpers/figures/charts/scorecard_chart_config_builder.d.ts +2 -0
- package/dist/types/helpers/figures/figure/figure.d.ts +3 -2
- package/dist/types/helpers/internal_viewport.d.ts +20 -10
- package/dist/types/helpers/misc.d.ts +2 -0
- package/dist/types/helpers/pivot/pivot_helpers.d.ts +2 -2
- package/dist/types/helpers/pivot/pivot_highlight.d.ts +2 -2
- package/dist/types/helpers/rectangle.d.ts +4 -0
- package/dist/types/helpers/text_helper.d.ts +6 -1
- package/dist/types/helpers/ui/split_to_columns_interactive.d.ts +1 -1
- package/dist/types/helpers/viewport_collection.d.ts +51 -21
- package/dist/types/helpers/zones.d.ts +1 -0
- package/dist/types/index.d.ts +29 -3
- package/dist/types/model.d.ts +1 -0
- package/dist/types/plugins/core/carousel.d.ts +8 -4
- package/dist/types/plugins/core/cell.d.ts +1 -0
- package/dist/types/plugins/core/chart.d.ts +2 -0
- package/dist/types/plugins/core/conditional_format.d.ts +2 -0
- package/dist/types/plugins/core/data_validation.d.ts +2 -0
- package/dist/types/plugins/core/formulas_provider.d.ts +8 -0
- package/dist/types/plugins/core/pivot.d.ts +1 -0
- package/dist/types/plugins/core/squisher.d.ts +1 -0
- package/dist/types/plugins/core_plugin.d.ts +7 -3
- package/dist/types/plugins/ui_core_views/cell_evaluation/evaluation_plugin.d.ts +10 -3
- package/dist/types/plugins/ui_core_views/pivot_ui.d.ts +3 -0
- package/dist/types/plugins/ui_feature/collaborative.d.ts +2 -1
- package/dist/types/plugins/ui_feature/ui_options.d.ts +1 -7
- package/dist/types/plugins/ui_feature/ui_sheet.d.ts +2 -1
- package/dist/types/plugins/ui_stateful/carousel_ui.d.ts +2 -2
- package/dist/types/plugins/{ui_feature → ui_stateful}/figure.d.ts +4 -0
- package/dist/types/plugins/ui_stateful/filter_evaluation.d.ts +2 -3
- package/dist/types/plugins/ui_stateful/header_positions.d.ts +2 -1
- package/dist/types/registries/chart_registry.d.ts +3 -0
- package/dist/types/registries/data_source_registry.d.ts +15 -0
- package/dist/types/registries/figures_registry.d.ts +4 -1
- package/dist/types/store_engine/dependency_container.d.ts +5 -0
- package/dist/types/store_engine/store_hooks.d.ts +6 -0
- package/dist/types/store_engine/store_registries.d.ts +4 -0
- package/dist/types/stores/array_formula_highlight.d.ts +1 -1
- package/dist/types/{plugins/ui_feature/automatic_sum.d.ts → stores/automatic_sum_store.d.ts} +5 -4
- package/dist/types/stores/checkbox_toggle.d.ts +9 -0
- package/dist/types/stores/client_focus_store.d.ts +1 -0
- package/dist/types/stores/data_cleanup_store.d.ts +31 -0
- package/dist/types/stores/main_viewport_store.d.ts +11 -0
- package/dist/types/stores/spreadsheet_store.d.ts +1 -1
- package/dist/types/stores/table_resize_store.d.ts +6 -0
- package/dist/types/stores/trim_whitespace_store.d.ts +9 -0
- package/dist/types/stores/viewports_store.d.ts +87 -0
- package/dist/types/stores/zoom_store.d.ts +14 -0
- package/dist/types/types/chart/radar_chart.d.ts +1 -1
- package/dist/types/types/chart/scorecard_chart.d.ts +2 -0
- package/dist/types/types/commands.d.ts +25 -58
- package/dist/types/types/core_getters.d.ts +3 -1
- package/dist/types/types/figure.d.ts +26 -3
- package/dist/types/types/functions.d.ts +14 -4
- package/dist/types/types/getters.d.ts +28 -11
- package/dist/types/types/misc.d.ts +19 -1
- package/dist/types/types/range.d.ts +1 -0
- package/dist/types/types/rendering.d.ts +1 -0
- package/dist/types/types/store_engine.d.ts +10 -3
- package/package.json +2 -2
- package/dist/types/plugins/ui_feature/checkbox_toggle.d.ts +0 -9
- package/dist/types/plugins/ui_feature/data_cleanup.d.ts +0 -16
- package/dist/types/plugins/ui_feature/split_to_columns.d.ts +0 -21
- package/dist/types/plugins/ui_feature/table_autofill.d.ts +0 -6
- package/dist/types/plugins/ui_feature/table_resize_ui.d.ts +0 -6
- package/dist/types/plugins/ui_stateful/sheetview.d.ts +0 -123
- /package/dist/types/plugins/{ui_feature → ui_stateful}/cell_computed_style.d.ts +0 -0
- /package/dist/types/plugins/{ui_feature → ui_stateful}/header_visibility_ui.d.ts +0 -0
- /package/dist/types/plugins/{ui_feature → ui_stateful}/table_computed_style.d.ts +0 -0
|
@@ -11,6 +11,8 @@ export declare class UnhideRowHeaders extends Component<SpreadsheetChildEnv> {
|
|
|
11
11
|
};
|
|
12
12
|
offset: number;
|
|
13
13
|
}, "offset">;
|
|
14
|
+
private viewStore;
|
|
15
|
+
setup(): void;
|
|
14
16
|
get sheetId(): import("../..").UID;
|
|
15
17
|
getUnhidePreviousButtonStyle(hiddenIndex: HeaderIndex): string;
|
|
16
18
|
getUnhideNextButtonStyle(hiddenIndex: HeaderIndex): string;
|
|
@@ -27,6 +29,8 @@ export declare class UnhideColumnHeaders extends Component<SpreadsheetChildEnv>
|
|
|
27
29
|
};
|
|
28
30
|
offset: number;
|
|
29
31
|
}, "offset">;
|
|
32
|
+
private viewStore;
|
|
33
|
+
setup(): void;
|
|
30
34
|
get sheetId(): import("../..").UID;
|
|
31
35
|
getUnhidePreviousButtonStyle(hiddenIndex: HeaderIndex): string;
|
|
32
36
|
getUnhideNextButtonStyle(hiddenIndex: HeaderIndex): string;
|
|
@@ -44,3 +44,5 @@ export declare function isMiddleClickOrCtrlClick(ev: MouseEvent): boolean;
|
|
|
44
44
|
export declare function downloadFile(dataUrl: string, fileName: string): void;
|
|
45
45
|
export declare function isIOS(): boolean;
|
|
46
46
|
export declare function isMobileOS(): boolean;
|
|
47
|
+
/** Check if there is an interactive element (input, select, button, ...) between the event.target and event.currentTarget (inclusive)*/
|
|
48
|
+
export declare function hasInteractiveElementInEventTree(event: Event): boolean;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FigureUI } from "../../types/figure";
|
|
2
|
-
import { Getters } from "../../types/getters";
|
|
3
2
|
import { Pixel, UID } from "../../types/misc";
|
|
3
|
+
import { SpreadsheetChildEnv } from "../../types/spreadsheet_env";
|
|
4
4
|
export type HFigureAxisType = "top" | "bottom" | "vCenter";
|
|
5
5
|
export type VFigureAxisType = "right" | "left" | "hCenter";
|
|
6
6
|
export interface SnapLine<T extends HFigureAxisType | VFigureAxisType> {
|
|
@@ -18,10 +18,10 @@ interface SnapReturn {
|
|
|
18
18
|
* Try to snap the given figure to other figures when moving the figure, and return the snapped
|
|
19
19
|
* figure and the possible snap lines, if any were found
|
|
20
20
|
*/
|
|
21
|
-
export declare function snapForMove(
|
|
21
|
+
export declare function snapForMove(env: SpreadsheetChildEnv, figuresToSnap: FigureUI[], otherFigures: FigureUI[]): SnapReturn;
|
|
22
22
|
/**
|
|
23
23
|
* Try to snap the given figure to the other figures when resizing the figure, and return the snapped
|
|
24
24
|
* figure and the possible snap lines, if any were found
|
|
25
25
|
*/
|
|
26
|
-
export declare function snapForResize(
|
|
26
|
+
export declare function snapForResize(env: SpreadsheetChildEnv, resizeDirX: -1 | 0 | 1, resizeDirY: -1 | 0 | 1, figureToSnap: FigureUI, otherFigures: FigureUI[]): SnapReturn;
|
|
27
27
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function useWheelHandler(handler: (deltaX: number, deltaY: number) => void): (ev: WheelEvent) => void;
|
|
1
|
+
export declare function useWheelHandler(handler: (deltaX: number, deltaY: number, ev: WheelEvent) => void): (ev: WheelEvent) => void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Pixel } from "../../types/misc";
|
|
2
|
-
import { DOMCoordinates
|
|
2
|
+
import { DOMCoordinates } from "../../types/rendering";
|
|
3
3
|
import { SpreadsheetChildEnv } from "../../types/spreadsheet_env";
|
|
4
4
|
export type ZoomedMouseEvent<T extends MouseEvent | PointerEvent> = {
|
|
5
5
|
clientX: Pixel;
|
|
@@ -16,7 +16,3 @@ export type ZoomedMouseEvent<T extends MouseEvent | PointerEvent> = {
|
|
|
16
16
|
* @returns a ZoomedMouseEvent
|
|
17
17
|
*/
|
|
18
18
|
export declare function withZoom<T extends MouseEvent>(env: SpreadsheetChildEnv, ev: T, originalTargetPosition?: DOMCoordinates | null): ZoomedMouseEvent<T>;
|
|
19
|
-
/**
|
|
20
|
-
* Return a Rect with position and size on the zoomed canvas
|
|
21
|
-
*/
|
|
22
|
-
export declare function getZoomedRect(zoom: number, rect: Rect): Rect;
|
|
@@ -25,6 +25,9 @@ export declare class Highlight extends Component<SpreadsheetChildEnv> {
|
|
|
25
25
|
clientY: number;
|
|
26
26
|
}, onPointerMove: (col: HeaderIndex, row: HeaderIndex, ev: MouseEvent) => void, onPointerUp: () => void, startScrollDirection?: DnDDirection) => void;
|
|
27
27
|
};
|
|
28
|
+
private viewStore;
|
|
29
|
+
private zoomStore;
|
|
30
|
+
setup(): void;
|
|
28
31
|
get cornerOrientations(): Array<"nw" | "ne" | "sw" | "se" | "n" | "s" | "e" | "w">;
|
|
29
32
|
onResizeHighlight(ev: PointerEvent, dirX: ResizeDirection, dirY: ResizeDirection): void;
|
|
30
33
|
onMoveHighlight(ev: PointerEvent): void;
|
|
@@ -12,6 +12,7 @@ export declare class LinkDisplay extends Component<SpreadsheetChildEnv> {
|
|
|
12
12
|
onClosed?: (() => void) | undefined;
|
|
13
13
|
}>;
|
|
14
14
|
protected cellPopovers: Store<CellPopoverStore>;
|
|
15
|
+
private viewStore;
|
|
15
16
|
setup(): void;
|
|
16
17
|
get cell(): EvaluatedCell;
|
|
17
18
|
get link(): Link;
|
|
@@ -33,6 +33,7 @@ export declare class LinkEditor extends Component<SpreadsheetChildEnv> {
|
|
|
33
33
|
suggestionListRef: import("@odoo/owl").Signal<HTMLElement | null>;
|
|
34
34
|
urlInputContainer: import("@odoo/owl").Signal<HTMLElement | null>;
|
|
35
35
|
private state;
|
|
36
|
+
private viewStore;
|
|
36
37
|
setup(): void;
|
|
37
38
|
computeLinks(): void;
|
|
38
39
|
get linkProposalByCategory(): Record<string, LinkProposal>;
|
|
@@ -5,7 +5,7 @@ import { Highlight, Zone } from "../../types/misc";
|
|
|
5
5
|
import { Get } from "../../types/store_engine";
|
|
6
6
|
export declare class PaintFormatStore extends SpreadsheetStore {
|
|
7
7
|
mutators: readonly ["activate", "cancel", "pasteFormat"];
|
|
8
|
-
protected highlightStore: import("../../types/store_engine").
|
|
8
|
+
protected highlightStore: import("../../types/store_engine").Store<HighlightStore>;
|
|
9
9
|
private status;
|
|
10
10
|
private copiedData?;
|
|
11
11
|
constructor(get: Get);
|
|
@@ -6,7 +6,8 @@ import { DelayedHoveredCellStore } from "../grid/delayed_hovered_cell_store";
|
|
|
6
6
|
export declare class CellPopoverStore extends SpreadsheetStore {
|
|
7
7
|
mutators: readonly ["open", "close"];
|
|
8
8
|
private persistentPopover?;
|
|
9
|
-
protected hoveredCell: import("../../types/store_engine").
|
|
9
|
+
protected hoveredCell: import("../../types/store_engine").Store<DelayedHoveredCellStore>;
|
|
10
|
+
private viewStore;
|
|
10
11
|
handle(cmd: Command): void;
|
|
11
12
|
open({ col, row }: Position, type: CellPopoverType): void;
|
|
12
13
|
close(): "noStateChange" | undefined;
|
|
@@ -133,7 +133,7 @@ export declare const types: {
|
|
|
133
133
|
DataValidationCriterionType: () => Type<"containsText" | "notContainsText" | "isEqualText" | "isEmail" | "isLink" | "dateIs" | "dateIsBefore" | "dateIsOnOrBefore" | "dateIsAfter" | "dateIsOnOrAfter" | "dateIsBetween" | "dateIsNotBetween" | "dateIsValid" | "isEqual" | "isNotEqual" | "isGreaterThan" | "isGreaterOrEqualTo" | "isLessThan" | "isLessOrEqualTo" | "isBetween" | "isNotBetween" | "isBoolean" | "isValueInList" | "isValueInRange" | "customFormula">;
|
|
134
134
|
Dimension: typeof validateDimension;
|
|
135
135
|
ContextMenuType: typeof validateContextMenuType;
|
|
136
|
-
and: <T extends any[]>(types: T) =>
|
|
136
|
+
and: <T extends any[]>(types: T) => import("@odoo/owl").ShapeType<import("@odoo/owl").MergedShape<T>, import("@odoo/owl").UnionToIntersection<import("@odoo/owl").StripBrands<T[number]>>>;
|
|
137
137
|
any: () => Type<any>;
|
|
138
138
|
array: {
|
|
139
139
|
(): Type<any[]>;
|
|
@@ -147,10 +147,10 @@ export declare const types: {
|
|
|
147
147
|
literal: <const T extends import("@odoo/owl").LiteralTypes>(literal: T) => Type<T>;
|
|
148
148
|
number: <T extends number = number>() => Type<T>;
|
|
149
149
|
object: {
|
|
150
|
-
():
|
|
151
|
-
<const Keys extends string[]>(keys: Keys):
|
|
152
|
-
<Shape extends {}>():
|
|
153
|
-
<Shape extends {}>(shape: Shape):
|
|
150
|
+
(): import("@odoo/owl").ShapeType<Record<string, any>, Record<string, any>>;
|
|
151
|
+
<const Keys extends string[]>(keys: Keys): import("@odoo/owl").ShapeType<Keys, import("@odoo/owl").ResolveOptionalEntries<import("@odoo/owl").KeyedObject<Keys>>>;
|
|
152
|
+
<Shape extends {}>(): import("@odoo/owl").ShapeType<Shape, import("@odoo/owl").ResolveOptionalEntries<Shape>>;
|
|
153
|
+
<Shape extends {}>(shape: Shape): import("@odoo/owl").ShapeType<Shape, import("@odoo/owl").ResolveOptionalEntries<Shape>>;
|
|
154
154
|
};
|
|
155
155
|
or: <T extends unknown[]>(types: T) => Type<import("@odoo/owl").StripBrands<T[number]>>;
|
|
156
156
|
promise: {
|
|
@@ -172,8 +172,8 @@ export declare const types: {
|
|
|
172
172
|
<T>(type: T): Type<import("@odoo/owl").ReactiveValue<import("@odoo/owl").StripBrands<T>>>;
|
|
173
173
|
};
|
|
174
174
|
strictObject: {
|
|
175
|
-
<const Keys extends string[]>(keys: Keys):
|
|
176
|
-
<Shape extends {}>(shape: Shape):
|
|
175
|
+
<const Keys extends string[]>(keys: Keys): import("@odoo/owl").ShapeType<Keys, import("@odoo/owl").ResolveOptionalEntries<import("@odoo/owl").KeyedObject<Keys>>>;
|
|
176
|
+
<Shape extends {}>(shape: Shape): import("@odoo/owl").ShapeType<Shape, import("@odoo/owl").ResolveOptionalEntries<Shape>>;
|
|
177
177
|
};
|
|
178
178
|
string: <T extends string = string>() => Type<T>;
|
|
179
179
|
tuple: <const T extends unknown[]>(types: T) => Type<import("@odoo/owl").StripBrandsAll<T>>;
|
|
@@ -5,7 +5,10 @@ export declare class HorizontalScrollBar extends Component<SpreadsheetChildEnv>
|
|
|
5
5
|
static components: {
|
|
6
6
|
ScrollBar: typeof ScrollBar;
|
|
7
7
|
};
|
|
8
|
+
private viewStore;
|
|
9
|
+
private zoomStore;
|
|
8
10
|
static template: string;
|
|
11
|
+
setup(): void;
|
|
9
12
|
protected props: import("@odoo/owl").PropsWithDefaults<{
|
|
10
13
|
leftOffset: number;
|
|
11
14
|
}, "leftOffset">;
|
|
@@ -5,10 +5,14 @@ export declare class VerticalScrollBar extends Component<SpreadsheetChildEnv> {
|
|
|
5
5
|
static components: {
|
|
6
6
|
ScrollBar: typeof ScrollBar;
|
|
7
7
|
};
|
|
8
|
+
private viewStore;
|
|
9
|
+
private zoomStore;
|
|
8
10
|
static template: string;
|
|
11
|
+
setup(): void;
|
|
9
12
|
protected props: import("@odoo/owl").PropsWithDefaults<{
|
|
10
13
|
topOffset: number;
|
|
11
|
-
|
|
14
|
+
hasFooter: boolean;
|
|
15
|
+
}, "hasFooter" | "topOffset">;
|
|
12
16
|
get offset(): import("../..").Pixel;
|
|
13
17
|
get height(): import("../..").Pixel;
|
|
14
18
|
get isDisplayed(): boolean;
|
|
@@ -28,7 +28,7 @@ export declare class SelectionInputStore extends SpreadsheetStore {
|
|
|
28
28
|
mode: SelectionRangeEditMode;
|
|
29
29
|
private inputSheetId;
|
|
30
30
|
private focusStore;
|
|
31
|
-
protected highlightStore: import("../../types/store_engine").
|
|
31
|
+
protected highlightStore: import("../../types/store_engine").Store<HighlightStore>;
|
|
32
32
|
constructor(get: Get, initialRanges?: string[], inputHasSingleRange?: boolean, colors?: Color[], disabledRanges?: boolean[]);
|
|
33
33
|
handleEvent(event: SelectionEvent): void;
|
|
34
34
|
handle(cmd: Command): void;
|
|
@@ -3,11 +3,19 @@ import { Component } from "../../../owl3_compatibility_layer";
|
|
|
3
3
|
import { TitleDesign } from "../../../types/chart/chart";
|
|
4
4
|
import { CarouselItem } from "../../../types/figure";
|
|
5
5
|
import { UID } from "../../../types/misc";
|
|
6
|
+
import { PropsOf } from "../../../types/props_of";
|
|
6
7
|
import { SpreadsheetChildEnv } from "../../../types/spreadsheet_env";
|
|
8
|
+
import { Popover } from "../../popover/popover";
|
|
9
|
+
import { SelectionInput } from "../../selection_input/selection_input";
|
|
7
10
|
import { TextInput } from "../../text_input/text_input";
|
|
8
11
|
import { TextStyler } from "../chart/building_blocks/text_styler/text_styler";
|
|
12
|
+
import { ChartTypePickerPopover } from "../chart/chart_type_picker_popover/chart_type_picker_popover";
|
|
9
13
|
import { CogWheelMenu } from "../components/cog_wheel_menu/cog_wheel_menu";
|
|
10
14
|
import { Section } from "../components/section/section";
|
|
15
|
+
interface CarouselPanelState {
|
|
16
|
+
popoverProps: PropsOf<Popover> | undefined;
|
|
17
|
+
currentRange?: string;
|
|
18
|
+
}
|
|
11
19
|
export declare class CarouselPanel extends Component<SpreadsheetChildEnv> {
|
|
12
20
|
static template: string;
|
|
13
21
|
static components: {
|
|
@@ -15,6 +23,8 @@ export declare class CarouselPanel extends Component<SpreadsheetChildEnv> {
|
|
|
15
23
|
TextInput: typeof TextInput;
|
|
16
24
|
TextStyler: typeof TextStyler;
|
|
17
25
|
CogWheelMenu: typeof CogWheelMenu;
|
|
26
|
+
ChartTypePickerPopover: typeof ChartTypePickerPopover;
|
|
27
|
+
SelectionInput: typeof SelectionInput;
|
|
18
28
|
};
|
|
19
29
|
protected props: import("@odoo/owl").Props<{
|
|
20
30
|
onCloseSidePanel: () => void;
|
|
@@ -26,13 +36,18 @@ export declare class CarouselPanel extends Component<SpreadsheetChildEnv> {
|
|
|
26
36
|
};
|
|
27
37
|
private dragAndDrop;
|
|
28
38
|
private previewListRef;
|
|
39
|
+
addChartButton: import("@odoo/owl").Signal<HTMLElement | null>;
|
|
40
|
+
state: CarouselPanelState;
|
|
29
41
|
setup(): void;
|
|
30
42
|
get carouselItems(): CarouselItem[];
|
|
31
43
|
get title(): TitleDesign | undefined;
|
|
32
44
|
get carousel(): import("../../..").Carousel;
|
|
33
45
|
getPreviewDivStyle(item: CarouselItem): string;
|
|
34
46
|
getItemId(item: CarouselItem): string;
|
|
35
|
-
addNewChartToCarousel(): void;
|
|
47
|
+
addNewChartToCarousel(ev: MouseEvent): void;
|
|
48
|
+
get supportedChartTypes(): Set<"line" | "calendar" | "bar" | "scatter" | "bubble" | "pie" | "radar" | "treemap" | "funnel" | "geo" | "scorecard" | "gauge" | "combo" | "waterfall" | "pyramid" | "sunburst">;
|
|
49
|
+
closePopover(): void;
|
|
50
|
+
onSelectChartType(type: string): void;
|
|
36
51
|
get hasDataView(): boolean;
|
|
37
52
|
isCarouselItemActive(item: CarouselItem): boolean;
|
|
38
53
|
addDataViewToCarousel(): void;
|
|
@@ -52,5 +67,8 @@ export declare class CarouselPanel extends Component<SpreadsheetChildEnv> {
|
|
|
52
67
|
get carouselAddChartInfoMessage(): string;
|
|
53
68
|
getCogWheelMenuItems(item: CarouselItem): ActionSpec[];
|
|
54
69
|
get carouselSheetId(): UID;
|
|
55
|
-
|
|
70
|
+
getItemRangeString(item: CarouselItem): string;
|
|
71
|
+
onSelectionInputChanged(ranges: string[]): void;
|
|
72
|
+
onSelectionInputConfirmed(): void;
|
|
56
73
|
}
|
|
74
|
+
export {};
|
|
@@ -17,6 +17,7 @@ export declare class ChartTitle extends Component<SpreadsheetChildEnv> {
|
|
|
17
17
|
updateTitle: (title: string) => void;
|
|
18
18
|
style: TitleDesign;
|
|
19
19
|
updateStyle: (style: TitleDesign) => void;
|
|
20
|
+
class?: string | undefined;
|
|
20
21
|
name?: string | undefined;
|
|
21
22
|
defaultStyle?: {
|
|
22
23
|
readonly text?: string | undefined;
|
|
@@ -6,41 +6,28 @@ import { PropsOf } from "../../../../types/props_of";
|
|
|
6
6
|
import { SpreadsheetChildEnv } from "../../../../types/spreadsheet_env";
|
|
7
7
|
import { Popover } from "../../../popover/popover";
|
|
8
8
|
import { Section } from "../../components/section/section";
|
|
9
|
+
import { ChartTypePickerPopover } from "../chart_type_picker_popover/chart_type_picker_popover";
|
|
9
10
|
import { MainChartPanelStore } from "../main_chart_panel/main_chart_panel_store";
|
|
10
11
|
interface ChartTypePickerState {
|
|
11
12
|
popoverProps: PropsOf<Popover> | undefined;
|
|
12
|
-
popoverStyle: string;
|
|
13
13
|
}
|
|
14
14
|
export declare class ChartTypePicker extends Component<SpreadsheetChildEnv> {
|
|
15
15
|
static template: string;
|
|
16
16
|
static components: {
|
|
17
17
|
Section: typeof Section;
|
|
18
|
-
|
|
18
|
+
ChartTypePickerPopover: typeof ChartTypePickerPopover;
|
|
19
19
|
};
|
|
20
20
|
protected props: import("@odoo/owl").Props<{
|
|
21
21
|
chartId: UID;
|
|
22
|
-
chartPanelStore: import("../../../../types/store_engine").
|
|
22
|
+
chartPanelStore: import("../../../../types/store_engine").Store<MainChartPanelStore>;
|
|
23
23
|
}>;
|
|
24
|
-
categories: {
|
|
25
|
-
line: string;
|
|
26
|
-
column: string;
|
|
27
|
-
bar: string;
|
|
28
|
-
area: string;
|
|
29
|
-
pie: string;
|
|
30
|
-
hierarchical: string;
|
|
31
|
-
misc: string;
|
|
32
|
-
};
|
|
33
|
-
chartTypeByCategories: Record<string, ChartSubtypeProperties[]>;
|
|
34
|
-
popoverRef: import("@odoo/owl").Signal<HTMLElement | null>;
|
|
35
24
|
selectRef: import("@odoo/owl").Signal<HTMLElement | null>;
|
|
36
25
|
state: ChartTypePickerState;
|
|
37
|
-
|
|
38
|
-
private getSupportedChartTypes;
|
|
39
|
-
onExternalClick(ev: MouseEvent): void;
|
|
26
|
+
getSupportedChartTypes(): Set<ChartType>;
|
|
40
27
|
onTypeChange(type: ChartType): void;
|
|
41
28
|
private getChartDefinition;
|
|
42
29
|
getSelectedChartSubtypeProperties(): ChartSubtypeProperties;
|
|
43
30
|
onPointerDown(ev: PointerEvent): void;
|
|
44
|
-
|
|
31
|
+
closePopover(): void;
|
|
45
32
|
}
|
|
46
33
|
export {};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { Component } from "../../../../owl3_compatibility_layer";
|
|
2
|
+
import { ChartType } from "../../../../types/chart/chart";
|
|
3
|
+
import { ChartSubtypeProperties } from "../../../../types/chart_subtype_properties";
|
|
4
|
+
import { SpreadsheetChildEnv } from "../../../../types/spreadsheet_env";
|
|
5
|
+
import { Popover } from "../../../popover/popover";
|
|
6
|
+
export declare class ChartTypePickerPopover extends Component<SpreadsheetChildEnv> {
|
|
7
|
+
static template: string;
|
|
8
|
+
static components: {
|
|
9
|
+
Popover: typeof Popover;
|
|
10
|
+
};
|
|
11
|
+
protected props: import("@odoo/owl").Props<{
|
|
12
|
+
onClose: () => void;
|
|
13
|
+
onSelectSubType: (type: string) => void;
|
|
14
|
+
supportedTypes: {
|
|
15
|
+
add: (value: "line" | "calendar" | "bar" | "scatter" | "bubble" | "pie" | "radar" | "treemap" | "funnel" | "geo" | "scorecard" | "gauge" | "combo" | "waterfall" | "pyramid" | "sunburst") => Set<"line" | "calendar" | "bar" | "scatter" | "bubble" | "pie" | "radar" | "treemap" | "funnel" | "geo" | "scorecard" | "gauge" | "combo" | "waterfall" | "pyramid" | "sunburst">;
|
|
16
|
+
clear: () => void;
|
|
17
|
+
delete: (value: "line" | "calendar" | "bar" | "scatter" | "bubble" | "pie" | "radar" | "treemap" | "funnel" | "geo" | "scorecard" | "gauge" | "combo" | "waterfall" | "pyramid" | "sunburst") => boolean;
|
|
18
|
+
forEach: (callbackfn: (value: "line" | "calendar" | "bar" | "scatter" | "bubble" | "pie" | "radar" | "treemap" | "funnel" | "geo" | "scorecard" | "gauge" | "combo" | "waterfall" | "pyramid" | "sunburst", value2: "line" | "calendar" | "bar" | "scatter" | "bubble" | "pie" | "radar" | "treemap" | "funnel" | "geo" | "scorecard" | "gauge" | "combo" | "waterfall" | "pyramid" | "sunburst", set: Set<"line" | "calendar" | "bar" | "scatter" | "bubble" | "pie" | "radar" | "treemap" | "funnel" | "geo" | "scorecard" | "gauge" | "combo" | "waterfall" | "pyramid" | "sunburst">) => void, thisArg?: any) => void;
|
|
19
|
+
has: (value: "line" | "calendar" | "bar" | "scatter" | "bubble" | "pie" | "radar" | "treemap" | "funnel" | "geo" | "scorecard" | "gauge" | "combo" | "waterfall" | "pyramid" | "sunburst") => boolean;
|
|
20
|
+
readonly size: number;
|
|
21
|
+
entries: () => SetIterator<["line" | "calendar" | "bar" | "scatter" | "bubble" | "pie" | "radar" | "treemap" | "funnel" | "geo" | "scorecard" | "gauge" | "combo" | "waterfall" | "pyramid" | "sunburst", "line" | "calendar" | "bar" | "scatter" | "bubble" | "pie" | "radar" | "treemap" | "funnel" | "geo" | "scorecard" | "gauge" | "combo" | "waterfall" | "pyramid" | "sunburst"]>;
|
|
22
|
+
keys: () => SetIterator<"line" | "calendar" | "bar" | "scatter" | "bubble" | "pie" | "radar" | "treemap" | "funnel" | "geo" | "scorecard" | "gauge" | "combo" | "waterfall" | "pyramid" | "sunburst">;
|
|
23
|
+
values: () => SetIterator<"line" | "calendar" | "bar" | "scatter" | "bubble" | "pie" | "radar" | "treemap" | "funnel" | "geo" | "scorecard" | "gauge" | "combo" | "waterfall" | "pyramid" | "sunburst">;
|
|
24
|
+
union: <U>(other: ReadonlySetLike<U>) => Set<"line" | "calendar" | "bar" | "scatter" | "bubble" | "pie" | "radar" | "treemap" | "funnel" | "geo" | "scorecard" | "gauge" | "combo" | "waterfall" | "pyramid" | "sunburst" | U>;
|
|
25
|
+
intersection: <U>(other: ReadonlySetLike<U>) => Set<("line" | "calendar" | "bar" | "scatter" | "bubble" | "pie" | "radar" | "treemap" | "funnel" | "geo" | "scorecard" | "gauge" | "combo" | "waterfall" | "pyramid" | "sunburst") & U>;
|
|
26
|
+
difference: <U>(other: ReadonlySetLike<U>) => Set<"line" | "calendar" | "bar" | "scatter" | "bubble" | "pie" | "radar" | "treemap" | "funnel" | "geo" | "scorecard" | "gauge" | "combo" | "waterfall" | "pyramid" | "sunburst">;
|
|
27
|
+
symmetricDifference: <U>(other: ReadonlySetLike<U>) => Set<"line" | "calendar" | "bar" | "scatter" | "bubble" | "pie" | "radar" | "treemap" | "funnel" | "geo" | "scorecard" | "gauge" | "combo" | "waterfall" | "pyramid" | "sunburst" | U>;
|
|
28
|
+
isSubsetOf: (other: ReadonlySetLike<unknown>) => boolean;
|
|
29
|
+
isSupersetOf: (other: ReadonlySetLike<unknown>) => boolean;
|
|
30
|
+
isDisjointFrom: (other: ReadonlySetLike<unknown>) => boolean;
|
|
31
|
+
[Symbol.iterator]: () => SetIterator<"line" | "calendar" | "bar" | "scatter" | "bubble" | "pie" | "radar" | "treemap" | "funnel" | "geo" | "scorecard" | "gauge" | "combo" | "waterfall" | "pyramid" | "sunburst">;
|
|
32
|
+
readonly [Symbol.toStringTag]: string;
|
|
33
|
+
};
|
|
34
|
+
popoverProps: {
|
|
35
|
+
maxHeight?: import("../../../..").Pixel | undefined;
|
|
36
|
+
maxWidth?: import("../../../..").Pixel | undefined;
|
|
37
|
+
zIndex?: number | undefined;
|
|
38
|
+
class?: string | undefined;
|
|
39
|
+
anchorRect: import("../../../..").Rect;
|
|
40
|
+
containerRect?: {} | undefined;
|
|
41
|
+
positioning?: "top-right" | "bottom-left" | undefined;
|
|
42
|
+
verticalOffset?: number | undefined;
|
|
43
|
+
onMouseWheel?: (() => void) | undefined;
|
|
44
|
+
onPopoverHidden?: (() => void) | undefined;
|
|
45
|
+
onPopoverMoved?: (() => void) | undefined;
|
|
46
|
+
};
|
|
47
|
+
parentRef?: import("@odoo/owl").ReactiveValue<HTMLElement | null, HTMLElement | null> | undefined;
|
|
48
|
+
selectedChartSubType?: string | undefined;
|
|
49
|
+
}>;
|
|
50
|
+
categories: {
|
|
51
|
+
line: string;
|
|
52
|
+
column: string;
|
|
53
|
+
bar: string;
|
|
54
|
+
area: string;
|
|
55
|
+
pie: string;
|
|
56
|
+
hierarchical: string;
|
|
57
|
+
misc: string;
|
|
58
|
+
};
|
|
59
|
+
chartTypeByCategories: Record<string, ChartSubtypeProperties[]>;
|
|
60
|
+
popoverRef: import("@odoo/owl").Signal<HTMLElement | null>;
|
|
61
|
+
setup(): void;
|
|
62
|
+
onExternalClick(ev: MouseEvent): void;
|
|
63
|
+
onTypeChange(type: ChartType): void;
|
|
64
|
+
}
|
|
@@ -10,7 +10,7 @@ export interface ChartSidePanelProps<T extends ChartDefinition<string>> {
|
|
|
10
10
|
export type ChartUpdateFunction<T extends ChartDefinition<string> = ChartDefinition<string>> = (chartId: UID, definition: Partial<T>) => DispatchResult;
|
|
11
11
|
export declare const chartSidePanelPropsDefinition: {
|
|
12
12
|
chartId: import("@odoo/owl").Type<UID>;
|
|
13
|
-
definition: import("@odoo/owl").
|
|
13
|
+
definition: import("@odoo/owl").ShapeType<{}, {}>;
|
|
14
14
|
canUpdateChart: import("@odoo/owl").Type<ChartUpdateFunction<ChartDefinition<string>>>;
|
|
15
15
|
updateChart: import("@odoo/owl").Type<ChartUpdateFunction<ChartDefinition<string>>>;
|
|
16
16
|
};
|
package/dist/types/components/side_panel/conditional_formatting/cf_editor/cell_is_rule_editor.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export declare class CellIsRuleEditor extends Component<SpreadsheetChildEnv> {
|
|
|
11
11
|
Select: typeof Select;
|
|
12
12
|
};
|
|
13
13
|
protected props: import("@odoo/owl").Props<{
|
|
14
|
-
store: import("../../../../types/store_engine").
|
|
14
|
+
store: import("../../../../types/store_engine").Store<ConditionalFormattingEditorStore>;
|
|
15
15
|
}>;
|
|
16
16
|
getTextDecoration: typeof getTextDecoration;
|
|
17
17
|
get rule(): import("../../../..").CellIsRule;
|
|
@@ -8,6 +8,6 @@ export declare class ColorScaleRuleEditor extends Component<SpreadsheetChildEnv>
|
|
|
8
8
|
ColorScaleRuleEditorThreshold: typeof ColorScaleRuleEditorThreshold;
|
|
9
9
|
};
|
|
10
10
|
protected props: import("@odoo/owl").Props<{
|
|
11
|
-
store: import("../../../../types/store_engine").
|
|
11
|
+
store: import("../../../../types/store_engine").Store<ConditionalFormattingEditorStore>;
|
|
12
12
|
}>;
|
|
13
13
|
}
|
|
@@ -15,7 +15,7 @@ export declare class ColorScaleRuleEditorThreshold extends Component<Spreadsheet
|
|
|
15
15
|
Select: typeof Select;
|
|
16
16
|
};
|
|
17
17
|
protected props: import("@odoo/owl").Props<{
|
|
18
|
-
store: import("../../../../types/store_engine").
|
|
18
|
+
store: import("../../../../types/store_engine").Store<ConditionalFormattingEditorStore>;
|
|
19
19
|
thresholdType: "minimum" | "maximum" | "midpoint";
|
|
20
20
|
}>;
|
|
21
21
|
get rule(): import("../../../..").ColorScaleRule;
|
package/dist/types/components/side_panel/conditional_formatting/cf_editor/data_bar_rule_editor.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export declare class DataBarRuleEditor extends Component<SpreadsheetChildEnv> {
|
|
|
11
11
|
RoundColorPicker: typeof RoundColorPicker;
|
|
12
12
|
};
|
|
13
13
|
protected props: import("@odoo/owl").Props<{
|
|
14
|
-
store: import("../../../../types/store_engine").
|
|
14
|
+
store: import("../../../../types/store_engine").Store<ConditionalFormattingEditorStore>;
|
|
15
15
|
}>;
|
|
16
16
|
get rule(): import("../../../..").DataBarRule;
|
|
17
17
|
colorNumberToHex: typeof colorNumberToHex;
|
package/dist/types/components/side_panel/conditional_formatting/cf_editor/icon_set_rule_editor.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export declare class IconSetRuleEditor extends Component<SpreadsheetChildEnv> {
|
|
|
14
14
|
Select: typeof Select;
|
|
15
15
|
};
|
|
16
16
|
protected props: import("@odoo/owl").Props<{
|
|
17
|
-
store: import("../../../../types/store_engine").
|
|
17
|
+
store: import("../../../../types/store_engine").Store<ConditionalFormattingEditorStore>;
|
|
18
18
|
}>;
|
|
19
19
|
get rule(): import("../../../..").IconSetRule;
|
|
20
20
|
getIconName(iconSet: "arrows" | "smiley" | "dots", iconType: "good" | "neutral" | "bad"): string;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Component } from "../../../../owl3_compatibility_layer";
|
|
2
|
+
import { SpreadsheetChildEnv } from "../../../../types/spreadsheet_env";
|
|
3
|
+
export declare class CalendarButton extends Component<SpreadsheetChildEnv> {
|
|
4
|
+
static template: string;
|
|
5
|
+
protected props: import("@odoo/owl").PropsWithDefaults<{
|
|
6
|
+
value: string;
|
|
7
|
+
onChange: (value: string) => void;
|
|
8
|
+
}, "value">;
|
|
9
|
+
datePickerRef: import("@odoo/owl").Signal<HTMLInputElement | null>;
|
|
10
|
+
openCalendar(): void;
|
|
11
|
+
formatDateForInput(value: string): "" | import("../../../..").FormattedValue;
|
|
12
|
+
onDateInputValueChanged(value: string): void;
|
|
13
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { DateCriterionValue, GenericDateCriterion } from "../../../../types/generic_criterion";
|
|
2
2
|
import { ValueAndLabel } from "../../../../types/misc";
|
|
3
3
|
import { Select } from "../../../select/select";
|
|
4
|
+
import { CalendarButton } from "../calendar_button/calendar_button";
|
|
4
5
|
import { CriterionForm } from "../criterion_form";
|
|
5
6
|
import { CriterionInput } from "../criterion_input/criterion_input";
|
|
6
7
|
export declare class DateCriterionForm extends CriterionForm<GenericDateCriterion> {
|
|
@@ -8,6 +9,7 @@ export declare class DateCriterionForm extends CriterionForm<GenericDateCriterio
|
|
|
8
9
|
static components: {
|
|
9
10
|
CriterionInput: typeof CriterionInput;
|
|
10
11
|
Select: typeof Select;
|
|
12
|
+
CalendarButton: typeof CalendarButton;
|
|
11
13
|
};
|
|
12
14
|
get currentDateValue(): DateCriterionValue;
|
|
13
15
|
onValueChanged(value: string): void;
|
|
@@ -1,10 +1,13 @@
|
|
|
1
|
+
import { CalendarButton } from "../calendar_button/calendar_button";
|
|
1
2
|
import { CriterionForm } from "../criterion_form";
|
|
2
3
|
import { CriterionInput } from "../criterion_input/criterion_input";
|
|
3
4
|
export declare class DoubleInputCriterionForm extends CriterionForm {
|
|
4
5
|
static template: string;
|
|
5
6
|
static components: {
|
|
6
7
|
CriterionInput: typeof CriterionInput;
|
|
8
|
+
CalendarButton: typeof CalendarButton;
|
|
7
9
|
};
|
|
8
10
|
onFirstValueChanged(value: string): void;
|
|
9
11
|
onSecondValueChanged(value: string): void;
|
|
12
|
+
get isDateType(): boolean;
|
|
10
13
|
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { Component } from "../../../owl3_compatibility_layer";
|
|
2
|
+
import { UID } from "../../../types/misc";
|
|
3
|
+
import { SpreadsheetChildEnv } from "../../../types/spreadsheet_env";
|
|
4
|
+
import { Store } from "../../../types/store_engine";
|
|
5
|
+
import { Checkbox } from "../components/checkbox/checkbox";
|
|
6
|
+
import { Section } from "../components/section/section";
|
|
7
|
+
import { DataSourcesCleanupStore } from "./data_sources_cleanup_store";
|
|
8
|
+
interface State {
|
|
9
|
+
uncheckedDataSources: Record<UID, boolean>;
|
|
10
|
+
}
|
|
11
|
+
export declare class DataSourcesCleanup extends Component<SpreadsheetChildEnv> {
|
|
12
|
+
static template: string;
|
|
13
|
+
static components: {
|
|
14
|
+
Section: typeof Section;
|
|
15
|
+
Checkbox: typeof Checkbox;
|
|
16
|
+
};
|
|
17
|
+
state: State;
|
|
18
|
+
store: Store<DataSourcesCleanupStore>;
|
|
19
|
+
setup(): void;
|
|
20
|
+
onToggleDataSource(type: string, id: UID, checked: boolean): void;
|
|
21
|
+
isDataSourceChecked(type: string, id: UID): boolean;
|
|
22
|
+
get dataSourcesToDelete(): {
|
|
23
|
+
type: string;
|
|
24
|
+
id: UID;
|
|
25
|
+
}[];
|
|
26
|
+
onRemoveUnusedDataSources(): void;
|
|
27
|
+
}
|
|
28
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { UnusedDataSource } from "../../../registries/data_source_registry";
|
|
2
|
+
import { SpreadsheetStore } from "../../../stores/spreadsheet_store";
|
|
3
|
+
import { Command } from "../../../types/commands";
|
|
4
|
+
interface UnusedDataSourceCategory {
|
|
5
|
+
type: string;
|
|
6
|
+
label: string;
|
|
7
|
+
dataSources: UnusedDataSource[];
|
|
8
|
+
}
|
|
9
|
+
export declare class DataSourcesCleanupStore extends SpreadsheetStore {
|
|
10
|
+
protected handle(cmd: Command): void;
|
|
11
|
+
get unusedDataSourcesCategories(): UnusedDataSourceCategory[];
|
|
12
|
+
}
|
|
13
|
+
export {};
|
|
@@ -20,6 +20,7 @@ export declare class FindAndReplaceStore extends SpreadsheetStore implements Hig
|
|
|
20
20
|
private isSearchDirty;
|
|
21
21
|
private shouldFinalizeUpdateSelection;
|
|
22
22
|
private notificationStore;
|
|
23
|
+
private viewStore;
|
|
23
24
|
selectedMatchIndex: number | null;
|
|
24
25
|
toSearch: string;
|
|
25
26
|
toReplace: string;
|
|
@@ -39,9 +39,7 @@ export declare class PivotLayoutConfigurator extends Component<SpreadsheetChildE
|
|
|
39
39
|
private dimensionsRef;
|
|
40
40
|
private dragAndDrop;
|
|
41
41
|
AGGREGATORS: {};
|
|
42
|
-
private composerFocus;
|
|
43
42
|
isDateOrDatetimeField: typeof isDateOrDatetimeField;
|
|
44
|
-
setup(): void;
|
|
45
43
|
startDragAndDrop(dimension: PivotDimensionType, event: MouseEvent): void;
|
|
46
44
|
getGranularitiesFor(field: PivotField): string[];
|
|
47
45
|
startDragAndDropMeasures(measure: PivotMeasure, event: MouseEvent): void;
|
|
@@ -10,6 +10,7 @@ export declare class PivotSidePanelStore extends SpreadsheetStore {
|
|
|
10
10
|
private _updatesAreDeferred;
|
|
11
11
|
private draft;
|
|
12
12
|
private notification;
|
|
13
|
+
private viewStore;
|
|
13
14
|
private alreadyNotified;
|
|
14
15
|
private alreadyNotifiedForPivotSize;
|
|
15
16
|
constructor(get: Get, pivotId: UID, updateMode?: "neverDefer" | "canDefer");
|
|
@@ -1,14 +1,10 @@
|
|
|
1
1
|
import { Component } from "../../../owl3_compatibility_layer";
|
|
2
|
+
import { DataCleanupStore } from "../../../stores/data_cleanup_store";
|
|
2
3
|
import { SpreadsheetChildEnv } from "../../../types/spreadsheet_env";
|
|
4
|
+
import { Store } from "../../../types/store_engine";
|
|
3
5
|
import { ValidationMessages } from "../../validation_messages/validation_messages";
|
|
4
6
|
import { Checkbox } from "../components/checkbox/checkbox";
|
|
5
7
|
import { Section } from "../components/section/section";
|
|
6
|
-
interface RemoveDuplicatesState {
|
|
7
|
-
hasHeader: boolean;
|
|
8
|
-
columns: {
|
|
9
|
-
[colIndex: number]: boolean;
|
|
10
|
-
};
|
|
11
|
-
}
|
|
12
8
|
export declare class RemoveDuplicatesPanel extends Component<SpreadsheetChildEnv> {
|
|
13
9
|
static template: string;
|
|
14
10
|
static components: {
|
|
@@ -19,7 +15,7 @@ export declare class RemoveDuplicatesPanel extends Component<SpreadsheetChildEnv
|
|
|
19
15
|
protected props: import("@odoo/owl").Props<{
|
|
20
16
|
onCloseSidePanel: () => void;
|
|
21
17
|
}>;
|
|
22
|
-
|
|
18
|
+
dataCleanupSore: Store<DataCleanupStore>;
|
|
23
19
|
setup(): void;
|
|
24
20
|
toggleHasHeader(): void;
|
|
25
21
|
toggleAllColumns(): void;
|
|
@@ -30,7 +26,4 @@ export declare class RemoveDuplicatesPanel extends Component<SpreadsheetChildEnv
|
|
|
30
26
|
get errorMessages(): string[];
|
|
31
27
|
get selectionStatisticalInformation(): string;
|
|
32
28
|
get canConfirm(): boolean;
|
|
33
|
-
private updateColumns;
|
|
34
|
-
private getColsToAnalyze;
|
|
35
29
|
}
|
|
36
|
-
export {};
|