UNPKG

devexpress-reporting

Version:

DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.

29 lines (28 loc) 1.07 kB
/** * DevExpress HTML/JS Reporting (designer\widgets\styleseditor.d.ts) * Version: 25.1.3 * Build date: Jun 26, 2025 * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import * as ko from 'knockout'; import { StyleModel } from '../controls/properties/style'; import { ReportViewModel } from '../controls/xrReport'; export declare class StylesEditorHeaderModel { private _report; static newItem: string; static newItemTextId: string; get styles(): ko.ObservableArray<StyleModel>; constructor(styleName: ko.Observable<string>, _report: ko.Observable<ReportViewModel>, disabled: ko.Observable<boolean>, popupContainer: string); items: ko.Computed<StyleModel[]>; value: any; onValueChanged: (e: any) => void; displayExpr: string; valueExpr: string; displayCustomValue: boolean; encodeNoDataText: boolean; placeholder: any; noDataText: any; disabled: ko.Observable<boolean> | ko.Computed<boolean>; dropDownOptions: any; }