import { AjaxOptions } from "../services/http/AjaxOptions"; import { AtomControl } from "../web/controls/AtomControl"; import { IAtomElement, IDisposable } from "./types"; export declare abstract class BaseElementBridge { createBusyIndicator: () => IDisposable; ajax: (url: string, options: AjaxOptions, success: (r: any) => void, failed: (r: any) => void, progress: (p: any) => void) => void; setTemplate: (element: any, name: string, templateFactory: () => any) => void; setImport: (element: any, name: string, templateFactory: () => any) => void; reset: () => void; abstract create(type: string): T; abstract attachControl(element: T, control: AtomControl): void; abstract addEventHandler(element: T, name: string, handler: EventListenerOrEventListenerObject, capture?: boolean): IDisposable; abstract atomParent(element: T, climbUp?: boolean): AtomControl; abstract elementParent(element: T): T; abstract templateParent(element: T): AtomControl; abstract visitDescendents(element: T, action: (e: T, ac: AtomControl) => boolean): void; abstract dispose(element: T): void; abstract appendChild(parent: T, child: T): void; abstract getValue(element: HTMLElement, name: string): any; abstract setValue(element: T, name: string, value: any): void; abstract watchProperty(element: T, name: string, events: string[], f: (v: any) => void): IDisposable; abstract loadContent(element: T, text: string): void; abstract findChild(element: T, name: string): T; abstract close(element: T, success: () => void, error: (e: any) => void): void; refreshInherited(target: { element: T; }, name: string, fieldName?: string): void; } export declare class AtomElementBridge extends BaseElementBridge { addEventHandler(element: HTMLElement, name: string, handler: EventListenerOrEventListenerObject, capture?: boolean): IDisposable; atomParent(element: HTMLElement, climbUp?: boolean): AtomControl; elementParent(element: HTMLElement): HTMLElement; templateParent(element: HTMLElement): AtomControl; visitDescendents(element: HTMLElement, action: (e: HTMLElement, ac: AtomControl) => boolean): void; dispose(element: HTMLElement): void; appendChild(parent: HTMLElement, child: HTMLElement): void; setValue(element: HTMLElement, name: string, value: any): void; getValue(element: HTMLElement, name: string): any; watchProperty(element: HTMLElement, name: string, events: string[], f: (v: any) => void): IDisposable; attachControl(element: HTMLElement, control: AtomControl): void; create(type: string): HTMLElement; loadContent(element: HTMLElement, text: string): void; findChild(element: HTMLElement, name: string): HTMLElement; close(element: HTMLElement, success: () => void, error: (e: any) => void): void; } export declare class AtomBridge { static instance: BaseElementBridge; static create(name: string): IAtomElement; } //# sourceMappingURL=AtomBridge.d.ts.map