igniteui-react-grids
Version:
Ignite UI React grid components.
74 lines (73 loc) • 2.57 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 { BaseElement } from "igniteui-react";
import { WCNativeHelper } from "igniteui-react";
import { markType } from "igniteui-react-core";
import { GridActionsBaseDirectiveCollection } from "./GridActionsBaseDirectiveCollection";
import { GridActionsBaseDirective } from "./GridActionsBaseDirective";
import { ActionStripResourceStrings } from "./ActionStripResourceStrings";
/**
* @hidden
*/
export let ActionStrip = /*@__PURE__*/ (() => {
class ActionStrip extends BaseElement {
constructor() {
super(...arguments);
this.c = new WCNativeHelper();
this.f = null;
}
get d() {
return this.c;
}
get nativeElement() {
return this.f;
}
set nativeElement(a) {
this.f = a;
this.c.o = this.f;
}
setNativeElement(a) {
this.nativeElement = a;
}
get b() {
let ret_ = this.d.l("actionButtons", (a) => new GridActionsBaseDirectiveCollection(), (a) => new GridActionsBaseDirective(), ["GridActionsBaseDirective", "GridEditingActions", "GridPinningActions"]);
return ret_;
}
get e() {
let ret_ = this.d.n("hidden");
return ret_;
}
set e(a) {
let value_ = a;
this.d.w("hidden", value_);
}
get a() {
let ret_ = this.d.m("resourceStrings", (a) => new ActionStripResourceStrings());
return ret_;
}
set a(a) {
let value_ = a;
this.d.w("resourceStrings", value_);
}
k(a) {
this.nativeElement.show(this.d.i(a));
}
i() {
this.nativeElement.hide();
}
get h() {
let ret_ = this.d.n("name");
return ret_;
}
set h(a) {
let value_ = a;
this.d.w("name", value_);
}
}
ActionStrip.$t = /*@__PURE__*/ markType(ActionStrip, 'ActionStrip', BaseElement.$);
return ActionStrip;
})();