UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

24 lines (23 loc) 2.48 kB
import { AdaptableModuleBase } from './AdaptableModuleBase'; import { AdaptableColumn } from '../AdaptableState/Common/AdaptableColumn'; import { TeamSharingImportInfo } from '../AdaptableState/TeamSharingState'; import { FreeTextColumn } from '../AdaptableState/FreeTextColumnState'; import { AdaptableModuleView, AdaptableObjectView } from './Interface/IModule'; import { AdaptableApi } from '../Api/AdaptableApi'; import { ICellDataChangeListenerModule } from './Interface/ICellDataChangeListenerModule'; export declare class FreeTextColumnModule extends AdaptableModuleBase implements ICellDataChangeListenerModule { private isListeningToCellDataChanges; constructor(api: AdaptableApi); onAdaptableReady(): void; shouldListenToDataChanges(): boolean; checkListenToCellDataChanged(): void; setupCellDataChangeListener(): void; isModuleAvailable(): boolean; getModuleAdaptableObjects(): FreeTextColumn[]; hasNamedQueryReferences(): boolean; createColumnMenuItems(column: AdaptableColumn): import("../Utilities/MenuItem").MenuItemShowPopup<"calculated-column-edit" | "cell-summary-show" | "chart-show" | "column-group" | "column-filter-group" | "column-filter-bar-hide" | "column-filter-bar-show" | "column-filter-clear" | "column-filter-suspend" | "column-filter-unsuspend" | "column-info-show" | "custom-sort-add" | "custom-sort-edit" | "dashboard-group" | "dashboard-collapse" | "dashboard-configure" | "dashboard-dock" | "dashboard-expand" | "dashboard-float" | "dashboard-hide" | "dashboard-show" | "data-import" | "flashing-cell-add" | "flashing-cell-delete" | "format-column-add" | "format-column-edit" | "free-text-column-edit" | "grid-group" | "grid-info-show" | "layout-column-caption-change" | "layout-column-hide" | "layout-edit" | "layout-column-select" | "layout-column-select-preserve" | "layout-column-select-reset" | "layout-grid-select" | "plus-minus-add" | "settings-panel-open" | "styling-group" | "styled-column-badge-add" | "styled-column-badge-edit" | "styled-column-gradient-add" | "styled-column-gradient-edit" | "styled-column-percent-bar-add" | "styled-column-percent-bar-edit" | "styled-column-sparkline-add" | "styled-column-sparkline-edit" | "system-status-show" | "_navbar" | "separator">[]; getTeamSharingAction(): TeamSharingImportInfo<FreeTextColumn>; toView(freeTextColumn: FreeTextColumn): AdaptableObjectView; toViewAll(): AdaptableObjectView[]; getViewProperties(): AdaptableModuleView; }