igniteui-react-grids
Version:
Ignite UI React grid components.
27 lines (26 loc) • 1.46 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 { PropertyEditorPropertyDescriptionCollection } from "igniteui-react-layouts";
import { PropertyEditorPropertyDescription } from "igniteui-react-layouts";
import { markType } from "igniteui-react-core";
/**
* @hidden
*/
var HorizontalPropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(HorizontalPropertyEditorDataSource, _super);
function HorizontalPropertyEditorDataSource(a) {
var _this = _super.call(this) || this;
_this.ae = null;
_this.add(new PropertyEditorPropertyDescription());
_this.ae = a;
return _this;
}
HorizontalPropertyEditorDataSource.$t = markType(HorizontalPropertyEditorDataSource, 'HorizontalPropertyEditorDataSource', PropertyEditorPropertyDescriptionCollection.$);
return HorizontalPropertyEditorDataSource;
}(PropertyEditorPropertyDescriptionCollection));
export { HorizontalPropertyEditorDataSource };