You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1 lines
2.1 KiB
1 lines
2.1 KiB
{"version":3,"file":"datepicker-intl.d.ts","sources":["datepicker-intl.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA","sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { Subject } from 'rxjs';\n/** Datepicker data that requires internationalization. */\nexport declare class MatDatepickerIntl {\n /**\n * Stream that emits whenever the labels here are changed. Use this to notify\n * components if the labels have changed after initialization.\n */\n readonly changes: Subject<void>;\n /** A label for the calendar popup (used by screen readers). */\n calendarLabel: string;\n /** A label for the button used to open the calendar popup (used by screen readers). */\n openCalendarLabel: string;\n /** Label for the button used to close the calendar popup. */\n closeCalendarLabel: string;\n /** A label for the previous month button (used by screen readers). */\n prevMonthLabel: string;\n /** A label for the next month button (used by screen readers). */\n nextMonthLabel: string;\n /** A label for the previous year button (used by screen readers). */\n prevYearLabel: string;\n /** A label for the next year button (used by screen readers). */\n nextYearLabel: string;\n /** A label for the previous multi-year button (used by screen readers). */\n prevMultiYearLabel: string;\n /** A label for the next multi-year button (used by screen readers). */\n nextMultiYearLabel: string;\n /** A label for the 'switch to month view' button (used by screen readers). */\n switchToMonthViewLabel: string;\n /** A label for the 'switch to year view' button (used by screen readers). */\n switchToMultiYearViewLabel: string;\n /** Formats a range of years. */\n formatYearRange(start: string, end: string): string;\n}\n"]}
|