UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

194 lines (193 loc) 5.33 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 { FormatSpecifierDescription } from "./FormatSpecifierDescription"; import { markType } from "./type"; /** * @hidden */ export let DateTimeFormatSpecifierDescription = /*@__PURE__*/ (() => { class DateTimeFormatSpecifierDescription extends FormatSpecifierDescription { constructor() { super(); this.aa = null; this.s = null; this.ag = null; this.o = 0; this.r = null; this.u = null; this.ae = null; this.ab = null; this.ah = null; this.y = null; this.z = null; this.w = null; this.aj = null; this.v = null; this.ak = null; this.ad = null; this.t = null; this.x = null; this.ac = null; this.af = null; this.ai = null; } get_type() { return "DateTimeFormatSpecifier"; } get locale() { return this.aa; } set locale(a) { this.aa = a; this.j("Locale"); } get dateStyle() { return this.s; } set dateStyle(a) { this.s = a; this.j("DateStyle"); } get timeStyle() { return this.ag; } set timeStyle(a) { this.ag = a; this.j("TimeStyle"); } get fractionalSecondDigits() { return this.o; } set fractionalSecondDigits(a) { this.o = a; this.j("FractionalSecondDigits"); } get calendar() { return this.r; } set calendar(a) { this.r = a; this.j("Calendar"); } get dayPeriod() { return this.u; } set dayPeriod(a) { this.u = a; this.j("DayPeriod"); } get numberingSystem() { return this.ae; } set numberingSystem(a) { this.ae = a; this.j("NumberingSystem"); } get localeMatcher() { return this.ab; } set localeMatcher(a) { this.ab = a; this.j("LocaleMatcher"); } get timeZone() { return this.ah; } set timeZone(a) { this.ah = a; this.j("TimeZone"); } get hour12() { return this.y; } set hour12(a) { this.y = a; this.j("Hour12"); } get hourCycle() { return this.z; } set hourCycle(a) { this.z = a; this.j("HourCycle"); } get formatMatcher() { return this.w; } set formatMatcher(a) { this.w = a; this.j("FormatMatcher"); } get weekDay() { return this.aj; } set weekDay(a) { this.aj = a; this.j("WeekDay"); } get era() { return this.v; } set era(a) { this.v = a; this.j("Era"); } get year() { return this.ak; } set year(a) { this.ak = a; this.j("Year"); } get month() { return this.ad; } set month(a) { this.ad = a; this.j("Month"); } get day() { return this.t; } set day(a) { this.t = a; this.j("Day"); } get hour() { return this.x; } set hour(a) { this.x = a; this.j("Hour"); } get minute() { return this.ac; } set minute(a) { this.ac = a; this.j("Minute"); } get second() { return this.af; } set second(a) { this.af = a; this.j("Second"); } get timeZoneName() { return this.ai; } set timeZoneName(a) { this.ai = a; this.j("TimeZoneName"); } } DateTimeFormatSpecifierDescription.$t = markType(DateTimeFormatSpecifierDescription, 'DateTimeFormatSpecifierDescription', FormatSpecifierDescription.$); DateTimeFormatSpecifierDescription.__marshalByValue1 = true; DateTimeFormatSpecifierDescription.__marshalByValueAlias1 = "DateTimeFormatSpecifier"; return DateTimeFormatSpecifierDescription; })();