UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

67 lines (66 loc) 2.11 kB
/* 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let WebSearchInfoDescription = /*@__PURE__*/ (() => { class WebSearchInfoDescription extends Description { constructor() { super(); this.m = null; this.f = false; this.g = false; this.j = 0; this.l = null; } get_type() { return "WebSearchInfo"; } get type() { return this.get_type(); } get searchText() { return this.m; } set searchText(a) { this.m = a; this.e("SearchText"); } get caseSensitive() { return this.f; } set caseSensitive(a) { this.f = a; this.e("CaseSensitive"); } get exactMatch() { return this.g; } set exactMatch(a) { this.g = a; this.e("ExactMatch"); } get activeMatchIndex() { return this.j; } set activeMatchIndex(a) { this.j = a; this.e("ActiveMatchIndex"); } get matchInfoCacheRef() { return this.l; } set matchInfoCacheRef(a) { this.l = a; this.e("MatchInfoCacheRef"); } } WebSearchInfoDescription.$t = markType(WebSearchInfoDescription, 'WebSearchInfoDescription', Description.$); return WebSearchInfoDescription; })();