Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • MomentDateAdapter
    • CustomDateAdapter

Index

Constructors

  • new CustomDateAdapter(dateLocale: string, _options?: MatMomentDateAdapterOptions): CustomDateAdapter
  • Parameters

    • dateLocale: string
    • Optional _options: MatMomentDateAdapterOptions

    Returns CustomDateAdapter

Properties

_localeChanges: Subject<void>
locale: any

The locale to use for all dates.

localeChanges: Observable<void>

A stream that emits when the locale changes.

ɵfac: unknown
ɵprov: ɵɵInjectableDeclaration<MomentDateAdapter>

Methods

  • addCalendarDays(date: Moment, days: number): Moment
  • Parameters

    • date: Moment
    • days: number

    Returns Moment

  • addCalendarMonths(date: Moment, months: number): Moment
  • Parameters

    • date: Moment
    • months: number

    Returns Moment

  • addCalendarYears(date: Moment, years: number): Moment
  • Parameters

    • date: Moment
    • years: number

    Returns Moment

  • clampDate(date: Moment, min?: Moment, max?: Moment): Moment
  • Clamp the given date between min and max dates.

    Parameters

    • date: Moment

      The date to clamp.

    • Optional min: Moment

      The minimum value to allow. If null or omitted no min is enforced.

    • Optional max: Moment

      The maximum value to allow. If null or omitted no max is enforced.

    Returns Moment

    min if date is less than min, max if date is greater than max, otherwise date.

  • clone(date: Moment): Moment
  • Parameters

    • date: Moment

    Returns Moment

  • compareDate(first: Moment, second: Moment): number
  • Compares two dates.

    Parameters

    • first: Moment

      The first date to compare.

    • second: Moment

      The second date to compare.

    Returns number

    0 if the dates are equal, a number less than 0 if the first date is earlier, a number greater than 0 if the first date is later.

  • createDate(year: number, month: number, date: number): Moment
  • Parameters

    • year: number
    • month: number
    • date: number

    Returns Moment

  • deserialize(value: any): Moment
  • Returns the given value if given a valid Moment or null. Deserializes valid ISO 8601 strings (https://www.ietf.org/rfc/rfc3339.txt) and valid Date objects into valid Moments and empty string into null. Returns an invalid date for all other values.

    Parameters

    • value: any

    Returns Moment

  • format(date: Moment, displayFormat: string): string
  • Parameters

    • date: Moment
    • displayFormat: string

    Returns string

  • getDate(date: Moment): number
  • Parameters

    • date: Moment

    Returns number

  • getDateNames(): string[]
  • Returns string[]

  • getDayOfWeek(date: Moment): number
  • Parameters

    • date: Moment

    Returns number

  • getDayOfWeekNames(style: "long" | "short" | "narrow"): string[]
  • Parameters

    • style: "long" | "short" | "narrow"

    Returns string[]

  • getFirstDayOfWeek(): number
  • getMonth(date: Moment): number
  • Parameters

    • date: Moment

    Returns number

  • getMonthNames(style: "long" | "short" | "narrow"): string[]
  • Parameters

    • style: "long" | "short" | "narrow"

    Returns string[]

  • getNumDaysInMonth(date: Moment): number
  • Parameters

    • date: Moment

    Returns number

  • getValidDateOrNull(obj: unknown): Moment
  • Given a potential date object, returns that same date object if it is a valid date, or null if it's not a valid date.

    Parameters

    • obj: unknown

      The object to check.

    Returns Moment

    A date or null.

  • getYear(date: Moment): number
  • Parameters

    • date: Moment

    Returns number

  • getYearName(date: Moment): string
  • Parameters

    • date: Moment

    Returns string

  • invalid(): Moment
  • Returns Moment

  • isDateInstance(obj: any): boolean
  • Parameters

    • obj: any

    Returns boolean

  • isValid(date: Moment): boolean
  • Parameters

    • date: Moment

    Returns boolean

  • parse(value: any, parseFormat: string | string[]): Moment
  • Parameters

    • value: any
    • parseFormat: string | string[]

    Returns Moment

  • sameDate(first: Moment, second: Moment): boolean
  • Checks if two dates are equal.

    Parameters

    • first: Moment

      The first date to check.

    • second: Moment

      The second date to check.

    Returns boolean

    Whether the two dates are equal. Null dates are considered equal to other null dates.

  • setLocale(locale: string): void
  • Parameters

    • locale: string

    Returns void

  • toIso8601(date: Moment): string
  • Parameters

    • date: Moment

    Returns string

  • today(): Moment
  • Returns Moment

Generated using TypeDoc