UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

40 lines (39 loc) 995 B
import { FocusEventArgs as FocusEventArgs_internal } from "./FocusEventArgs"; export class IgxFocusEventArgs { constructor() { this._implementation = this.createImplementation(); this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } } createImplementation() { return new FocusEventArgs_internal(); } /** * @hidden */ get i() { return this._implementation; } onImplementationCreated() { } _provideImplementation(i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); } get target() { return this.i.b; } set target(v) { this.i.b = v; } get fromTarget() { return this.i.a; } set fromTarget(v) { this.i.a = v; } }