igniteui-react-core
Version:
Ignite UI React Core.
48 lines (47 loc) • 2.92 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 { __extends } from "tslib";
import { Base, String_$type, markType } from "./type";
import { Dictionary$2 } from "./Dictionary$2";
import { DataGridColumnDescriptionMetadata } from "./DataGridColumnDescriptionMetadata";
import { ColumnWidthDescriptionMetadata } from "./ColumnWidthDescriptionMetadata";
import { GridColumnWidthChangedEventArgsDescription } from "./GridColumnWidthChangedEventArgsDescription";
/**
* @hidden
*/
var GridColumnWidthChangedEventArgsDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GridColumnWidthChangedEventArgsDescriptionMetadata, _super);
function GridColumnWidthChangedEventArgsDescriptionMetadata() {
return _super !== null && _super.apply(this, arguments) || this;
}
GridColumnWidthChangedEventArgsDescriptionMetadata.b = function (a) {
if (GridColumnWidthChangedEventArgsDescriptionMetadata.a == null) {
GridColumnWidthChangedEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
GridColumnWidthChangedEventArgsDescriptionMetadata.c(GridColumnWidthChangedEventArgsDescriptionMetadata.a);
}
if (a.k(GridColumnWidthChangedEventArgsDescriptionMetadata.a)) {
return;
}
a.ac(GridColumnWidthChangedEventArgsDescriptionMetadata.a);
DataGridColumnDescriptionMetadata.d(a);
ColumnWidthDescriptionMetadata.d(a);
};
GridColumnWidthChangedEventArgsDescriptionMetadata.c = function (a) {
a.item("Column", "ExportedType:DataGridColumn");
a.item("OldWidth", "ExportedType:ColumnWidth");
a.item("NewWidth", "ExportedType:ColumnWidth");
};
GridColumnWidthChangedEventArgsDescriptionMetadata.d = function (a) {
GridColumnWidthChangedEventArgsDescriptionMetadata.b(a);
a.ae("GridColumnWidthChangedEventArgs", function () { return new GridColumnWidthChangedEventArgsDescription(); });
a.ad("GridColumnWidthChangedEventArgs", GridColumnWidthChangedEventArgsDescriptionMetadata.a);
};
GridColumnWidthChangedEventArgsDescriptionMetadata.$t = markType(GridColumnWidthChangedEventArgsDescriptionMetadata, 'GridColumnWidthChangedEventArgsDescriptionMetadata');
GridColumnWidthChangedEventArgsDescriptionMetadata.a = null;
return GridColumnWidthChangedEventArgsDescriptionMetadata;
}(Base));
export { GridColumnWidthChangedEventArgsDescriptionMetadata };