igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
178 lines (177 loc) • 5.21 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 { FormatSpecifierDescription } from "./FormatSpecifierDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let NumberFormatSpecifierDescription = /*@__PURE__*/ (() => {
class NumberFormatSpecifierDescription extends FormatSpecifierDescription {
constructor() {
super();
this.ag = null;
this.ab = null;
this.ac = null;
this.ae = null;
this.af = null;
this.ad = null;
this.ah = null;
this.ai = null;
this.aj = null;
this.ak = null;
this.al = null;
this.am = null;
this.an = null;
this.o = false;
this.t = 0;
this.s = 0;
this.q = 0;
this.u = 0;
this.r = 0;
}
get_type() {
return "NumberFormatSpecifier";
}
get locale() {
return this.ag;
}
set locale(a) {
this.ag = a;
this.j("Locale");
}
get compactDisplay() {
return this.ab;
}
set compactDisplay(a) {
this.ab = a;
this.j("CompactDisplay");
}
get currency() {
return this.ac;
}
set currency(a) {
this.ac = a;
this.j("Currency");
}
get currencyDisplay() {
return this.ae;
}
set currencyDisplay(a) {
this.ae = a;
this.j("CurrencyDisplay");
}
get currencySign() {
return this.af;
}
set currencySign(a) {
this.af = a;
this.j("CurrencySign");
}
get currencyCode() {
return this.ad;
}
set currencyCode(a) {
this.ad = a;
this.j("CurrencyCode");
}
get localeMatcher() {
return this.ah;
}
set localeMatcher(a) {
this.ah = a;
this.j("LocaleMatcher");
}
get notation() {
return this.ai;
}
set notation(a) {
this.ai = a;
this.j("Notation");
}
get numberingSystem() {
return this.aj;
}
set numberingSystem(a) {
this.aj = a;
this.j("NumberingSystem");
}
get signDisplay() {
return this.ak;
}
set signDisplay(a) {
this.ak = a;
this.j("SignDisplay");
}
get style() {
return this.al;
}
set style(a) {
this.al = a;
this.j("Style");
}
get unit() {
return this.am;
}
set unit(a) {
this.am = a;
this.j("Unit");
}
get unitDisplay() {
return this.an;
}
set unitDisplay(a) {
this.an = a;
this.j("UnitDisplay");
}
get useGrouping() {
return this.o;
}
set useGrouping(a) {
this.o = a;
this.j("UseGrouping");
}
get minimumIntegerDigits() {
return this.t;
}
set minimumIntegerDigits(a) {
this.t = a;
this.j("MinimumIntegerDigits");
}
get minimumFractionDigits() {
return this.s;
}
set minimumFractionDigits(a) {
this.s = a;
this.j("MinimumFractionDigits");
}
get maximumFractionDigits() {
return this.q;
}
set maximumFractionDigits(a) {
this.q = a;
this.j("MaximumFractionDigits");
}
get minimumSignificantDigits() {
return this.u;
}
set minimumSignificantDigits(a) {
this.u = a;
this.j("MinimumSignificantDigits");
}
get maximumSignificantDigits() {
return this.r;
}
set maximumSignificantDigits(a) {
this.r = a;
this.j("MaximumSignificantDigits");
}
}
NumberFormatSpecifierDescription.$t = markType(NumberFormatSpecifierDescription, 'NumberFormatSpecifierDescription', FormatSpecifierDescription.$);
NumberFormatSpecifierDescription.__marshalByValue1 = true;
NumberFormatSpecifierDescription.__marshalByValueAlias1 = "NumberFormatSpecifier";
return NumberFormatSpecifierDescription;
})();