igniteui-react-grids
Version:
Ignite UI React grid components.
106 lines (105 loc) • 3.38 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, markType } from "igniteui-react-core";
import { WCNativeHelper } from "igniteui-react";
/**
* @hidden
*/
var BaseSearchInfo = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(BaseSearchInfo, _super);
function BaseSearchInfo() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.a = new WCNativeHelper();
_this.f = null;
return _this;
}
Object.defineProperty(BaseSearchInfo.prototype, "b", {
get: function () {
return this.a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(BaseSearchInfo.prototype, "nativeElement", {
get: function () {
return this.f;
},
set: function (a) {
this.f = a;
this.a.o = this.f;
},
enumerable: false,
configurable: true
});
BaseSearchInfo.prototype.setNativeElement = function (a) {
this.nativeElement = a;
};
Object.defineProperty(BaseSearchInfo.prototype, "i", {
get: function () {
var ret_ = this.b.n("searchText");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("searchText", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(BaseSearchInfo.prototype, "c", {
get: function () {
var ret_ = this.b.n("caseSensitive");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("caseSensitive", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(BaseSearchInfo.prototype, "d", {
get: function () {
var ret_ = this.b.n("exactMatch");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("exactMatch", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(BaseSearchInfo.prototype, "e", {
get: function () {
var ret_ = this.b.n("matchCount");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("matchCount", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(BaseSearchInfo.prototype, "h", {
get: function () {
var ret_ = this.b.n("content");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("content", value_);
},
enumerable: false,
configurable: true
});
BaseSearchInfo.$t = markType(BaseSearchInfo, 'BaseSearchInfo');
return BaseSearchInfo;
}(Base));
export { BaseSearchInfo };