igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
45 lines (44 loc) • 2.55 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { Base, String_$type, markType } from "./type";
import { Dictionary$2 } from "./Dictionary$2";
import { CellInfoDescriptionMetadata } from "./CellInfoDescriptionMetadata";
import { GridCellValueChangingEventArgsDescription } from "./GridCellValueChangingEventArgsDescription";
/**
* @hidden
*/
export let GridCellValueChangingEventArgsDescriptionMetadata = /*@__PURE__*/ (() => {
class GridCellValueChangingEventArgsDescriptionMetadata extends Base {
static b(a) {
if (GridCellValueChangingEventArgsDescriptionMetadata.a == null) {
GridCellValueChangingEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
GridCellValueChangingEventArgsDescriptionMetadata.c(GridCellValueChangingEventArgsDescriptionMetadata.a);
}
if (a.k(GridCellValueChangingEventArgsDescriptionMetadata.a)) {
return;
}
a.ad(GridCellValueChangingEventArgsDescriptionMetadata.a);
CellInfoDescriptionMetadata.d(a);
}
static c(a) {
a.item("EditID", "Number:int");
a.item("CellInfo", "ExportedType:CellModel");
a.item("ColumnRef", "(w:Column,p:Column)DataRef::object");
a.item("Item", "Unknown");
a.item("OldValue", "Unknown");
a.item("NewValue", "Unknown");
}
static d(a) {
GridCellValueChangingEventArgsDescriptionMetadata.b(a);
a.af("GridCellValueChangingEventArgs", () => new GridCellValueChangingEventArgsDescription());
a.ae("GridCellValueChangingEventArgs", GridCellValueChangingEventArgsDescriptionMetadata.a);
}
}
GridCellValueChangingEventArgsDescriptionMetadata.$t = markType(GridCellValueChangingEventArgsDescriptionMetadata, 'GridCellValueChangingEventArgsDescriptionMetadata');
GridCellValueChangingEventArgsDescriptionMetadata.a = null;
return GridCellValueChangingEventArgsDescriptionMetadata;
})();