Skip to content

Commit

Permalink
feat(material/datepicker): expose datepicker symbols (#25552)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewseguin committed Aug 30, 2022
1 parent 8334faf commit d70fd6c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/material/datepicker/public-api.ts
Expand Up @@ -23,6 +23,8 @@ export {
MatDatepickerContent,
DatepickerDropdownPositionX,
DatepickerDropdownPositionY,
MatDatepickerControl,
MatDatepickerPanel,
} from './datepicker-base';
export {MatDatepickerInputEvent, DateFilterFn} from './datepicker-input-base';
export {
Expand Down
4 changes: 2 additions & 2 deletions tools/public_api_guard/material/datepicker.md
Expand Up @@ -466,7 +466,7 @@ export class MatDatepickerContent<S, D = ExtractDateTypeFromSelection<S>> extend
}

// @public
interface MatDatepickerControl<D> {
export interface MatDatepickerControl<D> {
// (undocumented)
dateFilter: DateFilterFn<D>;
// (undocumented)
Expand Down Expand Up @@ -567,7 +567,7 @@ export class MatDatepickerModule {
}

// @public
interface MatDatepickerPanel<C extends MatDatepickerControl<D>, S, D = ExtractDateTypeFromSelection<S>> {
export interface MatDatepickerPanel<C extends MatDatepickerControl<D>, S, D = ExtractDateTypeFromSelection<S>> {
closedStream: EventEmitter<void>;
color: ThemePalette;
datepickerInput: C;
Expand Down

0 comments on commit d70fd6c

Please sign in to comment.