igniteui-react-grids
Version:
Ignite UI React grid components.
53 lines (52 loc) • 1.78 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 { GridActionsBaseDirective } from "./GridActionsBaseDirective";
import { markType } from "igniteui-react-core";
/**
* @hidden
*/
export let GridEditingActions = /*@__PURE__*/ (() => {
class GridEditingActions extends GridActionsBaseDirective {
get i() {
let ret_ = this.b.n("addRow");
return ret_;
}
set i(a) {
let value_ = a;
this.b.w("addRow", value_);
}
get k() {
let ret_ = this.b.n("editRow");
return ret_;
}
set k(a) {
let value_ = a;
this.b.w("editRow", value_);
}
get j() {
let ret_ = this.b.n("deleteRow");
return ret_;
}
set j(a) {
let value_ = a;
this.b.w("deleteRow", value_);
}
get h() {
let ret_ = this.b.n("addChild");
return ret_;
}
set h(a) {
let value_ = a;
this.b.w("addChild", value_);
}
l(a) {
this.nativeElement.startEdit(this.b.i(a));
}
}
GridEditingActions.$t = /*@__PURE__*/ markType(GridEditingActions, 'GridEditingActions', GridActionsBaseDirective.$);
return GridEditingActions;
})();